:root {
  --navy: #061743;
  --blue: #0047b3;
  --blue-2: #0a5fe8;
  --red: #e3202a;
  --ice: #f2f7ff;
  --line: #d7e2f2;
  --ink: #07183d;
  --muted: #5b6d91;
  --white: #ffffff;
  --gold: #b97800;
  --green: #0a8f58;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(6, 23, 67, .14);
  --content-max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
}

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  background: rgba(6, 23, 67, .96);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(var(--content-max), calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 84px;
  padding: 14px 0;
}

.brand img {
  width: 214px;
  max-height: 58px;
  object-fit: contain;
  object-position: left center;
}

.nav {
  display: flex;
  justify-content: flex-end;
  gap: 30px;
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
}

.nav a,
.primary,
.secondary {
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: 72vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  padding: 108px clamp(18px, 5vw, 76px) 42px;
  background:
    radial-gradient(circle at 0% 0%, rgba(0, 71, 179, .24), transparent 34%),
    radial-gradient(circle at 100% 12%, rgba(10, 95, 232, .22), transparent 30%),
    radial-gradient(circle at 88% 100%, rgba(0, 71, 179, .18), transparent 34%),
    radial-gradient(circle at 50% 88%, rgba(0, 119, 255, .10), transparent 38%),
    linear-gradient(135deg, #ffffff 0%, #f8fbff 54%, #eef5ff 100%);
  overflow: hidden;
}

#rate-field {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .28;
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 3;
  margin-top: 28px;
}

.market-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.market-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 71, 179, .075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 71, 179, .075) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, rgba(0,0,0,.62), rgba(0,0,0,1));
  animation: marketGrid 12s linear infinite;
}

.market-ticker {
  position: absolute;
  left: 0;
  right: 0;
  top: 84px;
  height: 44px;
  z-index: 5;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.16);
  border-bottom: 1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.88);
  box-shadow: 0 10px 22px rgba(0, 0, 0, .24);
}

.ticker-flow {
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  height: 100%;
  padding-inline: 18px;
  color: rgba(255,255,255,.78);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  animation: tickerFlow 24s linear infinite;
}

.ticker-flow span {
  white-space: nowrap;
}

.ticker-flow b {
  color: var(--white);
}

.ticker-flow em {
  font-style: normal;
}

.ticker-flow .up {
  color: #00c66b;
}

.ticker-flow .down {
  color: #e03131;
}

.operation-chart {
  position: absolute;
  left: 50%;
  right: 0;
  top: 52%;
  height: 320px;
  z-index: 1;
  transform: translateY(-50%);
  overflow: hidden;
  opacity: .96;
  border-left: 1px solid rgba(0, 71, 179, .08);
  mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 92%, transparent 100%);
}

.chart-meta {
  position: absolute;
  right: clamp(24px, 5vw, 76px);
  top: 10px;
  z-index: 2;
  display: grid;
  justify-items: end;
  gap: 4px;
  color: var(--navy);
}

.chart-meta span {
  color: #607093;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.chart-meta strong {
  color: var(--blue);
  font-size: 32px;
  line-height: 1;
}

#price-chart {
  position: absolute;
  inset: 52px 0 0;
  width: 100%;
  height: calc(100% - 52px);
}

.current-quote {
  position: absolute;
  right: auto;
  top: 86px;
  z-index: 2;
  border: 1px solid rgba(0, 129, 242, .18);
  border-radius: 7px;
  padding: 7px 10px;
  color: #006ed1;
  background: rgba(255,255,255,.76);
  box-shadow: 0 12px 28px rgba(6, 23, 67, .08);
  font-size: 12px;
  font-weight: 900;
  backdrop-filter: blur(8px);
}

.bill-usd.bill-small {
  left: 46%;
  animation-delay: 6.2s;
}

.bill-eur.bill-small {
  left: 84%;
  animation-delay: 7.4s;
}

.eyebrow,
.section-heading p,
.calculator-copy p {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--blue);
}

.hero h1 {
  max-width: min(100%, 920px);
  margin: 0;
  font-size: 36px;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero h1 span,
.hero h1 strong {
  display: block;
}

.hero h1 span {
  color: var(--navy);
  background: none;
  text-shadow: none;
  font-size: 46px;
  font-weight: 900;
}

.hero h1 strong {
  color: transparent;
  font-size: 36px;
  line-height: 1.08;
  background: linear-gradient(135deg, #e3202a 0%, #c9151d 52%, #930811 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: none;
  white-space: nowrap;
}

.hero-text {
  max-width: 720px;
  margin: 18px 0 0;
  color: #42547a;
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 228px));
  gap: 12px;
  max-width: 708px;
  margin-top: 32px;
}

.hero-trust article {
  border: 1px solid rgba(0, 71, 179, .12);
  border-radius: var(--radius);
  padding: 14px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 12px 28px rgba(6, 23, 67, .06);
  backdrop-filter: blur(8px);
}

.hero-trust span {
  display: block;
  color: var(--blue);
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

.hero-trust p {
  margin: 7px 0 0;
  color: #4f5f84;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
}

.hero-branch-card {
  display: grid;
  align-content: stretch;
  grid-template-rows: minmax(0, 1fr) auto;
  justify-items: center;
  min-height: 130px;
  padding: 8px 10px;
  text-align: center;
}

.hero-trust .hero-branch-card {
  padding: 8px 10px;
}

.hero-branch-card img {
  align-self: center;
  display: block;
  width: 100%;
  max-width: 172px;
  height: 84px;
  object-fit: contain;
}

.hero-branch-local {
  align-items: center;
  align-self: end;
  display: inline-flex;
  gap: 6px;
  justify-content: center;
  margin: 6px 0 0;
}

.hero-branch-local svg {
  color: #25d366;
  flex: 0 0 auto;
  height: 18px;
  width: 18px;
}

.primary,
.secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border-radius: var(--radius);
  padding: 0 24px;
  font-weight: 500;
}

.primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 16px 34px rgba(0, 71, 179, .2);
}

.secondary {
  border: 1px solid var(--line);
  color: var(--navy);
  background: var(--white);
  border-color: var(--line);
  backdrop-filter: none;
}


