/* ═══════════════════════════════════════════════════════════════════════
   Design System v2 — Modern Fintech Theme
═══════════════════════════════════════════════════════════════════════ */

:root {
  /* ─ Brand (Soft Violet) */
  --blue-color: #7C6FFF;
  --blue-light-color: #F3F1FF;
  --blue-dark-color: #5148E0;
  --blue-mid-color: #A5A0FF;

  /* ─ CTA (Teal-Mint) */
  --green-color: #0D9488;
  --green-mid: #14B8A6;
  --green-light: #CCFBF1;

  /* ─ Text */
  --text-color: #475569;
  --black-color: #1E293B;
  --black-medium-color: #334155;

  /* ─ Neutrals */
  --white-color: #FFFFFF;
  --grey-color: #94A3B8;
  --grey-medium-color: #E2E8F0;
  --grey-light-color: #F8FAFC;
  --grey-dark-color: #64748B;

  /* ─ Font */
  --primary-font: 'Inter';

  /* ─ Motion */
  --transition: all 0.2s ease;

  /* ─ Layout */
  --grid-width: 1160px;
  --grid-gutter: 16px;

  /* ─ Radius */
  --r-sm: 8px;
  --r: 12px;
  --r-lg: 20px;

  /* ─ Shadows */
  --sh-xs: 0 1px 3px rgba(0,0,0,0.06);
  --sh-sm: 0 2px 10px rgba(0,0,0,0.08);
  --sh-md: 0 8px 32px rgba(0,0,0,0.10);
  --sh-lg: 0 20px 60px rgba(0,0,0,0.14);
  --sh-form: 0 28px 80px rgba(11,20,38,0.30);
}

/* ═══ RESET ═══════════════════════════════════════════════════════════ */

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

html {
  text-rendering: optimizelegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body, html {
  min-height: 100%;
}

body {
  line-height: 1;
  background-color: var(--grey-light-color);
  color: var(--text-color);
  font-family: var(--primary-font), sans-serif;
  font-size: 18px;
  font-weight: 400;
  overflow-x: hidden;
}

/* ═══ TYPOGRAPHY ═══════════════════════════════════════════════════════ */

h1, h2, h3, h4, h5, h6 {
  color: var(--black-color);
  font-family: var(--primary-font), sans-serif;
  font-weight: 700;
  line-height: 1.25;
  word-break: break-word;
}

h1 { font-size: 36px;  margin: 40px 0 20px; }
h2 { font-size: 28px;  margin: 35px 0 15px; }
h3 { font-size: 22px;  margin: 25px 0 12px; }
h4 { font-size: 19px;  margin: 20px 0 10px; }
h5 { font-size: 17px;  margin: 18px 0 8px;  }
h6 { font-size: 15px;  margin: 15px 0 8px;  }

p {
  font-size: 18px;
  line-height: 1.72;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--text-color);
  overflow-wrap: break-word;
  word-break: break-word;
}

strong { font-weight: 700; }
em     { font-style: italic; }

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--blue-color);
  outline: none;
  text-decoration: none;
  transition: var(--transition);
}

a:hover { text-decoration: underline; }

ul {
  list-style-type: none;
  margin: 20px 0;
  padding: 0;
}

ul li {
  position: relative;
  margin-bottom: 18px;
  padding-left: 28px;
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-color);
}

ul li::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-mid-color), var(--blue-color));
}

/* ═══ GRID / LAYOUT ═══════════════════════════════════════════════════ */

.tgwuc4 {
  max-width: calc(var(--grid-width) + var(--grid-gutter) * 2);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--grid-gutter);
}

.tgwuc4.sm {
  max-width: calc(962px + var(--grid-gutter) * 2);
}

.xfmohx {
  display: flex;
  flex-wrap: wrap;
  margin: 0 calc(var(--grid-gutter) * -1);
}

.fso7u0 {
  padding: 0 var(--grid-gutter);
  min-width: 0;
}

.zj8dzc   { width: 100%; }
.aok33a { flex: 1; min-width: 0; }

.ycrmls {
  display: flex;
  align-items: center;
  justify-content: center;
}

.zeljut { justify-content: flex-end; }

@media (min-width: 992px) {
  .uh6546 { width: 25%; }
  .wvi1vz { width: 41.6666%; }
  .mf2wrn { width: 58.3333%; }
  .rxog8x { width: 66.6666%; }
}

