/* ═══════════════════════════════════════════════════════════════════════
   Design System v6 — Bold Dark Emerald / 3D Premium Finance
   Font: Outfit + Inter (Google Fonts)
═══════════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  /* ─ Emerald Brand */
  --em-950: #022c1a;
  --em-900: #052e16;
  --em-800: #065f2a;
  --em-700: #047a35;
  --em-600: #16a34a;
  --em-500: #22c55e;
  --em-400: #4ade80;
  --em-300: #86efac;
  --em-200: #bbf7d0;
  --em-100: #dcfce7;
  --em-50:  #f0fdf4;

  /* ─ Void / Dark */
  --void-950: #020408;
  --void-900: #060c10;
  --void-800: #0b1520;
  --void-700: #111f2e;
  --void-600: #1a2f42;
  --void-500: #243d54;
  --void-400: #3a5472;
  --void-300: #4e6e8e;

  /* ─ Neutral */
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50:  #f8fafc;

  /* ─ CTA */
  --cta:        #16a34a;
  --cta-hover:  #047a35;
  --cta-glow:   rgba(34, 197, 94, 0.35);

  /* ─ Text */
  --text:        #334155;
  --text-dark:   #0f172a;
  --text-muted:  #64748b;

  /* ─ Surface */
  --white:       #ffffff;
  --surface:     #f8fafc;
  --border:      #e2e8f0;
  --border-dark: rgba(255,255,255,0.08);

  /* ─ Font */
  --font-display: 'Outfit', system-ui, -apple-system, sans-serif;
  --font:         'Inter', system-ui, -apple-system, sans-serif;

  /* ─ Motion */
  --ease:        cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t:           all 0.24s var(--ease);
  --t-slow:      all 0.48s var(--ease);

  /* ─ Layout */
  --grid-w: 1200px;
  --gutter:  20px;

  /* ─ Radius */
  --r-xs:  6px;
  --r-sm:  12px;
  --r:     20px;
  --r-lg:  28px;
  --r-xl:  40px;
  --r-2xl: 56px;

  /* ─ Shadows */
  --sh-xs:    0 1px 3px rgba(0,0,0,0.07), 0 1px 2px rgba(0,0,0,0.04);
  --sh-sm:    0 4px 16px rgba(0,0,0,0.08);
  --sh-md:    0 8px 32px rgba(0,0,0,0.12);
  --sh-lg:    0 24px 64px rgba(0,0,0,0.18);
  --sh-xl:    0 40px 96px rgba(0,0,0,0.26);
  --sh-green: 0 8px 32px rgba(22, 163, 74, 0.28);
  --sh-green-lg: 0 20px 60px rgba(22, 163, 74, 0.40);
  --sh-3d:    0 2px 0 rgba(255,255,255,0.06) inset, 0 -2px 0 rgba(0,0,0,0.20) inset;
}

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

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

html {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

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

body {
  line-height: 1;
  background-color: var(--surface);
  color: var(--text);
  font-family: var(--font);
  font-size: 18px;
  font-weight: 400;
  overflow-x: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
  color: var(--text-dark);
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.18;
  word-break: break-word;
  letter-spacing: -0.03em;
}

h1 { font-size: 40px;  margin: 48px 0 24px; }
h2 { font-size: 30px;  margin: 40px 0 18px; }
h3 { font-size: 23px;  margin: 30px 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; font-weight: 700; }

p {
  font-size: 17px;
  line-height: 1.82;
  font-weight: 400;
  margin-bottom: 1.1rem;
  color: var(--text);
  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(--em-600);
  outline: none;
  text-decoration: none;
  transition: var(--t);
}

a:hover {
  color: var(--em-500);
  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: 17px;
  line-height: 1.72;
  color: var(--text);
}

ul li::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--em-400), var(--em-600));
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.15);
}

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

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

.hk6ju5.sm {
  max-width: calc(960px + var(--gutter) * 2);
}

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

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

.zuv05i   { width: 100%; }
.csq9jm { flex: 1; min-width: 0; }

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

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

@media (min-width: 992px) {
  .zu2wiy { width: 25%; }
  .ya97eb { width: 33.3333%; }
  .rvx890 { width: 41.6666%; }
  .ryj3pj { width: 58.3333%; }
  .mny173 { width: 66.6666%; }
}

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

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

input,
select {
  width: 100%;
  display: block;
  padding: 14px 18px;
  color: var(--text-dark);
  font-size: 15px;
  line-height: 1.5;
  font-family: var(--font);
  font-weight: 500;
  background-color: var(--white);
  border-radius: var(--r-sm);
  outline: none;
  border: 1.5px solid var(--border);
  transition: var(--t);
  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);
  cursor: pointer;
}

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