.proof-strip {
  display: grid;
  gap: 22px;
  width: min(var(--content-max), calc(100% - 36px));
  margin: 34px auto 0;
  padding: 0;
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

.proof-message {
  max-width: 980px;
  margin: 0 auto;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.38;
  text-align: center;
}

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

.currency-carousel {
  overflow: hidden;
  border-top: 1px solid rgba(0, 71, 179, .12);
  border-bottom: 1px solid rgba(0, 71, 179, .12);
  background:
    linear-gradient(90deg, rgba(0, 71, 179, .08), transparent 18%, transparent 82%, rgba(0, 71, 179, .08)),
    linear-gradient(180deg, #ffffff 0%, #f3f7ff 48%, #ffffff 100%);
}

.currency-track {
  display: flex;
  gap: 14px;
  width: max-content;
  padding: 20px 0;
  animation: currencySlide 34s linear infinite;
}

.currency-track article {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 10px;
  min-width: 218px;
  border: 1px solid rgba(0, 71, 179, .14);
  border-radius: 12px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 14px 34px rgba(6, 23, 67, .09);
}

.currency-track img {
  grid-row: 1 / span 2;
  width: 42px;
  height: 30px;
  border-radius: 5px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(6, 23, 67, .12);
}

.currency-track span {
  color: var(--blue);
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

.currency-track strong {
  color: var(--navy);
  font-size: 12px;
  line-height: 1.15;
}

.proof-strip article {
  min-height: 132px;
  display: grid;
  align-content: center;
  justify-items: center;
  border: 1px solid rgba(0, 71, 179, .10);
  border-radius: 14px;
  padding: 24px 18px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 18px 46px rgba(6, 23, 67, .09);
  text-align: center;
}

.proof-strip strong {
  display: block;
  color: var(--blue);
  font-size: clamp(42px, 5vw, 68px);
  line-height: .9;
  letter-spacing: 0;
}

.proof-strip article p {
  margin: 18px 0 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.25;
  font-weight: 500;
}

.exchange-steps {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 54px 0 8px;
}

.exchange-steps-heading {
  max-width: 760px;
  margin: 0 auto 26px;
  text-align: center;
}

.exchange-steps-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1.08;
}

.exchange-steps-heading p {
  max-width: 660px;
  margin: 14px auto 0;
  color: #000000;
  font-size: 18px;
  line-height: 1.45;
}

.exchange-steps-layout {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(300px, .58fr);
  gap: 20px;
  align-items: stretch;
}

.exchange-step-grid {
  display: grid;
  gap: 12px;
}

.exchange-step-grid article {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  border: 1px solid rgba(0, 71, 179, .10);
  border-radius: 14px;
  padding: 16px;
  background: #ffffff;
  box-shadow: 0 14px 32px rgba(6, 23, 67, .07);
}

.exchange-step-grid article::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--blue), var(--blue-2), transparent);
  transform: translateX(-100%);
  animation: stepProgressLine 4.8s ease-in-out infinite;
}

.exchange-step-grid article:nth-child(2)::before {
  animation-delay: 1.15s;
}

.exchange-step-grid article:nth-child(3)::before {
  animation-delay: 2.3s;
}

.step-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(0, 71, 179, .12);
  border-radius: 14px;
  color: var(--blue);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, .95), transparent 34%),
    linear-gradient(145deg, #ffffff, #eef5ff);
  box-shadow: 0 12px 24px rgba(0, 71, 179, .10);
}

.step-icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step-title {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 6px;
}

.exchange-step-grid article span {
  display: inline-flex;
  flex: 0 0 auto;
  margin: 0;
  color: var(--blue);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.12;
}

.exchange-step-grid h3 {
  margin: 0;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.12;
}

.exchange-step-grid p {
  margin: 0;
  color: #4d5f84;
  font-size: 15px;
  line-height: 1.45;
}

.mall-carousel {
  position: relative;
  overflow: hidden;
  align-self: stretch;
  min-height: 100%;
  border: 1px solid rgba(0, 71, 179, .12);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(6, 23, 67, .09);
}

.mall-carousel::before,
.mall-carousel::after {
  content: none;
}

.mall-orbit {
  display: flex;
  align-items: center;
  width: max-content;
  height: 100%;
  gap: 28px;
  padding: 28px 24px;
  animation: mallFlow 24s linear infinite;
}

.mall-carousel:hover .mall-orbit {
  animation-play-state: paused;
}

.mall-orbit article {
  border-radius: 16px;
  display: grid;
  align-content: center;
  justify-items: center;
  row-gap: 8px;
  width: 290px;
  min-height: 100%;
  padding: 8px 0;
  text-align: center;
  animation: mallCardFocus 7.2s ease-in-out infinite;
}

.mall-orbit article:nth-child(2n) {
  animation-delay: 1.8s;
}

.mall-orbit article:nth-child(3n) {
  animation-delay: 3.6s;
}

.mall-orbit img {
  max-width: min(270px, 100%);
  max-height: 138px;
  object-fit: contain;
}

.mall-orbit span {
  display: block;
  width: 100%;
  margin-top: 0;
  color: var(--navy);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.12;
  white-space: nowrap;
}

.mall-orbit small {
  display: block;
  margin-top: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.18;
}

.rates-section,
.locations-section,
.branches,
.trust {
  width: min(var(--content-max), calc(100% - 36px));
  margin-inline: auto;
  padding: clamp(70px, 9vw, 128px) 0;
}

.section-heading {
  display: grid;
  justify-items: center;
  gap: 14px;
  margin-bottom: 34px;
  text-align: center;
}

.section-heading h2,
.calculator-copy h2,
.trust h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: .94;
  letter-spacing: 0;
}

.section-heading > span {
  display: block;
  color: #000000;
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 500;
  line-height: 1.35;
}

.rate-warning {
  max-width: 560px;
  margin: 0 0 28px;
  border: 2px dashed var(--blue);
  border-radius: 14px;
  padding: 7px 14px 8px;
  color: #000000;
  font-size: clamp(17px, 2vw, 23px);
  line-height: 1.05;
  font-weight: 400;
}

.daily-rate-panel {
  border: 1px solid rgba(6, 23, 67, .10);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(244,248,255,.96)),
    radial-gradient(circle at 0% 0%, rgba(0, 71, 179, .08), transparent 34%);
  box-shadow: 0 28px 80px rgba(6, 23, 67, .11);
  overflow: hidden;
  padding: clamp(16px, 2.5vw, 28px);
}

.daily-rate-header {
  display: grid;
  align-items: center;
  justify-items: center;
  gap: 8px;
  padding: 6px 12px 18px;
  border-bottom: 0;
  background: transparent;
  text-align: center;
}