@media (min-width: 768px) {
  .jr9yjs { width: 25%; }
}

/* ═══ FORMS ════════════════════════════════════════════════════════════ */

input,
select {
  width: 100%;
  display: block;
  padding: 12px 16px;
  color: var(--black-color);
  font-size: 16px;
  line-height: 1.5;
  font-family: var(--primary-font), sans-serif;
  font-weight: 400;
  background-color: var(--white-color);
  border-radius: var(--r-sm);
  outline: none;
  border: 1.5px solid var(--grey-medium-color);
  transition: var(--transition);
  appearance: none;
  -webkit-appearance: none;
  min-width: 0;
}

select {
  padding-right: 44px;
  background: url(../images/select-arrow.svg) no-repeat calc(100% - 14px) center var(--white-color);
  cursor: pointer;
}

::-webkit-input-placeholder { color: var(--grey-color); opacity: 1; }
::-moz-placeholder          { color: var(--grey-color); opacity: 1; }
:-ms-input-placeholder      { color: var(--grey-color); opacity: 1; }
:-moz-placeholder           { color: var(--grey-color); opacity: 1; }

input:focus,
select:focus {
  border-color: var(--blue-color);
  box-shadow: 0 0 0 3px rgba(124, 111, 255, 0.14);
}

/* ═══ BUTTON ════════════════════════════════════════════════════════════ */