input:focus,
select:focus {
  border-color: var(--em-500);
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.14);
  background-color: var(--white);
}

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

.flroqf {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  width: 100%;
  padding: 15px 36px;
  background: linear-gradient(160deg, var(--em-500) 0%, var(--em-600) 55%, var(--em-700) 100%);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.3;
  border-radius: var(--r-sm);
  cursor: pointer;
  border: 0;
  text-decoration: none;
  transition: var(--t);
  box-shadow: var(--sh-green), var(--sh-3d);
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
}

.flroqf::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(255,255,255,0.16) 0%, transparent 50%);
  pointer-events: none;
  border-radius: inherit;
  transition: opacity 0.24s;
}

.flroqf::after {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--r-sm) - 1px);
  border: 1px solid rgba(255,255,255,0.14);
  pointer-events: none;
}

.flroqf:hover,
.flroqf:active {
  box-shadow: var(--sh-green-lg);
  transform: translateY(-3px) scale(1.01);
  text-decoration: none;
  color: var(--white);
}

.flroqf:hover::before { opacity: 0; }

.flroqf:active {
  transform: translateY(0) scale(0.98);
  box-shadow: var(--sh-green);
}

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

.tu68wo          { display: flex; }
.ch0sp2    { align-items: center; }
.ubv8cs { justify-content: space-between; }
.swy0jv  { justify-content: center; }
.d58qmf   { justify-content: flex-start; }

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

.rra9y7 {
  background: rgba(6, 12, 16, 0.88);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(34, 197, 94, 0.12);
  box-shadow: 0 1px 0 rgba(255,255,255,0.03), 0 8px 32px rgba(0,0,0,0.32);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.rra9y7.kgol38 {
  background: rgba(6, 12, 16, 0.98);
  box-shadow: 0 1px 0 rgba(34,197,94,0.08), 0 16px 48px rgba(0,0,0,0.40);
}

.rra9y7 .hk6ju5 {
  display: flex;
  align-items: center;
}

/* Flex row внутри header */
.o0g979 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 76px;
  gap: 20px;
}

/* ─ Logo */
.s34q96 {
  font-family: var(--font-display);
  font-size: clamp(14px, 1.4vw, 18px);
  font-weight: 900;
  color: var(--white);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: -0.04em;
  transition: var(--t);
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  border-radius: var(--r-sm);
  background: linear-gradient(135deg, rgba(34,197,94,0.14) 0%, rgba(34,197,94,0.06) 100%);
  border: 1px solid rgba(34,197,94,0.22);
  box-shadow: 0 2px 16px rgba(34,197,94,0.12), inset 0 1px 0 rgba(255,255,255,0.06);
}

.s34q96:hover {
  background: linear-gradient(135deg, rgba(34,197,94,0.22) 0%, rgba(34,197,94,0.10) 100%);
  border-color: rgba(34,197,94,0.38);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(34,197,94,0.20);
  text-decoration: none;
  color: var(--white);
}

/* ─ Menu wrap (nav + CTA) — десктоп */
.u2mfas {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  justify-content: flex-end;
  min-width: 0;
}

/* ─ Desktop nav list */
.kkaqp3 ul {
  display: flex;
  align-items: center;
  margin: 0;
  gap: 32px;
  flex-wrap: nowrap;
}

.kkaqp3 ul li {
  margin: 0;
  padding: 0;
  white-space: nowrap;
}

.kkaqp3 ul li::before { display: none; }

.kkaqp3 ul li a {
  display: inline-flex;
  color: rgba(255,255,255,0.68);
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  text-decoration: none;
  padding: 6px 0;
  position: relative;
  letter-spacing: -0.01em;
  transition: color 0.22s;
}

.kkaqp3 ul li a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: linear-gradient(90deg, var(--em-400), var(--em-500));
  border-radius: 2px;
  transition: width 0.24s var(--ease);
}

.kkaqp3 ul li a:hover,
.kkaqp3 ul li.c2ena4 a {
  color: var(--white);
  text-decoration: none;
}

.kkaqp3 ul li a:hover::after,
.kkaqp3 ul li.c2ena4 a::after {
  width: 100%;
}

/* ─ Header CTA button */
.ccyni9 {
  font-family: var(--font-display);
  font-size: 13.5px;
  padding: 10px 22px;
  border-radius: var(--r-sm);
  width: auto;
  flex-shrink: 0;
  letter-spacing: -0.01em;
  box-shadow: 0 4px 16px rgba(34, 197, 94, 0.32);
}

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