.daily-rate-header span {
  display: block;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.daily-rate-header strong {
  display: block;
  margin-top: 0;
  color: var(--navy);
  font-size: 42px;
  line-height: 1.1;
}

.daily-rate-header small {
  max-width: 720px;
  color: #000000;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.45;
}

.rate-warning {
  max-width: 780px;
  margin: 10px auto 22px;
  padding: 14px 20px;
  border: 1px solid rgba(219, 39, 39, 0.22);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(254, 226, 226, 0.78), rgba(255, 245, 245, 0.94));
  box-shadow: 0 18px 42px rgba(127, 29, 29, 0.08);
  color: #7f1d1d;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.35;
  text-align: center;
}

.rate-board {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 0;
  perspective: 1200px;
}

.rate-table-head {
  display: grid;
  grid-template-columns: minmax(300px, 1.6fr) minmax(160px, .75fr) minmax(160px, .75fr);
  min-height: 46px;
  margin-bottom: 10px;
  border: 1px solid rgba(6, 23, 67, .10);
  border-radius: 14px;
  background: #061743;
  box-shadow: 0 14px 32px rgba(6, 23, 67, .12);
  overflow: hidden;
}

.rate-table-head span {
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, .12);
  color: #ffffff;
  font-size: clamp(12px, 1.4vw, 16px);
  font-weight: 850;
  letter-spacing: .08em;
  line-height: 1.1;
  text-transform: uppercase;
}

.rate-table-head span:last-child {
  border-right: 0;
}

.rate-row {
  position: relative;
  min-height: 72px;
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, .22);
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, .06);
  overflow: hidden;
  opacity: 0;
  animation: rateRowReveal .72s cubic-bezier(.18, .78, .22, 1) forwards;
  animation-delay: var(--rate-delay, 0ms);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  transform-style: preserve-3d;
}

.rate-row-face {
  display: grid;
  grid-template-columns: minmax(300px, 1.6fr) minmax(160px, .75fr) minmax(160px, .75fr);
  min-height: 72px;
  transform-origin: center center;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  animation: rateBoardFlip var(--rate-cycle-duration, 32s) cubic-bezier(.2, .8, .25, 1) infinite;
  animation-delay: calc(var(--rate-flip-delay, 0s) + 1.4s);
}

.rate-row::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(115deg, transparent 0%, transparent 37%, rgba(255, 255, 255, .78) 48%, transparent 60%, transparent 100%);
  opacity: 0;
  transform: translateX(-120%);
  pointer-events: none;
  animation: rateRowSweep 5.8s ease-in-out infinite;
  animation-delay: calc(var(--rate-delay, 0ms) + 1.2s);
}

.rate-row:nth-child(odd) {
  background: #fbfdff;
}

.rate-row:hover {
  border-color: rgba(0, 71, 179, .22);
  box-shadow: 0 18px 42px rgba(6, 23, 67, .10);
  transform: translateY(-1px);
}

.rate-currency-cell,
.rate-price-cell {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  border-right: 1px solid rgba(148, 163, 184, .22);
  padding: 10px 24px;
}

.rate-currency-cell {
  gap: 14px;
}

.rate-currency-cell img {
  width: 60px;
  height: 40px;
  border: 1px solid rgba(15, 23, 42, .10);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 10px 22px rgba(6, 23, 67, .16);
  animation: rateFlagFloat 4.6s ease-in-out infinite;
  animation-delay: var(--rate-delay, 0ms);
}

.rate-currency-cell strong {
  color: var(--navy);
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 900;
  line-height: 1.05;
}

.rate-currency-cell span {
  color: #2454a5;
  font-size: .72em;
  font-weight: 700;
}

.rate-price-cell {
  justify-content: center;
  gap: 9px;
  background: linear-gradient(180deg, rgba(248, 251, 255, .82), rgba(255, 255, 255, .94));
}

.rate-price-cell:last-child {
  border-right: 0;
}

.rate-price-cell strong {
  color: #061743;
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 0 0 rgba(0, 71, 179, 0);
  animation: ratePricePulse 4.8s ease-in-out infinite;
  animation-delay: calc(var(--rate-delay, 0ms) + .45s);
}

.trend {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 2px 4px rgba(6, 23, 67, .22);
}

.trend-up {
  color: #00a85a;
}

.trend-down {
  color: #ff1f2d;
}

.calculator-section {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: clamp(30px, 5vw, 76px);
  color: var(--white);
  background: var(--navy);
  width: 100%;
  margin-inline: 0;
  padding-inline: max(18px, calc((100% - var(--content-max)) / 2));
}

.calculator-copy p,
.calculator-copy h2 {
  color: var(--white);
}

.calculator-copy span {
  display: block;
  max-width: 560px;
  margin-top: 24px;
  color: rgba(255,255,255,.68);
  font-size: 18px;
  line-height: 1.6;
}

.calculator {
  display: grid;
  gap: 14px;
}

.calculator label {
  display: grid;
  gap: 8px;
}

.calculator label span {
  color: rgba(255,255,255,.72);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.calculator input,
.calculator select,
.result {
  width: 100%;
  min-height: 64px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(255,255,255,.08);
  padding: 0 18px;
  font-size: 22px;
  font-weight: 900;
  outline: none;
}

.calculator select option {
  color: var(--ink);
}

.result {
  display: grid;
  align-content: center;
  min-height: 104px;
}

.result small {
  color: rgba(255,255,255,.65);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.result strong {
  margin-top: 7px;
  font-size: clamp(32px, 4vw, 56px);
}

.wide {
  min-height: 62px;
}

.locations-section {
  display: grid;
  gap: 26px;
  width: 100%;
  margin-inline: 0;
  padding: clamp(56px, 7vw, 86px) max(18px, calc((100% - var(--content-max)) / 2));
  background: linear-gradient(180deg, #f4f8ff 0%, #edf4fd 100%);
}

.locations-inner {
  display: grid;
  gap: 30px;
}

.locations-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 71, 179, .12);
  border-radius: 22px;
  padding: 22px;
  background:
    radial-gradient(circle at 8% 8%, rgba(0, 71, 179, .10), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
  box-shadow: 0 28px 74px rgba(6, 23, 67, .12);
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.contact-panel {
  border: 1px solid rgba(0, 88, 221, .16);
  border-radius: 16px;
  padding: clamp(30px, 4vw, 42px);
  background:
    radial-gradient(circle at 0% 0%, rgba(0, 88, 221, .08), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, .78) 0%, rgba(246, 250, 255, .94) 100%);
  box-shadow: 0 28px 72px rgba(15, 40, 83, .08);
}

.contact-panel-heading {
  max-width: 720px;
  margin: 0 auto 30px;
  text-align: center;
}

.contact-panel-heading h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: clamp(28px, 3vw, 34px);
  line-height: 1.08;
}

.contact-panel-heading p {
  margin: 0;
  color: #30497b;
  font-size: 14px;
  line-height: 1.5;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.contact-card {
  display: grid;
  align-content: start;
  position: relative;
  overflow: hidden;
  min-height: 330px;
  border: 1px solid rgba(0, 71, 179, .09);
  border-radius: 18px;
  padding: 28px;
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(6, 23, 67, .08);
}

.contact-card::before {
  content: none;
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin-bottom: 22px;
  border-radius: 14px;
  color: var(--blue);
  background: rgba(0, 71, 179, .08);
}

.contact-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-kicker {
  display: inline-flex;
  width: max-content;
  margin-bottom: 14px;
  border: 1px solid rgba(0, 71, 179, .12);
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--blue);
  background: rgba(0, 71, 179, .05);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-card h4 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.18;
}

.contact-card strong {
  display: block;
  margin-bottom: 12px;
  color: var(--red);
  font-size: 16px;
  line-height: 1.3;
}

.contact-stack {
  display: grid;
  gap: 12px;
}

.contact-card p {
  margin: 0;
  color: #5a6a8d;
  font-size: 16px;
  line-height: 1.45;
}

.contact-address {
  color: var(--navy);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
}

.contact-note {
  color: var(--navy);
  font-size: 15px;
  line-height: 1.45;
}

.contact-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.contact-social-links a {
  padding: 0;
  font-size: 0;
}

.contact-social-links .social-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  min-width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 12px;
  border-color: rgba(0, 71, 179, .12);
  background: #f8fbff;
  box-shadow: 0 10px 24px rgba(6, 23, 67, .08);
}