.x6bxxq {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  padding: 13px 30px;
  background: linear-gradient(135deg, #0F766E 0%, var(--green-color) 45%, var(--green-mid) 100%);
  color: var(--white-color);
  font-family: var(--primary-font), sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
  border-radius: var(--r-sm);
  cursor: pointer;
  border: 0;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(13, 148, 136, 0.36), 0 1px 4px rgba(13, 148, 136, 0.18);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.x6bxxq:hover,
.x6bxxq:active {
  box-shadow: 0 8px 28px rgba(13, 148, 136, 0.52), 0 2px 8px rgba(13, 148, 136, 0.24);
  transform: translateY(-2px);
  text-decoration: none;
  color: var(--white-color);
}

/* ═══ UTILITIES ════════════════════════════════════════════════════════ */

.zxjlmw         { display: flex; }
.a2vhw4   { align-items: center; }
.wm8oid{ justify-content: space-between; }
.g4nx1i { justify-content: center; }
.vsszv4  { justify-content: flex-start; }

/* ═══ HEADER ════════════════════════════════════════════════════════════ */

.alzcfb {
  background-color: var(--white-color);
  border-bottom: 1px solid var(--grey-medium-color);
  border-top: 3px solid var(--blue-color);
  box-shadow: 0 2px 16px rgba(0,0,0,0.055);
  position: sticky;
  top: 0;
  z-index: 50;
}

.alzcfb .tgwuc4 {
  height: 67px;
  display: flex;
  align-items: center;
}

.alzcfb .xfmohx {
  width: 100%;
  flex-wrap: nowrap;
  align-items: center;
}

.w4ropo {
  font-size: clamp(13px, 1.5vw, 18px);
  font-weight: 800;
  color: var(--white-color);
  text-decoration: none;
  white-space: nowrap;
  background: linear-gradient(135deg, var(--blue-dark-color) 0%, var(--blue-color) 100%);
  padding: 9px 20px;
  border-radius: var(--r-sm);
  letter-spacing: -0.01em;
  transition: var(--transition);
  flex-shrink: 0;
}

.w4ropo:hover {
  opacity: 0.88;
  text-decoration: none;
}

.fry6p1 {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  min-width: 0;
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.opevat {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0;
  transition: var(--transition);
  background-color: rgba(11, 20, 38, 0.48);
  pointer-events: none;
}

.opevat.is-active {
  opacity: 1;
  z-index: 9;
  pointer-events: auto;
}

.rhenh0 {
  width: 100%;
  margin-right: 24px;
  min-width: 0;
}

.rhenh0 ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 0;
  flex-wrap: nowrap;
}

.rhenh0 ul li {
  margin: 0 0 0 28px;
  padding: 0;
  white-space: nowrap;
}

.rhenh0 ul li:first-child { margin-left: 0; }
.rhenh0 ul li::before    { display: none; }

.rhenh0 ul li a,
.rhenh0 ul li span {
  display: inline-flex;
  color: var(--text-color);
  font-size: 14.5px;
  line-height: 1;
  font-weight: 600;
  text-decoration: none;
  padding: 5px 0;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
}

.rhenh0 ul li a:hover,
.rhenh0 ul li.uwjv04 a {
  color: var(--blue-color);
  border-color: var(--blue-color);
  text-decoration: none;
}

.c5sjml { flex-shrink: 0; }

.c5sjml .x6bxxq {
  font-size: 14px;
  padding: 9px 22px;
  border-radius: var(--r-sm);
  width: auto;
  letter-spacing: 0;
  box-shadow: 0 2px 10px rgba(5, 150, 105, 0.28);
}

/* ═══ HERO ══════════════════════════════════════════════════════════════ */

.mpf6km {
  position: relative;
}

.v9cygs {
  background: linear-gradient(148deg, #3730A3 0%, #5148E0 40%, #7C6FFF 75%, #A5A0FF 100%);
  padding: 72px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Subtle dot grid */
.v9cygs::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

/* Bottom glow behind the form card */
.v9cygs::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 640px;
  max-width: 100%;
  height: 180px;
  background: radial-gradient(ellipse, rgba(37, 99, 235, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.o22na5 {
  font-size: clamp(26px, 4.2vw, 50px);
  line-height: 1.18;
  color: var(--white-color);
  font-weight: 800;
  margin: 0 auto 18px;
  max-width: 820px;
  letter-spacing: -0.025em;
  position: relative;
  z-index: 1;
}

.i3u096 {
  font-size: clamp(15px, 1.8vw, 19px);
  line-height: 1.65;
  max-width: 540px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.80);
  position: relative;
  z-index: 1;
}

/* Section below hero — hosts the floating form */
.zv2kk6 {
  margin-top: 0;
  padding-top: 40px;
  padding-bottom: 60px;
  background: var(--grey-light-color);
  position: relative;
  z-index: 2;
}

/* Floating form card */
.lo5fcf {
  max-width: 880px;
  width: 100%;
  margin: 0 auto;
  background: var(--white-color);
  border-radius: var(--r-lg);
  padding: 28px 28px 20px;
  box-shadow: var(--sh-form);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-top: 3px solid var(--blue-color);
  position: relative;
}

.z7of2m {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: var(--black-color);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.z7of2m::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-mid);
  flex-shrink: 0;
  box-shadow: 0 0 0 3px var(--green-light);
}

.y3ix8c {
  display: flex;
  align-items: stretch;
  gap: 10px;
}

.y3ix8c select,
.y3ix8c input[type="email"] {
  border-radius: var(--r-sm);
  height: 54px;
  font-size: 15px;
  padding: 0 16px;
  background-color: #FAFBFF;
  border-color: #E2E8F0;
  margin: 0;
}

.y3ix8c select {
  flex: 0 0 200px;
  padding-right: 40px;
  background-image: url(../images/select-arrow.svg);
  background-repeat: no-repeat;
  background-position: calc(100% - 14px) center;
  background-color: #FAFBFF;
}

.y3ix8c input[type="email"] {
  flex: 1 1 0;
  min-width: 0;
}

.kbs4sm { flex: 0 0 auto; }

.kbs4sm .x6bxxq {
  height: 54px;
  padding: 0 32px;
  font-size: 17px;
  width: auto;
  border-radius: var(--r-sm);
}

.x9somp {
  margin: 14px 0 0;
  font-size: 11px;
  line-height: 16px;
  text-align: center;
  color: var(--grey-color);
}

.x9somp a {
  color: var(--grey-dark-color);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Trust badges */
.nvsmds {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px auto 0;
  max-width: 880px;
}

.we9ajs {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--grey-dark-color);
  background: var(--white-color);
  border: 1.5px solid var(--grey-medium-color);
  border-radius: 50px;
  padding: 7px 16px 7px 12px;
  white-space: nowrap;
  box-shadow: var(--sh-xs);
}

.we9ajs svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  color: var(--blue-color);
  stroke: var(--blue-color);
}

/* ═══ INTRO ═════════════════════════════════════════════════════════════ */

.vjaies {
  padding: 30px 0 60px;
}

.msehy5 {
  margin: 0 0 30px;
  font-size: 38px;
  color: var(--black-color);
  line-height: 1.3;
  font-weight: 700;
  padding-bottom: 16px;
  position: relative;
}

.msehy5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 52px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--blue-color) 0%, var(--green-mid) 100%);
}