.oz5cth {
  display: none;
  cursor: pointer;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-xs);
  z-index: 200;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.2s, border-color 0.2s;
  position: relative;
}

.oz5cth:hover {
  background: rgba(34,197,94,0.12);
  border-color: rgba(34,197,94,0.28);
}

.oz5cth.is-active {
  background: rgba(34,197,94,0.14);
  border-color: rgba(34,197,94,0.32);
}

.ytw4n9 {
  width: 22px;
  height: 16px;
  display: inline-block;
  position: relative;
}

.ffxy9x {
  position: absolute;
  top: 7px;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255,255,255,0.88);
  border-radius: 2px;
  transition: background 0.22s, transform 0.22s ease;
}

.ffxy9x::before,
.ffxy9x::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255,255,255,0.88);
  border-radius: 2px;
  transition: transform 0.22s ease, opacity 0.18s ease, top 0.22s ease;
}

.ffxy9x::before { top: -7px; }
.ffxy9x::after  { top: 7px; }

/* Крестик при открытом меню */
.oz5cth.is-active .ffxy9x {
  background: transparent;
}
.oz5cth.is-active .ffxy9x::before {
  top: 0;
  transform: rotate(45deg);
  background: var(--em-400);
}
.oz5cth.is-active .ffxy9x::after {
  top: 0;
  transform: rotate(-45deg);
  background: var(--em-400);
}

/* ─ Overlay за мобильным меню */
.z36tug {
  position: fixed;
  inset: 0;
  z-index: 140;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}

.z36tug.is-active {
  opacity: 1;
  pointer-events: auto;
}



/* Compat aliases */
.zu2jqd { display: none; }
.u2mfas  { display: none; }

/* ═══ MOBILE NAV ════════════════════════════════════════════════════════ */

/* Drawer — скрыт по умолчанию, виден только на мобильном при is-open */
.z6y56t {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(300px, 88vw);
  z-index: 500;
  background: #060c10;
  border-left: 1px solid rgba(34, 197, 94, 0.16);
  box-shadow: -12px 0 48px rgba(0, 0, 0, 0.60);
  transform: translateX(110%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  padding: 88px 28px 40px;
  overflow-y: auto;
}

.z6y56t.is-open {
  transform: translateX(0);
}

.a4pj3n {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.n9t6pw {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.n9t6pw::before { display: none !important; }
.n9t6pw:last-child { border-bottom: none; }

.nqqjac {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.85) !important;
  padding: 18px 0;
  letter-spacing: -0.03em;
  text-decoration: none !important;
  transition: color 0.2s, padding-left 0.2s;
  line-height: 1.2;
}

.nqqjac:hover {
  color: var(--em-400) !important;
  text-decoration: none !important;
  padding-left: 10px;
}

.n9t6pw.c2ena4 .nqqjac {
  color: var(--em-400) !important;
}

.jw9cuw {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(34, 197, 94, 0.16);
  flex-shrink: 0;
}

.yaf72h {
  display: flex !important;
  width: 100%;
  justify-content: center;
  font-size: 15px;
  padding: 14px 20px;
  border-radius: var(--r-sm);
}

/* Overlay */
.sulxrm {
  position: fixed;
  inset: 0;
  z-index: 490;
  background: rgba(0, 0, 0, 0.70);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.30s ease;
}

.sulxrm.is-open {
  opacity: 1;
  pointer-events: auto;
}

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

.ndl76k {
  position: relative;
}

/* Hero — dramatic dark void background */
.noo18v {
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(34,197,94,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 20% 80%, rgba(4, 122, 53, 0.06) 0%, transparent 55%),
    linear-gradient(175deg, #020913 0%, #050f0b 30%, #030a06 60%, #020913 100%);
  padding: 100px 0 110px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Animated noise texture overlay */
.noo18v::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(255,255,255,0.008) 2px,
      rgba(255,255,255,0.008) 4px
    );
  pointer-events: none;
}

/* Animated green aurora */
.noo18v::after {
  content: '';
  position: absolute;
  top: -30%;
  left: -10%;
  width: 70%;
  height: 70%;
  background: radial-gradient(ellipse, rgba(34, 197, 94, 0.10) 0%, transparent 70%);
  pointer-events: none;
  animation: auroraFloat 12s ease-in-out infinite alternate;
  filter: blur(40px);
}

@keyframes auroraFloat {
  0%   { transform: translate(0, 0) scale(1); opacity: 0.7; }
  33%  { transform: translate(10%, 8%) scale(1.15); opacity: 1; }
  66%  { transform: translate(-5%, 15%) scale(0.95); opacity: 0.8; }
  100% { transform: translate(15%, -5%) scale(1.1); opacity: 0.9; }
}

/* Floating orbs */
.d8ccxz {
  position: absolute;
  bottom: -60px;
  right: -80px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(34,197,94,0.07) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
  animation: orbPulse 8s ease-in-out infinite alternate;
  filter: blur(20px);
}

@keyframes orbPulse {
  0%   { transform: scale(1) translateY(0); opacity: 0.8; }
  100% { transform: scale(1.2) translateY(-30px); opacity: 1; }
}

.j0axfr {
  position: absolute;
  top: 20%;
  right: 15%;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(34,197,94,0.08);
  border-radius: 50%;
  pointer-events: none;
  animation: ringExpand 6s ease-in-out infinite;
}

.j0axfr::after {
  content: '';
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(34,197,94,0.05);
  border-radius: 50%;
}

@keyframes ringExpand {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.15); opacity: 0.4; }
}