.contact-social-links .social-pill svg {
  width: 18px;
  height: 18px;
}

.contact-social-links .tiktok-pill {
  color: #111827;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-self: end;
  margin-top: 22px;
}

.contact-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  border-radius: 10px;
  padding: 13px 18px;
  font-size: 17px;
  font-weight: 500;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.whatsapp-button {
  border: 1px solid rgba(37, 211, 102, .55);
  color: #ffffff;
  background: #25D366;
  box-shadow: 0 14px 26px rgba(37, 211, 102, .26);
}

.whatsapp-button:hover {
  background: #1ebe5d;
  box-shadow: 0 18px 34px rgba(37, 211, 102, .34);
  transform: translateY(-2px);
}

.route-button {
  border: 1px solid rgba(0, 71, 179, .24);
  color: var(--blue);
  background: rgba(0, 71, 179, .08);
  box-shadow: 0 14px 26px rgba(6, 23, 67, .08);
}

.route-button:hover {
  color: #ffffff;
  background: var(--blue);
  box-shadow: 0 18px 34px rgba(0, 71, 179, .20);
  transform: translateY(-2px);
}

.reviews-section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 74px 0 64px;
  overflow: hidden;
}

.reviews-heading {
  max-width: 780px;
  margin: 0 auto 30px;
  text-align: center;
}

.reviews-heading span {
  display: block;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.reviews-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1.08;
}

.reviews-heading p {
  max-width: 680px;
  margin: 14px auto 0;
  color: #000000;
  font-size: 18px;
  line-height: 1.45;
}