/* ═══ FOOTER ════════════════════════════════════════════════════════════ */

.y0li0p {
  padding-top: 64px;
  background: linear-gradient(180deg, #2E2B77 0%, #3730A3 60%, #4338CA 100%);
  color: var(--white-color);
}

.dv2nvd {
  display: inline-block;
  margin-bottom: 28px;
  font-size: 17px;
  font-weight: 800;
  color: var(--white-color);
  text-decoration: none;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.10);
  padding: 9px 18px;
  border-radius: var(--r-sm);
  letter-spacing: -0.01em;
  transition: var(--transition);
}

.dv2nvd:hover {
  background: rgba(255, 255, 255, 0.16);
  text-decoration: none;
}

.lgkahj {
  display: flex;
  flex-direction: column;
}

.eg6tv3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 48px;
}

.eg6tv3 li {
  margin: 0;
  padding: 0;
}

.eg6tv3 li::before { display: none; }

.eg6tv3 li a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.10);
  border-radius: var(--r-sm);
  transition: var(--transition);
}

.eg6tv3 li a img {
  display: inline-block;
}

.eg6tv3 li a:hover {
  background-color: var(--blue-color);
  text-decoration: none;
}

.lxr493 {
  margin: 0 0 14px;
  text-transform: uppercase;
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.10em;
  color: #C4BFFF;
}

.pvaeve {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: space-between;
}

.rec8bp { width: 100%; }

.xl8ooj { margin: 0; }

.xl8ooj li {
  margin: 0 0 12px;
  padding: 0;
  line-height: 1;
}

.xl8ooj li::before { display: none; }

.xl8ooj li a {
  display: inline-block;
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  color: #C4BFFF;
  transition: var(--transition);
}

.xl8ooj li a:hover {
  color: var(--white-color);
  text-decoration: none;
}

.jerzzo.r38v7l .xl8ooj {
  display: flex;
  flex-wrap: wrap;
  column-gap: 14px;
}

.jerzzo.r38v7l .xl8ooj li {
  width: calc(50% - 7px);
}