/* Grid mesh */
.noo18v .uwjtan {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(34,197,94,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34,197,94,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 100%);
}

.gdw00d {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.22);
  border-radius: 50px;
  padding: 7px 18px 7px 12px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--em-400);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
  animation: fadeSlideDown 0.7s var(--ease) both;
  backdrop-filter: blur(8px);
}

.cykz9x {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--em-500);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.22);
  animation: dotPulse 2.4s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.22); }
  50%       { box-shadow: 0 0 0 7px rgba(34, 197, 94, 0.07); }
}

@keyframes fadeSlideDown {
  0%   { opacity: 0; transform: translateY(-16px); }
  100% { opacity: 1; transform: translateY(0); }
}

.u0puoj {
  font-family: var(--font-display);
  font-size: clamp(34px, 5.5vw, 72px);
  line-height: 1.06;
  color: var(--white);
  font-weight: 900;
  margin: 0 auto 26px;
  max-width: 900px;
  letter-spacing: -0.05em;
  position: relative;
  z-index: 1;
  animation: titleReveal 0.9s var(--ease) 0.1s both;
  text-shadow: 0 4px 32px rgba(0,0,0,0.5);
}

/* Gradient accent on last word */
.u0puoj em {
  font-style: normal;
  background: linear-gradient(135deg, var(--em-300) 0%, var(--em-500) 50%, var(--em-400) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

@keyframes titleReveal {
  0%   { opacity: 0; transform: translateY(24px) scale(0.97); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

.fmpiah {
  font-size: clamp(15px, 1.7vw, 19px);
  line-height: 1.72;
  max-width: 540px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.60);
  position: relative;
  z-index: 1;
  animation: fadeSlideUp 0.8s var(--ease) 0.22s both;
  font-weight: 400;
}

@keyframes fadeSlideUp {
  0%   { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ─ Form section below hero */
.qpa5dv {
  padding-top: 0;
  padding-bottom: 80px;
  background: var(--surface);
  position: relative;
  z-index: 2;
}

/* Floating form card — 3D effect */
.cnzxzf {
  max-width: 920px;
  width: 100%;
  margin: -48px auto 0;
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 48px 52px 40px;
  box-shadow:
    0 -1px 0 rgba(255,255,255,0.9),
    0 4px 0 rgba(22,163,74,0.06),
    0 8px 0 rgba(22,163,74,0.03),
    0 32px 80px rgba(0,0,0,0.12),
    0 0 0 1px rgba(226,232,240,0.8);
  border: none;
  position: relative;
  animation: formReveal 0.9s var(--ease) 0.35s both;
  transform-origin: top center;
}

@keyframes formReveal {
  0%   { opacity: 0; transform: translateY(32px) scale(0.97); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* Top accent line */
.cnzxzf::before {
  content: '';
  position: absolute;
  top: 0;
  left: 52px;
  right: 52px;
  height: 3px;
  background: linear-gradient(90deg, var(--em-400), var(--em-500), var(--em-400));
  border-radius: 0 0 4px 4px;
  opacity: 0;
}

.whu6cc {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 20px;
  font-family: var(--font-display);
}

.whu6cc::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--em-500), var(--em-600));
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.14);
}

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

.or0zwr select,
.or0zwr input[type="email"] {
  border-radius: var(--r-sm);
  height: 62px;
  font-size: 15px;
  padding: 0 20px;
  background-color: var(--slate-50);
  border: 1.5px solid var(--border);
  margin: 0;
  font-weight: 500;
  color: var(--text-dark);
  transition: border-color 0.20s ease, box-shadow 0.20s ease, background 0.20s ease;
}

.or0zwr select {
  flex: 0 0 220px;
  padding-right: 44px;
  background-image: url(../images/select-arrow.svg);
  background-repeat: no-repeat;
  background-position: calc(100% - 16px) center;
  background-color: var(--slate-50);
}

.or0zwr input[type="email"] {
  flex: 1 1 0;
  min-width: 0;
  padding-left: 50px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="%2394a3b8" 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: 16px center;
  background-size: 20px;
  background-color: var(--slate-50);
}

.or0zwr select:focus,
.or0zwr input[type="email"]:focus {
  border-color: var(--em-500);
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.12);
  background-color: var(--white);
}

.vxh3ge { flex: 0 0 auto; }

.vxh3ge .flroqf {
  height: 62px;
  padding: 0 38px;
  font-size: 15.5px;
  width: auto;
  border-radius: var(--r-sm);
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  box-shadow: 0 6px 24px rgba(34, 197, 94, 0.40);
}

.vxh3ge .flroqf:hover {
  box-shadow: 0 12px 40px rgba(34, 197, 94, 0.55);
  transform: translateY(-3px) scale(1.01);
}

.hdx0hd {
  margin: 20px 0 0;
  font-size: 11px;
  line-height: 1.65;
  text-align: center;
  color: var(--text-muted);
}

.hdx0hd a {
  color: var(--em-600);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
}

/* ─ Trust badges */
.tccv3x {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 36px auto 0;
  max-width: 920px;
}

.p9vowi {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 9px 18px 9px 12px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04), inset 0 1px 0 rgba(255,255,255,0.9);
  transition: var(--t);
  cursor: default;
}

.p9vowi:hover {
  border-color: var(--em-400);
  color: var(--em-700);
  box-shadow: 0 6px 20px rgba(22, 163, 74, 0.14), inset 0 1px 0 rgba(255,255,255,0.9);
  transform: translateY(-2px);
}

.p9vowi svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--em-600);
  stroke: var(--em-600);
}