.reviews-summary {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-bottom: 26px;
  border: 1px solid rgba(0, 71, 179, .12);
  border-radius: 18px;
  padding: 18px 22px;
  background:
    radial-gradient(circle at 10% 0%, rgba(0, 71, 179, .10), transparent 34%),
    linear-gradient(135deg, #ffffff, #f6f9ff);
  box-shadow: 0 24px 54px rgba(6, 23, 67, .08);
}

.reviews-summary strong {
  display: block;
  color: var(--blue);
  font-size: 44px;
  line-height: .9;
}

.reviews-summary span {
  color: #5b6d91;
  font-size: 14px;
}

.reviews-summary p {
  margin: 0;
  color: var(--navy);
  font-size: 17px;
  line-height: 1.4;
}

.reviews-proof {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.reviews-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border: 1px solid rgba(0, 71, 179, .10);
  border-radius: 999px;
  padding: 0 12px;
  color: var(--navy);
  background: rgba(255, 255, 255, .88);
  font-size: 12px;
  font-weight: 500;
}

.review-stars {
  color: #fbbc04;
  font-size: 17px;
  letter-spacing: .08em;
  line-height: 1;
  white-space: nowrap;
}

.reviews-carousel {
  position: relative;
  margin-inline: -24px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.reviews-carousel::before,
.reviews-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 80px;
  pointer-events: none;
}

.reviews-carousel::before {
  left: 0;
  background: linear-gradient(90deg, #ffffff, transparent);
}

.reviews-carousel::after {
  right: 0;
  background: linear-gradient(270deg, #ffffff, transparent);
}

.reviews-track {
  display: flex;
  width: max-content;
  gap: 18px;
  padding: 10px 24px 20px;
  animation: reviewsFlow 34s linear infinite;
}

.reviews-carousel:hover .reviews-track {
  animation-play-state: paused;
}

.review-card {
  position: relative;
  width: 355px;
  min-height: 245px;
  border: 1px solid rgba(0, 71, 179, .10);
  border-radius: 18px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(247, 250, 255, .96)),
    radial-gradient(circle at top right, rgba(0, 71, 179, .11), transparent 36%);
  box-shadow: 0 24px 58px rgba(6, 23, 67, .10);
}

.review-card::before {
  content: "\"";
  position: absolute;
  top: 18px;
  right: 18px;
  color: rgba(0, 71, 179, .10);
  font-size: 76px;
  line-height: 1;
  pointer-events: none;
}

.review-topline,
.review-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.review-source {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
}

.google-source {
  color: #174ea6;
  background: rgba(66, 133, 244, .12);
}

.instagram-source {
  color: #c13584;
  background: rgba(193, 53, 132, .11);
}

.facebook-source {
  color: #1877f2;
  background: rgba(24, 119, 242, .12);
}

.tiktok-source {
  color: #111827;
  background: rgba(17, 24, 39, .08);
}

.review-tag {
  display: inline-flex;
  margin-top: 14px;
  border-left: 3px solid rgba(0, 71, 179, .22);
  padding-left: 10px;
  color: #516383;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
}

.review-card p {
  margin: 22px 0 24px;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.35;
}

.review-author {
  justify-content: flex-start;
}

.review-author > span {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: #ffffff;
  background: var(--blue);
  box-shadow: 0 14px 30px rgba(0, 71, 179, .20);
  font-size: 15px;
  font-weight: 500;
}

.review-author strong {
  display: block;
  color: var(--navy);
  font-size: 16px;
  font-weight: 500;
}

.review-author small {
  display: block;
  margin-top: 3px;
  color: #66789c;
  font-size: 13px;
}

.newsletter-section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 12px 0 72px;
}

.newsletter-card {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, .7fr);
  gap: 34px;
  align-items: center;
  border: 1px solid rgba(0, 71, 179, .14);
  border-radius: 22px;
  padding: 34px;
  background:
    radial-gradient(circle at 8% 0%, rgba(0, 71, 179, .18), transparent 32%),
    radial-gradient(circle at 100% 100%, rgba(0, 112, 209, .14), transparent 34%),
    linear-gradient(135deg, #f8fbff, #ffffff);
  box-shadow: 0 28px 70px rgba(6, 23, 67, .10);
}

.newsletter-copy span {
  display: block;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.newsletter-copy h2 {
  max-width: 620px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1.08;
}

.newsletter-copy p {
  max-width: 610px;
  margin: 16px 0 0;
  color: #4d5f84;
  font-size: 18px;
  line-height: 1.45;
}

.newsletter-form {
  display: grid;
  gap: 13px;
  border: 1px solid rgba(0, 71, 179, .10);
  border-radius: 18px;
  padding: 22px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 20px 46px rgba(6, 23, 67, .10);
}

.newsletter-form label {
  display: grid;
  gap: 7px;
}

.newsletter-alert {
  border: 1px solid rgba(22, 163, 74, .22);
  border-radius: 10px;
  padding: 11px 13px;
  color: #166534;
  background: #ecfdf3;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.newsletter-form label span {
  color: var(--navy);
  font-size: 13px;
  font-weight: 500;
}

.newsletter-form input {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(0, 71, 179, .16);
  border-radius: 10px;
  padding: 0 14px;
  color: var(--navy);
  background: #ffffff;
  font: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.newsletter-form input:focus {
  border-color: #c8d1df;
  box-shadow: 0 0 0 4px rgba(15, 23, 42, .06);
}

.newsletter-form .field-error {
  color: #b91c1c;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.custom-select {
  position: relative;
}

.custom-select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 48px;
  border: 1px solid #d9e1ef;
  border-radius: 10px;
  padding: 0 13px 0 14px;
  color: #111827;
  background: #ffffff;
  font: inherit;
  font-size: 15px;
  font-weight: 400;
  text-align: left;
  cursor: pointer;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.custom-select-trigger svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #52627f;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .2s ease;
}

.custom-select.is-open .custom-select-trigger {
  border-color: #c8d1df;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, .08);
}

.custom-select.is-open .custom-select-trigger svg {
  transform: rotate(180deg);
}

.custom-select-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  z-index: 8;
  display: grid;
  gap: 6px;
  max-height: 256px;
  overflow: auto;
  border: 1px solid #d9e1ef;
  border-radius: 14px;
  padding: 8px;
  background: #ffffff;
  box-shadow: 0 20px 42px rgba(15, 23, 42, .12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity .18s ease, transform .18s ease;
}

.custom-select.is-open .custom-select-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.custom-select-menu button {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  min-height: 46px;
  border: 0;
  border-radius: 10px;
  padding: 9px 11px;
  color: #111827;
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
  outline: none;
  transition: background .18s ease, color .18s ease;
}

.custom-select-menu button:hover,
.custom-select-menu button.is-selected {
  background: #f7f9fc;
}

.custom-select-menu strong {
  color: #111827;
  font-size: 14px;
  font-weight: 700;
}

.custom-select-menu span {
  color: #4b5563;
  font-size: 14px;
}

.newsletter-form button[type="submit"] {
  min-height: 50px;
  border: 0;
  border-radius: 10px;
  color: #ffffff;
  background: var(--blue);
  box-shadow: 0 16px 32px rgba(0, 71, 179, .22);
  font: inherit;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.newsletter-form button[type="submit"]:hover {
  background: var(--navy);
  box-shadow: 0 20px 38px rgba(6, 23, 67, .22);
  transform: translateY(-2px);
}

.newsletter-form button[type="submit"]:disabled {
  cursor: default;
  background: #1f9d55;
  box-shadow: 0 14px 28px rgba(31, 157, 85, .22);
  transform: none;
}

.newsletter-form small {
  color: #64769a;
  font-size: 13px;
  line-height: 1.4;
}

.locations-map-wide {
  position: relative;
  left: 50%;
  width: 100vw;
  min-height: 430px;
  margin-left: -50vw;
  overflow: hidden;
  border-top: 1px solid rgba(0, 71, 179, .14);
  border-bottom: 1px solid rgba(0, 71, 179, .14);
  background: #eef5ff;
  box-shadow: 0 26px 64px rgba(6, 23, 67, .10);
}

.locations-map-wide iframe {
  width: 100%;
  height: 100%;
  min-height: 430px;
  border: 0;
  filter: saturate(.92) contrast(1.02);
}

.google-locations-map {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: none;
}

.locations-map-wide.is-api-map iframe {
  display: none;
}

.locations-map-wide.is-api-map .google-locations-map {
  display: block;
}

.google-map-marker {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 10px;
  transform: translate(-50%, -100%);
}

.google-map-marker span {
  position: relative;
  width: 28px;
  height: 28px;
  border: 6px solid #ffffff;
  border-radius: 50% 50% 50% 0;
  background: var(--blue);
  box-shadow: 0 18px 34px rgba(6, 23, 67, .24);
  transform: rotate(-45deg);
  animation: mapMarkerDrop 2.8s ease-in-out infinite;
}

.google-map-marker span::before,
.google-map-marker span::after {
  content: "";
  position: absolute;
  inset: -18px;
  border: 2px solid rgba(0, 71, 179, .25);
  border-radius: 50%;
  animation: mapMarkerPulse 2.4s ease-out infinite;
}

.google-map-marker span::after {
  animation-delay: .8s;
}

.google-map-marker strong {
  border: 1px solid rgba(0, 71, 179, .16);
  border-radius: 999px;
  padding: 10px 15px;
  color: var(--navy);
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 16px 34px rgba(6, 23, 67, .14);
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
  backdrop-filter: blur(10px);
}

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

.branch-grid article {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(6, 23, 67, .08);
}

.branch-image {
  height: 220px;
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.28), transparent),
    linear-gradient(145deg, #07245f, #f5f9ff 42%, #0047b3 43%, #061743);
}

.image-claro {
  background:
    linear-gradient(135deg, rgba(255,255,255,.28), transparent),
    linear-gradient(145deg, #083276, #fff 42%, #c83030 43%, #0645ad);
}

.branch-grid span {
  display: block;
  margin-top: 20px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.branch-grid h3 {
  margin: 8px 0 8px;
  color: var(--navy);
  font-size: 34px;
}

.branch-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.branch-grid a {
  display: inline-flex;
  margin-top: 20px;
  color: var(--blue);
  font-weight: 500;
  text-decoration: none;
}

.trust {
  display: grid;
  gap: 32px;
  background:
    radial-gradient(circle at 0% 0%, rgba(0, 71, 179, .08), transparent 28%),
    radial-gradient(circle at 100% 100%, rgba(10, 95, 232, .08), transparent 32%),
    linear-gradient(180deg, #f7faff 0%, #ffffff 100%);
  width: 100%;
  margin-inline: 0;
  padding-inline: max(18px, calc((100% - var(--content-max)) / 2));
}

.trust-heading {
  max-width: 780px;
  margin: 0 auto 30px;
  text-align: center;
}

.trust-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1.08;
}

.trust-heading p {
  max-width: 680px;
  margin: 14px auto 0;
  color: #000000;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 400;
  text-align: center;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.trust-list article {
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 238px;
  border: 1px solid rgba(0, 71, 179, .12);
  border-radius: 16px;
  padding: 28px 22px 24px;
  background: var(--white);
  box-shadow: 0 20px 46px rgba(6, 23, 67, .08);
  text-align: center;
}

.trust-icon {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  margin-bottom: 20px;
  border-radius: 18px;
  color: var(--navy);
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,.94), transparent 30%),
    linear-gradient(145deg, #ffffff, #edf4ff);
  box-shadow: 0 14px 30px rgba(6, 23, 67, .10);
}

.trust-icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-list strong {
  display: block;
  color: var(--navy);
  font-size: 20px;
}

.trust-list span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.trust-seals {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
}

.trust-seal {
  display: grid;
  place-items: center;
  width: 168px;
  height: 168px;
  border: 1px solid rgba(0, 71, 179, .12);
  border-radius: 50%;
  padding: 24px;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,.98), rgba(255,255,255,.92) 42%, rgba(240,246,255,.98) 100%);
  box-shadow: 0 22px 44px rgba(6, 23, 67, .08);
}

.trust-seal img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

footer {
  display: grid;
  gap: 28px;
  padding: 30px max(30px, calc((100% - var(--content-max)) / 2)) 24px;
  color: var(--white);
  background: #061b4a;
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.footer-brand-row {
  display: grid;
  justify-items: start;
  gap: 12px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.footer-brand-row img {
  width: 178px;
  max-height: 60px;
  object-fit: contain;
  object-position: left center;
}

.footer-brand-row p {
  margin: 0;
  color: rgba(255,255,255,.94);
  font-size: 16px;
  line-height: 1.45;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 6vw, 82px);
}

.footer-block {
  display: grid;
  align-content: start;
  gap: 13px;
}

.footer-block h3 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 22px;
  font-weight: 800;
}

.footer-block p {
  margin: 0;
  color: rgba(255,255,255,.94);
  font-size: 16px;
  line-height: 1.45;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  color: #8db6ff;
  flex: 0 0 auto;
}

.footer-contact-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-social {
  display: grid;
  gap: 12px;
  margin-top: 6px;
}

.footer-social > span {
  color: rgba(255,255,255,.82);
  font-size: 14px;
  font-weight: 500;
}

.footer-social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-social-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  background: rgba(255,255,255,.08);
  box-shadow: 0 12px 24px rgba(0,0,0,.16);
  font-size: 23px;
  font-weight: 900;
}

.footer-social-list svg {
  width: 22px;
  height: 22px;
}

.footer-social-list .instagram-pill svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.footer-social-list .facebook-pill svg,
.footer-social-list .tiktok-pill svg {
  fill: currentColor;
}

.instagram-pill {
  color: #ff287e;
}

.facebook-pill {
  color: #2c83ff;
}

.tiktok-pill {
  color: #ffffff;
}

.whatsapp-pill {
  color: #25d366;
}

.footer-block strong {
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

footer a {
  color: var(--white);
  font-weight: 600;
  text-decoration: none;
}

.footer-copyright {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255,255,255,.68);
  font-size: 13px;
  line-height: 1.4;
}

.hero-trust article,
.proof-grid article,
.exchange-step-grid article,
.dynamic-contact-card,
.review-card,
.trust-list article,
.trust-seal,
.newsletter-card {
  position: relative;
  transition:
    opacity .72s cubic-bezier(.2, .74, .26, 1),
    transform .72s cubic-bezier(.2, .74, .26, 1),
    filter .72s ease,
    border-color .22s ease,
    box-shadow .22s ease,
    background .22s ease;
}

.hero-trust article:hover,
.proof-grid article:hover,
.exchange-step-grid article:hover,
.dynamic-contact-card:hover,
.review-card:hover,
.trust-list article:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 71, 179, .22);
  box-shadow: 0 22px 54px rgba(6, 23, 67, .13);
}