.xrd3uj {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.i0j6pw {
  margin-bottom: 26px;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.6;
}

.i0j6pw:last-child { margin-bottom: 16px; }

.i0j6pw p {
  color: #A5A0CC;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.65;
  margin-bottom: 6px;
  overflow-wrap: break-word;
  word-break: break-word;
}

.i0j6pw p:last-child { margin-bottom: 0; }

.wjvp77 {
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  color: #C4BFFF;
  margin-right: 4px;
}

.sszjub {
  width: 100%;
  padding: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  margin-top: 20px;
}

.sszjub p {
  margin-bottom: 0;
  font-size: 12px;
  line-height: 1.4;
  color: #A5A0CC;
}

/* ═══ HAMBURGER ═════════════════════════════════════════════════════════ */

.ujyfap {
  position: relative;
  display: none;
  cursor: pointer;
  background-color: transparent;
  border: 0;
  z-index: 100;
  overflow: visible;
  transition: opacity 0.15s linear;
  flex-shrink: 0;
  margin-left: 14px;
}

.ujyfap:hover { opacity: 0.7; }

.ujyfap.is-active .fhrirm,
.ujyfap.is-active .fhrirm::before,
.ujyfap.is-active .fhrirm::after {
  background-color: var(--black-color);
}

.cbsf4b {
  width: 26px;
  height: 20px;
  display: inline-block;
  position: relative;
}

.fhrirm {
  display: block;
  top: 50%;
  margin-top: -1.5px;
}

.fhrirm,
.fhrirm::before,
.fhrirm::after {
  width: 26px;
  height: 2.5px;
  background-color: var(--black-color);
  border-radius: 3px;
  position: absolute;
  transition: transform 0.15s ease;
}

.fhrirm::before,
.fhrirm::after {
  content: '';
  display: block;
}

.fhrirm::before { top: -8px; }
.fhrirm::after  { bottom: -8px; }

.gt5bhd .fhrirm { top: 2px; }

.gt5bhd .fhrirm::before {
  top: 8px;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.gt5bhd .fhrirm::after { top: 16px; }

.gt5bhd.is-active .fhrirm {
  transform: translate3d(0, 8px, 0) rotate(45deg);
}

.gt5bhd.is-active .fhrirm::before {
  transform: rotate(-45deg) translate3d(-4px, -5px, 0);
  opacity: 0;
}

.gt5bhd.is-active .fhrirm::after {
  transform: translate3d(0, -16px, 0) rotate(-90deg);
}

/* ═══ ARTICLE ═══════════════════════════════════════════════════════════ */

.s448nm {
  padding: 48px 0 64px;
  background: var(--white-color);
  overflow-x: hidden;
}

.s448nm h1 { margin-top: 0; }

.zelj5c { line-height: 1.75; }

.zelj5c p { margin-bottom: 1rem; }

.zelj5c ul,
.zelj5c ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.zelj5c li { margin-bottom: 0.35rem; }

/* ═══ STATES WE SERVE ═══════════════════════════════════════════════════ */

.ind793 {
  padding: 0 0 60px;
  margin-top: -20px;
  background: var(--white-color);
}

.ind793 h2 { margin-bottom: 1.25rem; }

.piv6wk {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1.5px solid var(--grey-medium-color);
  border-radius: var(--r);
  overflow: hidden;
}

.piv6wk li {
  margin: 0;
  padding: 0;
  border-right: 1.5px solid var(--grey-medium-color);
  border-bottom: 1.5px solid var(--grey-medium-color);
}

.piv6wk li::before { display: none; }

.piv6wk li:nth-child(even)      { border-right: none; }
.piv6wk li:last-child           { border-bottom: none; }
.piv6wk li:nth-last-child(2):nth-child(odd) { border-bottom: none; }

.piv6wk li a {
  display: block;
  padding: 10px 16px;
  font-size: 15px;
  color: var(--text-color);
  text-decoration: none;
  background: var(--white-color);
  transition: background 0.15s, color 0.15s;
}

.piv6wk li a:hover {
  background: var(--blue-light-color);
  color: var(--blue-color);
}

/* ═══ CITIES ════════════════════════════════════════════════════════════ */

.g3todx {
  padding: 2rem 0 3rem;
  background: var(--grey-light-color);
}

.o6q7by { margin-bottom: 1.25rem; }

.g9ztfo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.hdvc8q {
  border: 1.5px solid var(--grey-medium-color);
  border-radius: var(--r-sm);
  background: var(--white-color);
  overflow: hidden;
}

.avhutx {
  padding: 0.65rem 1rem;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  user-select: none;
}

.avhutx::after {
  content: "▸";
  margin-left: auto;
  font-size: 0.7rem;
  transition: transform 0.2s;
  color: var(--blue-color);
  flex-shrink: 0;
}

.hdvc8q[open] .avhutx::after {
  transform: rotate(90deg);
}

.m5d94e {
  padding: 0.25rem 0 0.5rem;
  margin: 0;
  border-top: 1px solid var(--grey-medium-color);
  list-style: none;
}

.m5d94e li {
  margin: 0;
  padding: 0;
}

.m5d94e li::before { display: none; }

.m5d94e li a {
  display: block;
  padding: 0.25rem 1rem;
  font-size: 0.88rem;
  color: var(--blue-color);
  text-decoration: none;
  transition: background 0.15s;
}

.m5d94e li a:hover {
  background: var(--blue-light-color);
  text-decoration: none;
}

/* ═══ ABOUT ══════════════════════════════════════════════════════════════ */

.cjlish p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

.yhc6ya {
  display: flex;
  gap: 2.5rem;
  margin: 1.75rem 0;
  flex-wrap: wrap;
}

.ot7a6b { flex: 1 1 220px; }

.ot7a6b h2 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--black-color);
}

/* ═══ CONTACT ════════════════════════════════════════════════════════════ */

.bbz989 {
  margin-bottom: 1.75rem;
  font-size: 1rem;
  line-height: 1.6;
}

