/* ═══════════════════════════════════════════════════════════════════════
   Design System v4 — Indigo Pro Finance Theme
═══════════════════════════════════════════════════════════════════════ */

:root {
  /* ─ Brand (Cre Driver Mice - Graphite & Gold) */
  --blue-color: #B45309;          /* Rich Amber Gold (High contrast for links) */
  --blue-light-color: #FEF3C7;    /* Soft Amber Cream */
  --blue-dark-color: #1F2937;     /* Sleek Slate Charcoal */
  --blue-mid-color: #D97706;      /* Bright Accent Amber */

  /* ─ CTA (Vibrant Gold Gradient) */
  --green-color: #F59E0B;         /* Vibrant Amber Gold */
  --green-mid: #D97706;           /* Rich Gold */
  --green-light: #FEF3C7;         /* Soft Cream Gold */

  /* ─ Text */
  --text-color: #4B5563;
  --black-color: #111827;
  --black-medium-color: #1F2937;

  /* ─ Neutrals */
  --white-color: #FFFFFF;
  --grey-color: #9CA3AF;
  --grey-medium-color: #E5E7EB;
  --grey-light-color: #F9FAFB;
  --grey-dark-color: #6B7280;

  /* ─ Font */
  --primary-font: 'Plus Jakarta Sans';

  /* ─ Motion */
  --transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);

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

  /* ─ Radius */
  --r-sm: 10px;
  --r: 16px;
  --r-lg: 24px;

  /* ─ Shadows */
  --sh-xs: 0 1px 3px rgba(0,0,0,0.06);
  --sh-sm: 0 2px 12px 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 32px 80px rgba(217, 119, 6, 0.15);
}

/* ═══ 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: 44px 0 22px; }
h2 { font-size: 28px;  margin: 38px 0 16px; }
h3 { font-size: 22px;  margin: 28px 0 12px; }
h4 { font-size: 19px;  margin: 22px 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.78;
  font-weight: 400;
  margin-bottom: 1.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 ═══════════════════════════════════════════════════ */

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

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

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

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

.lmqa3r   { width: 100%; }
.c5zzpo { flex: 1; min-width: 0; }

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

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

@media (min-width: 992px) {
  .a75e9p { width: 25%; }
  .ifm06p { width: 41.6666%; }
  .nt3qpu { width: 58.3333%; }
  .wd0srh { width: 66.6666%; }
}

@media (min-width: 768px) {
  .ywi4ez { 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: 500;
  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-mid-color);
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.15);
}

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

.vqu57m {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  padding: 13px 30px;
  background: linear-gradient(135deg, #FBBF24 0%, var(--green-color) 45%, var(--green-mid) 100%);
  color: #111827;
  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 18px rgba(217, 119, 6, 0.3), 0 1px 4px rgba(217, 119, 6, 0.15);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.vqu57m:hover,
.vqu57m:active {
  box-shadow: 0 8px 24px rgba(217, 119, 6, 0.45);
  transform: translateY(-2px);
  text-decoration: none;
  color: #111827;
}

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

.hqz2fn         { display: flex; }
.bt9318   { align-items: center; }
.jzk5bo{ justify-content: space-between; }
.h8c91u { justify-content: center; }
.uzx7wm  { justify-content: flex-start; }

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

.ok517k {
  background-color: var(--white-color);
  border-bottom: 1px solid var(--grey-medium-color);
  border-top: 3px solid var(--blue-mid-color);
  box-shadow: 0 2px 20px rgba(217, 119, 6, 0.05);
  position: sticky;
  top: 0;
  z-index: 50;
}

.ok517k .g7bg2e {
  height: 72px;
  display: flex;
  align-items: center;
}

.ok517k .v98d9k {
  width: 100%;
  flex-wrap: nowrap;
  align-items: center;
}

.zvnzvz {
  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-mid-color) 100%);
  padding: 10px 22px;
  border-radius: var(--r-sm);
  letter-spacing: -0.02em;
  transition: var(--transition);
  flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(217, 119, 6, 0.2);
}