.exchange-step-grid article:hover .step-icon,
.trust-list article:hover .trust-icon,
.dynamic-contact-card:hover .dynamic-contact-icon {
  animation: iconLift .9s ease both;
}

.currency-track article {
  position: relative;
  isolation: isolate;
  transition: transform .22s ease, filter .22s ease;
}

.currency-track article::after {
  content: "";
  position: absolute;
  inset: -6px;
  z-index: -1;
  border-radius: 18px;
  background: radial-gradient(circle, rgba(0, 71, 179, .14), transparent 64%);
  opacity: 0;
  transform: scale(.88);
  transition: opacity .22s ease, transform .22s ease;
}

.currency-track article:hover {
  transform: translateY(-3px) scale(1.03);
  filter: saturate(1.12);
}

.currency-track article:hover::after {
  opacity: 1;
  transform: scale(1);
}

.dynamic-contact-whatsapp,
.newsletter-form button,
.primary,
.header-panel-link {
  position: relative;
  overflow: hidden;
}

.dynamic-contact-whatsapp::after,
.newsletter-form button::after,
.primary::after,
.header-panel-link::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -60%;
  width: 42%;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .38), transparent);
  opacity: 0;
  pointer-events: none;
  animation: buttonAutoShine 7.4s ease-in-out infinite;
}

.dynamic-contact-whatsapp:hover::after,
.newsletter-form button:hover::after,
.primary:hover::after,
.header-panel-link:hover::after {
  animation: buttonShine .82s ease;
}