.sw10cq {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.eocsnn {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.g6gijp {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--black-color);
}

.s5rhxy {
  width: 100%;
  padding: 0.7rem 1rem;
  font-size: 0.95rem;
  font-family: inherit;
  border: 1.5px solid var(--grey-medium-color);
  border-radius: var(--r-sm);
  outline: none;
  transition: border-color 0.2s;
  min-width: 0;
}

.s5rhxy:focus {
  border-color: var(--blue-color);
  box-shadow: 0 0 0 3px rgba(124, 111, 255, 0.14);
}

.bryvt7 {
  resize: vertical;
  min-height: 130px;
}

.zr8jrx { align-self: flex-start; }

/* ═══ MAP ════════════════════════════════════════════════════════════════ */

.zadv7y {
  margin: 0.5rem 0 2rem;
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  border: 1.5px solid var(--grey-medium-color);
}

.zadv7y iframe { display: block; }

/* ═══ BUSINESSES TABLE ═══════════════════════════════════════════════════ */

.yl7w1y {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 1rem 0 2rem;
}

.vp4fsz {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.vp4fsz th {
  text-align: left;
  padding: 10px 14px;
  background: var(--blue-light-color);
  border-bottom: 2px solid #DDD8FF;
  font-weight: 700;
  white-space: nowrap;
  color: var(--blue-color);
}

.vp4fsz td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--grey-medium-color);
  vertical-align: top;
  background: var(--white-color);
  word-break: break-word;
}

.vp4fsz tr:last-child td { border-bottom: none; }

.vp4fsz tr:hover td { background: var(--grey-light-color); }

/* ═══ LEGAL TABLES ═══════════════════════════════════════════════════════ */

.a6u0l6 {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 1.25rem 0 1.75rem;
}

.hmidlu {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  line-height: 1.5;
}

.hmidlu td,
.hmidlu th {
  border: 1.5px solid var(--grey-medium-color);
  padding: 0.65rem 0.9rem;
  vertical-align: top;
  word-break: break-word;
}

.hmidlu tr:first-child td,
.hmidlu tr:first-child th {
  background-color: var(--blue-light-color);
  font-weight: 700;
  color: var(--blue-color);
}

.hmidlu p { margin: 0 0 0.35rem; }
.hmidlu p:last-child { margin-bottom: 0; }

.hmidlu ul {
  margin: 0.35rem 0 0;
  padding-left: 1.25rem;
}

.hmidlu ul li { margin-bottom: 0.2rem; }

/* ═══ LEGAL PAGES ═══════════════════════════════════════════════════════ */

/* Allow wide legal tables to scroll on narrow screens */
.l3sn4x .fso7u0,
.l3sn4x .ukqwoe {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.l3sn4x table {
  min-width: 400px;
  max-width: 100%;
}

/* ═══ RESPONSIVE ════════════════════════════════════════════════════════ */

/* ─ Tablet (≤1025px): activate hamburger, slide nav */
@media (max-width: 1025px) {
  .ujyfap { display: inline-flex; }

  .alzcfb,
  .alzcfb .tgwuc4 { height: 71px; }

  .fry6p1 {
    padding: 32px 20px;
    position: fixed;
    top: 71px;
    right: 0;
    bottom: 0;
    height: calc(100% - 71px);
    width: min(300px, 88vw);
    z-index: 99;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transform: translateX(100%);
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.12);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    overflow-y: auto;
    /* Override flex-1 so it doesn't push button away */
    flex: none;
  }

  .fry6p1.is-active {
    transform: translateX(0);
  }

  .rhenh0 {
    margin-right: 0;
    width: 100%;
    overflow: visible;
  }

  .rhenh0 ul {
    display: block;
    justify-content: flex-start;
  }

  .rhenh0 ul li {
    margin: 0 0 4px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--grey-medium-color);
  }

  .rhenh0 ul li:last-child { border: 0; margin-bottom: 0; }

  .rhenh0 ul li a,
  .rhenh0 ul li span {
    font-size: 19px;
    font-weight: 700;
    border-bottom: none;
    padding: 4px 0;
    color: var(--black-color);
  }

  .rhenh0 ul li a:hover { color: var(--blue-color); }

  .c5sjml .x6bxxq {
    font-size: 14px;
    padding: 9px 18px;
  }

  .v9cygs { padding: 60px 0 80px; }
}

/* ─ Medium (≤992px) */
@media (max-width: 992px) {
  .y0li0p { padding-top: 52px; }

  .lgkahj {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 28px;
  }

  .dv2nvd   { margin-bottom: 0; }
  .eg6tv3 { margin: 5px 0 24px; }
}