.zvnzvz:hover {
  opacity: 0.92;
  box-shadow: 0 4px 18px rgba(217, 119, 6, 0.3);
  transform: translateY(-1px);
  text-decoration: none;
}

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

.vu9hp2 {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0;
  transition: var(--transition);
  background-color: rgba(17, 24, 39, 0.55);
  backdrop-filter: blur(2px);
  pointer-events: none;
}

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

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

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

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

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

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

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

.v50j8r { flex-shrink: 0; }

.v50j8r .vqu57m {
  font-size: 14px;
  padding: 9px 22px;
  border-radius: var(--r-sm);
  width: auto;
  letter-spacing: 0;
  box-shadow: 0 2px 10px rgba(225, 29, 72, 0.28);
}

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

.b2c1sv {
  position: relative;
}

.i4lcx5 {
  background: linear-gradient(148deg, #0B0F19 0%, #1F2937 40%, #111827 75%, #0B0F19 100%);
  padding: 80px 0 88px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

/* Radial glow top-right */
.i4lcx5::after {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 480px;
  height: 480px;
  background: radial-gradient(ellipse, rgba(245, 158, 11, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

/* Extra bottom glow */
.i4lcx5 .h9qfuk {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  max-width: 100%;
  height: 220px;
  background: radial-gradient(ellipse, rgba(245, 158, 11, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

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

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

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

/* Floating form card */
.ctaoek {
  max-width: 880px;
  width: 100%;
  margin: 0 auto;
  background: var(--white-color);
  border-radius: var(--r-lg);
  padding: 40px 40px 32px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02),
              0 20px 40px -4px rgba(217, 119, 6, 0.12),
              0 0 0 1px rgba(217, 119, 6, 0.04);
  border: none;
  position: relative;
}

.db6z95 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--blue-dark-color);
  margin-bottom: 24px;
}

.db6z95::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue-mid-color);
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(217, 119, 6, 0.15);
}

.ayu9hi {
  display: flex;
  align-items: stretch;
  gap: 12px;
}

.ayu9hi select,
.ayu9hi input[type="email"] {
  border-radius: 12px;
  height: 60px;
  font-size: 16px;
  padding: 0 20px;
  background-color: #F8F9FF;
  border: 1.5px solid var(--grey-medium-color);
  margin: 0;
  font-weight: 500;
  color: var(--black-color);
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, background-color 0.15s ease-in-out;
}

.ayu9hi select {
  flex: 0 0 200px;
  padding-right: 44px;
  background-image: url(../images/select-arrow.svg);
  background-repeat: no-repeat;
  background-position: calc(100% - 16px) center;
}

.ayu9hi input[type="email"] {
  flex: 1 1 0;
  min-width: 0;
  padding-left: 48px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="%239CA3AF" stroke-width="2"><path stroke-linecap="round" stroke-linejoin="round" d="M3 8l7.89 5.26a2 2 0 002.22 0L21 8M5 19h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z"/></svg>');
  background-repeat: no-repeat;
  background-position: 18px center;
  background-size: 20px;
}

.ayu9hi select:focus,
.ayu9hi input[type="email"]:focus {
  border-color: var(--blue-mid-color);
  box-shadow: 0 0 0 4px rgba(217, 119, 6, 0.15);
  background-color: var(--white-color);
}

.ghn0v3 { flex: 0 0 auto; }

.ghn0v3 .vqu57m {
  height: 60px;
  padding: 0 36px;
  font-size: 17px;
  width: auto;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(217, 119, 6, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.ghn0v3 .vqu57m:hover {
  box-shadow: 0 6px 20px rgba(217, 119, 6, 0.45);
  transform: translateY(-1px);
}

.ghn0v3 .vqu57m:active {
  transform: translateY(0) scale(0.98);
}

.ztba4x {
  margin: 18px 0 0;
  font-size: 11.5px;
  line-height: 1.6;
  text-align: center;
  color: var(--grey-dark-color);
}

.ztba4x a {
  color: var(--blue-color);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 500;
}

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

.qazyc3 {
  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: 8px 18px 8px 13px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: var(--transition);
}

.qazyc3:hover {
  border-color: var(--blue-mid-color);
  box-shadow: 0 4px 16px rgba(217, 119, 6, 0.16);
}

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

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

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

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

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

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

.ddlmf9 {
  padding-top: 72px;
  background: linear-gradient(180deg, #0B0F19 0%, #1F2937 55%, #111827 100%);
  color: var(--white-color);
  border-top: 4px solid var(--blue-mid-color);
}

.kskk5z {
  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.02em;
  transition: var(--transition);
}

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

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

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

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

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

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

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

.w3iic5 li a:hover {
  background-color: var(--blue-color);
  border-color: var(--blue-color);
  text-decoration: none;
  transform: translateY(-2px);
}

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

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

.m07ff4 { width: 100%; }

.n9v6u9 { margin: 0; }

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

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

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

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

.k7k5f7.jh1o8q .n9v6u9 {
  display: flex;
  flex-wrap: wrap;
  column-gap: 14px;
}

.k7k5f7.jh1o8q .n9v6u9 li {
  width: calc(50% - 7px);
}

.w1dyne {
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

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

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

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

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

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

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

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

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

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

.kqlxkf:hover { opacity: 0.7; }

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

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

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

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

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

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

.s1zdr0 .n4u85w { top: 2px; }

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

.s1zdr0 .n4u85w::after { top: 16px; }

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

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

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

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

.kvrjdo {
  padding: 56px 0 72px;
  background: var(--white-color);
  overflow-x: hidden;
  border-top: 3px solid var(--blue-light-color);
}

.kvrjdo h1 { margin-top: 0; }

.j9tctj { line-height: 1.75; }

.j9tctj p { margin-bottom: 1.1rem; }

.j9tctj h2 {
  padding-left: 14px;
  border-left: 3px solid var(--blue-color);
  margin-top: 2.2rem;
}

.j9tctj h3 {
  padding-left: 10px;
  border-left: 2px solid var(--blue-mid-color);
  color: var(--black-medium-color);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.mmdgls { margin-bottom: 1.25rem; }

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

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

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

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

.ihxpjv[open] .u5vugq::after {
  transform: rotate(90deg);
}

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

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

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

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

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

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

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

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

.s9jpfq { flex: 1 1 220px; }

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

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

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

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

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

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

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

.p61j84:focus {
  border-color: var(--blue-mid-color);
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.15);
}

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

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

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

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

.nr0nkw iframe { display: block; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.gfdmry .f8l1q0,
.gfdmry .mg5gp7 {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

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

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

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

  .ok517k,
  .ok517k .g7bg2e { height: 72px; }

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

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

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

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

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

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

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

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

  .v50j8r .vqu57m {
    font-size: 14px;
    padding: 9px 18px;
  }

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

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

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

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

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

  /* ─ Header mobile */
  .ok517k,
  .ok517k .g7bg2e { height: 64px; }

  .k0i8w0 {
    top: 64px;
    height: calc(100% - 64px);
  }

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

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

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

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

  .ctaoek {
    padding: 28px 20px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 25px -5px rgba(217, 119, 6, 0.1);
  }

  .ayu9hi {
    flex-direction: column;
    gap: 12px;
  }

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

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

  .ayu9hi input[type="email"] {
    padding-left: 44px;
    background-position: 14px center;
  }

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

  .ghn0v3 .vqu57m {
    width: 100%;
    height: 54px;
    font-size: 17px;
    border-radius: 12px;
  }

  .ztba4x {
    font-size: 11px;
    line-height: 1.55;
    margin-top: 14px;
  }

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

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

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

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

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

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

  .k7k5f7.jh1o8q .n9v6u9 { flex-direction: column; }
  .k7k5f7.jh1o8q .n9v6u9 li { width: 100%; }

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

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

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

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

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

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