.dynamic-contact-whatsapp:nth-of-type(2n)::after,
.primary:nth-of-type(2n)::after {
  animation-delay: 2.2s;
}

.newsletter-card:focus-within {
  border-color: rgba(0, 71, 179, .28);
  box-shadow: 0 28px 80px rgba(0, 71, 179, .16);
}

.newsletter-card:focus-within::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 0%, rgba(0, 71, 179, .18), transparent 62%);
  pointer-events: none;
}

.hero-trust article span.is-counting,
.proof-grid article strong.is-counting {
  color: var(--blue);
  animation: counterPulse .72s ease-in-out infinite;
}

.hero-trust article span.is-counted,
.proof-grid article strong.is-counted {
  animation: counterSettle .58s ease both;
}

@keyframes marketGrid {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 54px 54px;
  }
}

@keyframes tickerFlow {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes currencySlide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes reviewsFlow {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 9px)); }
}

@keyframes mallFlow {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 7px)); }
}

@keyframes mallMobileStep {
  0%, 30% { transform: translateX(0); }
  36%, 63% { transform: translateX(-100%); }
  69%, 96% { transform: translateX(-200%); }
  100% { transform: translateX(0); }
}

@keyframes rateRowReveal {
  from {
    opacity: 0;
    transform: translateY(14px) scale(.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes rateRowSweep {
  0%, 52% {
    opacity: 0;
    transform: translateX(-120%);
  }
  62% {
    opacity: .62;
  }
  78%, 100% {
    opacity: 0;
    transform: translateX(120%);
  }
}

@keyframes rateFlagFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
}

@keyframes ratePricePulse {
  0%, 100% {
    color: #061743;
    text-shadow: 0 0 0 rgba(0, 71, 179, 0);
  }
  50% {
    color: #0047b3;
    text-shadow: 0 8px 22px rgba(0, 71, 179, .18);
  }
}

@keyframes quotePulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: .55;
  }
}

@keyframes rateBoardFlip {
  0%, 7.4%, 100% {
    transform: rotateX(0deg);
    filter: brightness(1);
  }
  8.4% {
    transform: rotateX(-72deg);
    filter: brightness(1.08);
  }
  9.8% {
    transform: rotateX(8deg);
    filter: brightness(1.03);
  }
  11.2% {
    transform: rotateX(0deg);
    filter: brightness(1);
  }
}

@keyframes iconLift {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  45% {
    transform: translateY(-4px) scale(1.05);
  }
}

@keyframes stepProgressLine {
  0%, 20% {
    transform: translateX(-100%);
    opacity: 0;
  }
  38% {
    opacity: 1;
  }
  62%, 100% {
    transform: translateX(100%);
    opacity: 0;
  }
}

@keyframes mallCardFocus {
  0%, 100% {
    background: transparent;
    box-shadow: none;
    transform: scale(1);
  }
  50% {
    background: rgba(255, 255, 255, .72);
    box-shadow: 0 18px 38px rgba(6, 23, 67, .10);
    transform: scale(1.018);
  }
}

@keyframes buttonShine {
  0% {
    opacity: 0;
    left: -60%;
  }
  35% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    left: 120%;
  }
}

@keyframes buttonAutoShine {
  0%, 68%, 100% {
    opacity: 0;
    left: -60%;
  }
  78% {
    opacity: .78;
  }
  92% {
    opacity: 0;
    left: 120%;
  }
}

@keyframes counterPulse {
  0%, 100% {
    text-shadow: 0 0 0 rgba(0, 71, 179, 0);
    transform: translateY(0);
  }
  50% {
    text-shadow: 0 8px 24px rgba(0, 71, 179, .18);
    transform: translateY(-1px);
  }
}