/* ═══ SECTION TITLE ═════════════════════════════════════════════════════ */

.lkqw9x {
  padding: 36px 0 72px;
}

.my88iu {
  margin: 0 0 32px;
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 42px);
  color: var(--text-dark);
  line-height: 1.18;
  font-weight: 900;
  padding-bottom: 20px;
  position: relative;
  letter-spacing: -0.04em;
}

.my88iu::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 52px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--em-500), var(--em-400), transparent);
}

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

.behi0i {
  padding-top: 88px;
  background:
    radial-gradient(ellipse 60% 50% at 85% 20%, rgba(34,197,94,0.05) 0%, transparent 55%),
    linear-gradient(175deg, #020913 0%, #030d08 50%, #020913 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

/* Top border */
.behi0i::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34,197,94,0.3), rgba(34,197,94,0.6), rgba(34,197,94,0.3), transparent);
}

/* Subtle grid */
.behi0i::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(34,197,94,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34,197,94,0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 70% 60% at 80% 10%, black 0%, transparent 100%);
}

.s81ctf {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 900;
  color: var(--white);
  text-decoration: none;
  white-space: nowrap;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.18);
  padding: 11px 20px;
  border-radius: var(--r-sm);
  letter-spacing: -0.04em;
  transition: var(--t);
  position: relative;
  z-index: 1;
}

.s81ctf:hover {
  background: rgba(34, 197, 94, 0.14);
  border-color: rgba(34, 197, 94, 0.30);
  text-decoration: none;
  color: var(--white);
  transform: translateY(-1px);
}

.a7241u {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.ddqgta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 52px;
}

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

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

.ddqgta li a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  transition: var(--t);
}

.ddqgta li a img {
  display: inline-block;
  filter: brightness(0) invert(1) opacity(0.5);
  transition: var(--t);
}

.ddqgta li a:hover {
  background: rgba(34,197,94,0.15);
  border-color: rgba(34,197,94,0.28);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(34,197,94,0.16);
}

.ddqgta li a:hover img {
  filter: brightness(0) invert(1) opacity(1);
}

.wldsml {
  margin: 0 0 18px;
  text-transform: uppercase;
  font-family: var(--font-display);
  font-size: 10px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--em-400);
  position: relative;
  z-index: 1;
}

