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

:root {
  /* ─ Brand (Indigo) */
  --blue-color: #4F46E5;
  --blue-light-color: #EEF2FF;
  --blue-dark-color: #312E81;
  --blue-mid-color: #4338CA;

  /* ─ CTA (Emerald) */
  --green-color: #059669;
  --green-mid: #10B981;
  --green-light: #D1FAE5;

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

  /* ─ 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 ═══════════════════════════════════════════════════ */

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

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

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

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

.kpq6dt   { width: 100%; }
.m8fcjl { flex: 1; min-width: 0; }

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

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

@media (min-width: 992px) {
  .oefc1c { width: 25%; }
  .c1p0wm { width: 41.6666%; }
  .iy7xpu { width: 58.3333%; }
  .ot9bke { width: 66.6666%; }
}

@media (min-width: 768px) {
  .e6he73 { 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(37, 99, 235, 0.12);
}

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

.a09x59 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  padding: 13px 30px;
  background: linear-gradient(135deg, var(--green-color) 0%, 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 16px rgba(5, 150, 105, 0.32);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.a09x59:hover,
.a09x59:active {
  box-shadow: 0 8px 24px rgba(5, 150, 105, 0.50);
  transform: translateY(-2px);
  text-decoration: none;
  color: var(--white-color);
}

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

.ezayr1         { display: flex; }
.r10sb5   { align-items: center; }
.l3wyan{ justify-content: space-between; }
.ww1x59 { justify-content: center; }
.ybhqa7  { justify-content: flex-start; }

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

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

.yvc5b7 .teki91 {
  height: 70px;
  display: flex;
  align-items: center;
}

.yvc5b7 .d95prg {
  width: 100%;
  flex-wrap: nowrap;
  align-items: center;
}

.nsiam2 {
  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;
}

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

.td4dzp {
  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);
}

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

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

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

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

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

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

.i0nbrx ul li a,
.i0nbrx 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);
}

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

.cpog1p { flex-shrink: 0; }

.cpog1p .a09x59 {
  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 ══════════════════════════════════════════════════════════════ */

.jmm8b1 {
  position: relative;
}

.zy9n3q {
  background: linear-gradient(148deg, #0D0B2B 0%, #1A1550 48%, #2D2580 100%);
  padding: 72px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

/* Bottom glow behind the form card */
.zy9n3q::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;
}

.qglgj9 {
  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;
}

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

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

/* Floating form card */
.k2nnod {
  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);
  position: relative;
}

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

.lre42s::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);
}

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

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

.wu4o6v 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;
}

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

.v75mtq { flex: 0 0 auto; }

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

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

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

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

.m4ld1i {
  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);
}

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

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

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

.ua9lz9 {
  margin: 0 0 30px;
  font-size: 38px;
  color: var(--black-color);
  line-height: 1.3;
  font-weight: 700;
}

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

.b20ey0 {
  padding-top: 64px;
  background: linear-gradient(180deg, #0D0B2B 0%, #18154A 100%);
  color: var(--white-color);
}

.m68f8r {
  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);
}

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

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

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

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

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

.d7donc 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);
}

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

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

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

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

.pvmt05 { width: 100%; }

.dniypo { margin: 0; }

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

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

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

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

.l6o6c7.ejsq6d .dniypo {
  display: flex;
  flex-wrap: wrap;
  column-gap: 14px;
}

.l6o6c7.ejsq6d .dniypo li {
  width: calc(50% - 7px);
}

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

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

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

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

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

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

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

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

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

.m8h008 {
  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;
}

.m8h008:hover { opacity: 0.7; }

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

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

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

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

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

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

.tv757m .lxkl9u { top: 2px; }

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

.tv757m .lxkl9u::after { top: 16px; }

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

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

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

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

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

.f3fatd h1 { margin-top: 0; }

.fdc6ed { line-height: 1.75; }

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

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

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

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

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

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

.d5vsmy {
  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;
}

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

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

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

.d5vsmy 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;
}

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

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

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

.uo4szl { margin-bottom: 1.25rem; }

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

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

.w2esde {
  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;
}

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

.abx779[open] .w2esde::after {
  transform: rotate(90deg);
}

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

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

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

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

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

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

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

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

.kn0bpe { flex: 1 1 220px; }

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

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

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

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

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

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

.qszbn5 {
  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;
}

.qszbn5:focus {
  border-color: var(--blue-color);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.10);
}

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

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

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

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

.a3dgri iframe { display: block; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .yvc5b7,
  .yvc5b7 .teki91 { height: 68px; }

  .td4dzp {
    padding: 32px 20px;
    position: fixed;
    top: 68px;
    right: 0;
    bottom: 0;
    height: calc(100% - 68px);
    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;
  }

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

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

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

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

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

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

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

  .cpog1p .a09x59 {
    font-size: 14px;
    padding: 9px 18px;
  }

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

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

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

  .m68f8r   { margin-bottom: 0; }
  .d7donc { 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);
  }

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

  /* ─ Header mobile */
  .yvc5b7,
  .yvc5b7 .teki91 { height: 58px; }

  .td4dzp {
    top: 58px;
    height: calc(100% - 58px);
  }

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

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

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

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

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

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

  .wu4o6v select,
  .wu4o6v 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;
  }

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

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

  .v75mtq .a09x59 {
    width: 100%;
    height: 52px;
    font-size: 17px;
  }

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

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

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

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

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

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

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

  .l6o6c7.ejsq6d .dniypo { flex-direction: column; }
  .l6o6c7.ejsq6d .dniypo li { width: 100%; }

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

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

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

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

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

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