@keyframes counterSettle {
  0% {
    transform: scale(1.06);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes mapMarkerPulse {
  0% {
    opacity: .55;
    transform: scale(.45);
  }
  70% {
    opacity: 0;
    transform: scale(1.65);
  }
  100% {
    opacity: 0;
    transform: scale(1.65);
  }
}

@keyframes mapMarkerDrop {
  0%, 100% {
    transform: rotate(-45deg) translate(0, 0);
  }
  50% {
    transform: rotate(-45deg) translate(-3px, -3px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto;
  }

  .rate-row,
  .rate-row-face,
  .rate-row::before,
  .rate-currency-cell img,
  .rate-price-cell strong,
  .exchange-step-grid article::before,
  .mall-orbit article,
  .dynamic-contact-whatsapp::after,
  .newsletter-form button::after,
  .primary::after,
  .header-panel-link::after,
  .exchange-step-grid article:hover .step-icon,
  .trust-list article:hover .trust-icon,
  .dynamic-contact-card:hover .dynamic-contact-icon {
    animation: none;
  }

  .rate-row {
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .mall-orbit article {
    animation-duration: 10s;
  }

  .dynamic-contact-whatsapp::after,
  .newsletter-form button::after,
  .primary::after,
  .header-panel-link::after {
    animation-duration: 10s;
  }

  .hero-trust article:hover,
  .proof-grid article:hover,
  .exchange-step-grid article:hover,
  .dynamic-contact-card:hover,
  .review-card:hover,
  .trust-list article:hover,
  .currency-track article:hover {
    transform: none;
  }
}

@media (max-width: 1366px) and (min-width: 981px) {
  .hero {
    min-height: 82vh;
    padding-bottom: 112px;
  }

  .hero-copy {
    margin-top: 42px;
  }

  .operation-chart {
    top: 64%;
    height: 250px;
  }

  .chart-meta {
    top: 46px;
    right: clamp(18px, 4vw, 48px);
  }

  .chart-meta strong {
    font-size: 24px;
  }

  .current-quote {
    top: 116px;
    padding: 5px 9px;
    font-size: 15px;
  }

  #price-chart {
    inset-top: 72px;
    height: calc(100% - 72px);
  }
}

@media (max-width: 980px) {
  .header {
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .brand img {
    width: 154px;
  }

  .nav {
    display: none;
  }

  .hero,
  .section-heading,
  .calculator-section,
  .locations-grid,
  .trust {
    grid-template-columns: 1fr;
  }

  .reviews-section {
    width: min(100% - 36px, 1180px);
    padding: 56px 0 48px;
  }

  .newsletter-section {
    width: min(100% - 36px, 1180px);
    padding-bottom: 54px;
  }

  .exchange-steps {
    width: min(100% - 36px, 1180px);
    padding-top: 54px;
  }

  .exchange-steps-layout {
    grid-template-columns: 1fr;
  }

  .mall-carousel {
    min-height: 220px;
    max-height: none;
    overflow: hidden;
  }

  .mall-orbit {
    width: 100%;
    height: auto;
    gap: 0;
    padding: 0;
    animation: mallMobileStep 15s steps(1, end) infinite;
  }

  .mall-orbit article {
    flex: 0 0 100%;
    width: 100%;
    min-height: 220px;
    padding: 22px 18px;
  }

  .mall-orbit article[aria-hidden="true"] {
    display: none;
  }

  .newsletter-card {
    grid-template-columns: 1fr;
    padding: 26px;
  }

  .reviews-summary {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .reviews-proof {
    justify-content: flex-start;
  }

  .review-card {
    width: 320px;
  }

  .locations-section {
    padding-inline: 18px;
  }

  .locations-map-wide,
  .locations-map-wide iframe {
    min-height: 360px;
    height: 360px;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }

  .contact-panel {
    padding: 24px;
  }

  .rate-board,
  .branch-grid,
  .proof-grid,
  .trust-list {
    grid-template-columns: 1fr;
  }

  .rate-row-face {
    grid-template-columns: minmax(0, 1.25fr) minmax(92px, .55fr) minmax(92px, .55fr);
  }

  .rate-table-head {
    grid-template-columns: minmax(0, 1.25fr) minmax(92px, .55fr) minmax(92px, .55fr);
    min-height: 46px;
  }

  .rate-warning {
    margin: 22px auto 20px;
    padding: 15px 16px;
    border-radius: 12px;
    font-size: 16px;
  }

  .rate-table-head span {
    font-size: 13px;
  }

  .rate-currency-cell,
  .rate-price-cell {
    padding: 8px 10px;
  }

  .rate-currency-cell img {
    width: 40px;
    height: 28px;
  }

  .rate-currency-cell strong {
    font-size: 14px;
  }

  .rate-price-cell strong {
    font-size: 18px;
  }

  .trend {
    font-size: 20px;
  }

  .daily-rate-header {
    display: grid;
  }

  .rate-card,
  .proof-strip article {
    min-height: 118px;
  }

  .hero {
    align-items: start;
    min-height: auto;
    padding-top: 142px;
    padding-bottom: 72px;
  }

  .operation-chart {
    left: 12%;
    top: 63%;
    height: 260px;
    opacity: .2;
  }

  .hero-copy {
    margin-top: 0;
  }


  footer {
    display: grid;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

@media (max-width: 560px) {
  .hero {
    --mobile-header-height: 92px;
    --mobile-ticker-height: 38px;
    --mobile-hero-gap: 64px;
    display: block;
    min-height: auto;
    padding: calc(var(--mobile-header-height) + var(--mobile-ticker-height) + var(--mobile-hero-gap)) 20px 58px;
  }

  .market-ticker {
    top: var(--mobile-header-height);
    height: var(--mobile-ticker-height);
  }

  .ticker-flow {
    padding-inline: 0;
    animation-duration: 42s;
  }

  .currency-track {
    animation-duration: 54s;
  }

  .hero-copy {
    position: relative;
    z-index: 3;
    max-width: 100%;
    margin-top: 0;
  }

  .hero h1 {
    max-width: 100%;
    font-size: 30px;
    line-height: 1.04;
  }

  .hero h1 span {
    font-size: 33px;
    line-height: 1.06;
  }

  .hero h1 strong {
    margin-top: 7px;
    font-size: 24px;
    line-height: 1.08;
    white-space: normal;
  }

  .hero-text {
    max-width: 100%;
    margin-top: 20px;
    font-size: 15.5px;
    line-height: 1.48;
  }

  .operation-chart {
    left: 0;
    right: 0;
    top: 56%;
    height: 300px;
    z-index: 0;
    opacity: .14;
    transform: translateY(-50%);
    border-left: 0;
  }

  .chart-meta,
  .current-quote {
    display: none;
  }

  #price-chart {
    inset: 0;
    height: 100%;
  }

  .hero-trust {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-width: 100%;
    margin-top: 30px;
  }

  .hero-trust article {
    min-height: 74px;
    padding: 10px 12px;
  }

  .hero-trust .hero-branch-card {
    min-height: 106px;
    padding: 8px 10px;
  }

  .hero-branch-card img {
    max-width: 176px;
    height: 70px;
  }

  .hero-trust span {
    font-size: 24px;
  }

  .hero-trust p {
    margin-top: 8px;
    font-size: 11.5px;
    line-height: 1.18;
  }

  .reviews-heading h2 {
    font-size: 32px;
  }

  .trust-heading h2 {
    font-size: 32px;
  }

  .trust-heading p {
    font-size: 16px;
  }

  .trust-list article {
    min-height: auto;
    padding: 24px 18px 22px;
  }

  .trust-seal {
    width: 150px;
    height: 150px;
  }

  .reviews-heading p,
  .reviews-summary p {
    font-size: 16px;
  }

  .reviews-summary {
    padding: 16px;
  }

  .reviews-summary strong {
    font-size: 38px;
  }

  .reviews-proof span {
    min-height: 30px;
    padding-inline: 10px;
    font-size: 11px;
  }

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

  .exchange-steps-heading h2 {
    font-size: 30px;
  }

  .exchange-steps-heading p {
    font-size: 16px;
  }

  .exchange-step-grid article {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .step-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
  }

  .step-icon svg {
    width: 30px;
    height: 30px;
  }

  .mall-orbit article {
    min-height: 232px;
    padding: 10px 6px;
    row-gap: 8px;
  }

  .mall-orbit img {
    max-width: min(220px, 100%);
    max-height: 104px;
  }

  .mall-orbit span {
    font-size: 16px;
    line-height: 1.12;
  }

  .mall-orbit small {
    font-size: 13.5px;
    line-height: 1.2;
  }

  .newsletter-copy h2 {
    font-size: 30px;
  }

  .newsletter-copy p {
    font-size: 16px;
  }

  .newsletter-form {
    padding: 16px;
  }

  .reviews-carousel {
    margin-inline: -18px;
  }

  .review-card {
    width: 286px;
    min-height: 252px;
    padding: 20px;
  }

  .review-card p {
    font-size: 18px;
  }

  .contact-card {
    padding: 24px 18px 18px;
  }

  .contact-card h4 {
    font-size: 22px;
  }

  .contact-card strong,
  .contact-card p,
  .contact-note {
    font-size: 15px;
  }

  .contact-actions {
    display: grid;
  }

  .contact-card a {
    width: 100%;
  }

  .exchange-terminal {
    padding: 16px;
  }
}