.b0i4p8 {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.s3on30 { width: 100%; }

.yanu9a { margin: 0; }

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

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

.yanu9a li a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  line-height: 1;
  font-weight: 500;
  color: rgba(255,255,255,0.48);
  transition: var(--t);
}

.yanu9a li a::before {
  content: '→';
  font-size: 10px;
  color: var(--em-500);
  opacity: 0;
  transform: translateX(-8px);
  transition: var(--t);
}

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

.yanu9a li a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.l38g9q.eb9gux .yanu9a {
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
}

.l38g9q.eb9gux .yanu9a li {
  width: calc(50% - 10px);
}

.gol12j {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  z-index: 1;
}

.zrltxs {
  margin-bottom: 24px;
}

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

.zrltxs p {
  color: rgba(255,255,255,0.32);
  font-size: 11px;
  font-weight: 400;
  line-height: 1.72;
  margin-bottom: 6px;
  overflow-wrap: break-word;
  word-break: break-word;
}

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

.b6fqeq {
  font-family: var(--font-display);
  font-size: 10px;
  line-height: 1;
  font-weight: 700;
  color: var(--em-400);
  margin-right: 6px;
  text-transform: uppercase;
  letter-spacing: 0.10em;
}

.wt4bwx {
  width: 100%;
  padding: 20px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  text-align: center;
  margin-top: 28px;
  position: relative;
  z-index: 1;
}

.wt4bwx p {
  margin-bottom: 0;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.02em;
}


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

.klyf98 {
  padding: 72px 0 88px;
  background: var(--white);
  overflow-x: hidden;
  border-top: 2px solid rgba(34,197,94,0.08);
}

.klyf98 h1 { margin-top: 0; }

.ld4d4q { line-height: 1.82; }

.ld4d4q p { margin-bottom: 1.2rem; }

.ld4d4q h2 {
  font-family: var(--font-display);
  padding-left: 18px;
  border-left: 3px solid var(--em-500);
  margin-top: 2.4rem;
}

.ld4d4q h3 {
  font-family: var(--font-display);
  padding-left: 14px;
  border-left: 2px solid var(--em-300);
  color: var(--slate-700);
}

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

.ld4d4q li { margin-bottom: 0.4rem; }

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

.jip190 {
  padding: 0 0 80px;
  background: var(--white);
}

.jip190 h2 {
  font-family: var(--font-display);
  margin-bottom: 1.5rem;
}

.piaeje {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--sh-xs);
}

.piaeje li {
  margin: 0;
  padding: 0;
  border-right: 1.5px solid var(--border);
  border-bottom: 1.5px solid var(--border);
}

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

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

.piaeje li a {
  display: block;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  background: var(--white);
  transition: background 0.15s, color 0.15s, padding-left 0.15s;
}

.piaeje li a:hover {
  background: var(--em-50);
  color: var(--em-700);
  padding-left: 24px;
}

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

.cw5fjj {
  padding: 2rem 0 3.5rem;
  background: var(--surface);
}

.d9c12x {
  font-family: var(--font-display);
  margin-bottom: 1.5rem;
}

.kexesm {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.zqwx9l {
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  background: var(--white);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-shadow: var(--sh-xs);
}

.zqwx9l[open] {
  border-color: var(--em-400);
  box-shadow: 0 4px 20px rgba(34,197,94,0.08);
}

.ku0ao6 {
  padding: 0.75rem 1.1rem;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  user-select: none;
  color: var(--text-dark);
}

.ku0ao6::after {
  content: "▸";
  margin-left: auto;
  font-size: 0.72rem;
  transition: transform 0.2s;
  color: var(--em-500);
  flex-shrink: 0;
}

.zqwx9l[open] .ku0ao6::after {
  transform: rotate(90deg);
}

.wui3xn {
  padding: 0.3rem 0 0.6rem;
  margin: 0;
  border-top: 1px solid var(--border);
  list-style: none;
}

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

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

.wui3xn li a {
  display: block;
  padding: 0.28rem 1.1rem;
  font-size: 0.87rem;
  color: var(--em-700);
  text-decoration: none;
  transition: background 0.12s, padding-left 0.12s;
}

.wui3xn li a:hover {
  background: var(--em-50);
  padding-left: 1.5rem;
  text-decoration: none;
}

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

.ybv4le p {
  margin-bottom: 1rem;
  line-height: 1.78;
}

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

.cp8h4d { flex: 1 1 220px; }

.cp8h4d h2 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

/* ═══ FAQ ════════════════════════════════════════════════════════════════ */

.yfofls {
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  margin-bottom: 12px;
  transition: border-color 0.22s, box-shadow 0.22s;
  background: var(--white);
  box-shadow: var(--sh-xs);
}

.yfofls:hover {
  border-color: rgba(34,197,94,0.35);
  box-shadow: 0 6px 24px rgba(34, 197, 94, 0.09);
}

.rl1xj3 {
  padding: 22px 28px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
  cursor: default;
  border-left: 3px solid var(--em-500);
  letter-spacing: -0.02em;
}

.pfq14q {
  padding: 0 28px 22px 28px;
  border-top: 1px solid var(--em-100);
}

.pfq14q p,
.pfq14q ul {
  font-size: 15.5px;
  line-height: 1.74;
  margin-top: 16px;
}

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

.ojvfsn {
  margin-bottom: 1.75rem;
  font-size: 1rem;
  line-height: 1.65;
}

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

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

.as0jrd {
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--text-dark);
  font-family: var(--font-display);
}