/* ─ Mobile (≤767px) */
@media (max-width: 767px) {
  body { font-size: 16px; }

  p   { font-size: 16px; line-height: 1.65; }

  ul li {
    font-size: 16px;
    line-height: 1.65;
    padding-left: 22px;
    margin-bottom: 14px;
  }

  ul li::before { top: 8px; left: 8px; width: 6px; height: 6px; }

  h1 { font-size: 26px; margin: 28px 0 14px; line-height: 1.25; }
  h2 { font-size: 22px; margin: 24px 0 12px; }
  h3 { font-size: 18px; margin: 20px 0 10px; }
  h4 { font-size: 16px; margin: 18px 0 8px;  }
  h5 { font-size: 15px; margin: 14px 0 7px;  }
  h6 { font-size: 14px; margin: 12px 0 6px;  }

  input,
  select { font-size: 16px; padding: 11px 14px; }

  select {
    padding-right: 38px;
    background-size: 12px;
    background-position-x: calc(100% - 12px);
  }

  .x6bxxq {
    font-size: 17px;
    line-height: 1.4;
    padding: 12px 20px;
  }

  /* ─ Header mobile */
  .alzcfb,
  .alzcfb .tgwuc4 { height: 61px; }

  .fry6p1 {
    top: 61px;
    height: calc(100% - 61px);
  }

  .w4ropo { font-size: 12px; padding: 8px 14px; }

  .c5sjml .x6bxxq {
    padding: 7px 12px;
    font-size: 13px;
    line-height: 1.4;
    box-shadow: none;
  }

  /* ─ Hero mobile */
  .v9cygs { padding: 44px 0 60px; }

  .zv2kk6 { margin-top: 0; padding-top: 24px; padding-bottom: 40px; }

  .lo5fcf {
    padding: 20px 16px 16px;
    border-radius: 16px;
  }

  .y3ix8c {
    flex-direction: column;
    gap: 10px;
  }

  .y3ix8c select,
  .y3ix8c input[type="email"] {
    flex: none;
    width: 100%;
    height: 52px;
    font-size: 16px;
    line-height: 1.5;
    padding: 0 16px;
    border-radius: 10px;
    box-sizing: border-box;
  }

  .y3ix8c select {
    padding-right: 42px;
    background-size: 12px;
    background-position: calc(100% - 14px) center;
  }

  .kbs4sm {
    width: 100%;
    flex: none;
  }

  .kbs4sm .x6bxxq {
    width: 100%;
    height: 52px;
    font-size: 17px;
  }

  .x9somp {
    font-size: 10px;
    line-height: 15px;
    margin-top: 12px;
  }

  .nvsmds {
    gap: 8px;
    margin-top: 14px;
  }

  .we9ajs {
    font-size: 12px;
    padding: 6px 12px 6px 10px;
  }

  /* ─ States mobile */
  .piv6wk { grid-template-columns: 1fr; }

  .piv6wk li { border-right: none; border-bottom: 1.5px solid var(--grey-medium-color); }
  .piv6wk li:last-child { border-bottom: none; }
  .piv6wk li:nth-child(even) { border-right: none; }
  .piv6wk li:nth-last-child(2):nth-child(odd) { border-bottom: 1.5px solid var(--grey-medium-color); }

  /* ─ Cities mobile */
  .g9ztfo { grid-template-columns: 1fr; }

  /* ─ Footer mobile */
  .lgkahj { flex-direction: column; }
  .dv2nvd { margin-bottom: 16px; font-size: 14px; }

  .jerzzo.r38v7l .xl8ooj { flex-direction: column; }
  .jerzzo.r38v7l .xl8ooj li { width: 100%; }

  .i0j6pw p { font-size: 11px; line-height: 1.6; }

  /* ─ Tables mobile */
  .vp4fsz thead { display: none; }

  .vp4fsz tr {
    display: block;
    border-bottom: 1px solid var(--grey-medium-color);
    padding: 8px 0;
  }

  .vp4fsz td {
    display: block;
    border: none;
    padding: 3px 12px;
  }

  .vp4fsz td::before {
    content: attr(data-label) ": ";
    font-weight: 700;
  }
}

/* ─ Small (≤575px) */
@media (max-width: 575px) {
  .lo5fcf {
    margin: 0 4px;
    padding: 18px 14px 14px;
  }
}