.bqnmpn {
  width: 100%;
  padding: 0.75rem 1.1rem;
  font-size: 0.95rem;
  font-family: inherit;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  min-width: 0;
  color: var(--text-dark);
  background: var(--slate-50);
}

.bqnmpn:focus {
  border-color: var(--em-500);
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.12);
  background: var(--white);
}

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

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

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

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

.l745p1 iframe { display: block; }

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

.zyp8r4 {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 1rem 0 2rem;
  border-radius: var(--r-sm);
  box-shadow: var(--sh-xs);
}

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

.l1mpk1 th {
  text-align: left;
  padding: 13px 18px;
  background: linear-gradient(135deg, var(--em-50), rgba(240,253,244,0.5));
  border-bottom: 2px solid var(--em-200);
  font-weight: 700;
  white-space: nowrap;
  color: var(--em-800);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-family: var(--font-display);
}

.l1mpk1 td {
  padding: 12px 18px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  background: var(--white);
  word-break: break-word;
}

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

.l1mpk1 tr:hover td {
  background: var(--em-50);
}

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

.bemqrp {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 1.25rem 0 1.75rem;
  border-radius: var(--r-sm);
  box-shadow: var(--sh-xs);
}

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

.a45b1d td,
.a45b1d th {
  border: 1.5px solid var(--border);
  padding: 0.75rem 1.1rem;
  vertical-align: top;
  word-break: break-word;
}

.a45b1d tr:first-child td,
.a45b1d tr:first-child th {
  background: linear-gradient(135deg, var(--em-50), rgba(240,253,244,0.5));
  font-weight: 700;
  color: var(--em-800);
  font-family: var(--font-display);
}

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

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

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

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

.bymlkm .jbh1yd,
.bymlkm .u6ohnx {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

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

/* ═══ APP LAYOUT (MAIN) ═════════════════════════════════════════════════ */

.ujl5fj { min-height: 60vh; }

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

/* ─ Tablet + Mobile (≤1025px): hamburger nav */
@media (max-width: 1025px) {
  /* Показываем бургер */
  .oz5cth { display: inline-flex; }

  /* Высота хедера */
  .o0g979 { height: 68px; }

  /* Скрываем CTA в хедере (есть в меню-панели) */
  .ccyni9 { display: none; }

  /* menu-wrap превращается в slide-панель справа */
  .u2mfas {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(300px, 88vw);
    height: 100%;
    z-index: 160;
    background: rgba(5, 10, 14, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-left: 1px solid rgba(34,197,94,0.14);
    box-shadow: -16px 0 64px rgba(0,0,0,0.50);
    transform: translateX(110%);
    transition: transform 0.32s var(--ease);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 80px 24px 36px;
    overflow-y: auto;
    flex: none;
  }

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

  /* Навигация внутри панели */
  .kkaqp3 {
    display: none;
  }

  /* Список ссылок — вертикально */

  .kkaqp3 ul {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  .kkaqp3 ul li {
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .kkaqp3 ul li:last-child { border-bottom: none; }

  .kkaqp3 ul li a {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
    color: rgba(255,255,255,0.82);
    padding: 16px 0;
    width: 100%;
    letter-spacing: -0.03em;
    display: flex;
    align-items: center;
  }

  .kkaqp3 ul li a::after { display: none; }

  .kkaqp3 ul li a:hover,
  .kkaqp3 ul li.c2ena4 a {
    color: var(--em-400);
    text-decoration: none;
    padding-left: 8px;
  }

  /* CTA внутри панели */
  .u2mfas .ccyni9 {
    display: flex;
    width: 100%;
    margin-top: 28px;
    font-size: 15px;
    padding: 14px 20px;
    justify-content: center;
  }

  .noo18v { padding: 72px 0 88px; }
}

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

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

  .s81ctf   { margin-bottom: 0; }
  .ddqgta { margin: 4px 0 20px; }
}

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

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

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

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

  h1 { font-size: 28px; margin: 30px 0 16px; line-height: 1.15; }
  h2 { font-size: 23px; margin: 26px 0 12px; }
  h3 { font-size: 19px; margin: 22px 0 10px; }
  h4 { font-size: 17px; 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: 12px 14px; }

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

  .flroqf {
    font-size: 15px;
    padding: 14px 20px;
  }

  /* ─ Header mobile */
  .rra9y7,
  .rra9y7 .hk6ju5 { height: 66px; }

  .u2mfas {
    top: 66px;
    height: calc(100% - 66px);
  }

  .s34q96 { font-size: 13px; padding: 8px 14px; gap: 8px; }
  .s34q96::before { width: 22px; height: 22px; border-radius: 6px; }

  .dijefx .flroqf {
    padding: 8px 14px;
    font-size: 13px;
    box-shadow: none;
  }

  /* ─ Hero mobile */
  .noo18v       { padding: 52px 0 72px; }
  .qpa5dv  { padding-bottom: 56px; }

  .cnzxzf {
    margin: -28px 8px 0;
    padding: 28px 22px 24px;
    border-radius: var(--r-lg);
  }

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

  .or0zwr select,
  .or0zwr input[type="email"] {
    flex: none;
    width: 100%;
    height: 56px;
    font-size: 16px;
    padding: 0 16px;
    border-radius: var(--r-sm);
  }

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

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

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

  .vxh3ge .flroqf {
    width: 100%;
    height: 56px;
    font-size: 16px;
    border-radius: var(--r-sm);
  }

  .hdx0hd {
    font-size: 10.5px;
    margin-top: 16px;
  }

  .tccv3x { gap: 8px; margin-top: 20px; }

  .p9vowi {
    font-size: 11.5px;
    padding: 8px 12px 8px 10px;
  }

  /* ─ States mobile */
  .piaeje { grid-template-columns: 1fr; }
  .piaeje li { border-right: none; }
  .piaeje li:nth-last-child(2):nth-child(odd) { border-bottom: 1.5px solid var(--border); }

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

  /* ─ Footer mobile */
  .a7241u { flex-direction: column; }
  .s81ctf { margin-bottom: 18px; font-size: 14px; }

  .l38g9q.eb9gux .yanu9a { flex-direction: column; }
  .l38g9q.eb9gux .yanu9a li { width: 100%; }

  .zrltxs p { font-size: 10.5px; line-height: 1.65; }

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

  .l1mpk1 tr {
    display: block;
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
  }

  .l1mpk1 td {
    display: block;
    border: none;
    padding: 4px 14px;
  }

  .l1mpk1 td::before {
    content: attr(data-label) ": ";
    font-weight: 700;
    color: var(--em-800);
  }
}

/* ─ Small (≤575px) */
@media (max-width: 575px) {
  .cnzxzf {
    margin: -20px 4px 0;
    padding: 22px 16px 20px;
    border-radius: var(--r-lg);
  }

  .gdw00d {
    font-size: 10px;
  }

  .u0puoj {
    letter-spacing: -0.04em;
  }
}

/* ─ Helper variables */
:root {
  --green-200: #bbf7d0;
  --green-300: #86efac;
  --green-800: #065f2a;
}

/* ═══ CITY / STATE / COUNTY pages ═══════════════════════════════════════ */

.vuxpoe,
.pjqc8q,
.svoc1n {
  padding: 56px 0 88px;
  background: var(--white);
  border-top: 2px solid rgba(34,197,94,0.08);
}

.vuxpoe  h1:first-of-type,
.pjqc8q h1:first-of-type,
.svoc1n h1:first-of-type { margin-top: 0; }

/* ═══ GET-STARTED standalone page ═══════════════════════════════════════ */

body.i59x3o {
  background: var(--surface);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

body.i59x3o .ujl5fj {
  flex: 1;
  padding: 52px 0;
}

/* ═══ SCROLL-REVEAL ANIMATION ═══════════════════════════════════════════ */

@keyframes revealUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.klyf98,
.jip190,
.cw5fjj,
.lkqw9x {
  animation: revealUp 0.7s var(--ease) both;
}
