/* ═══════════════════════════════════════════════════════════════════════
   Design System v5 — Forest Green & Slate Premium Finance Theme
   Font: Inter (Google Fonts)
═══════════════════════════════════════════════════════════════════════ */

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

:root {
  /* ─ Brand – Forest Green */
  --green-900: #052e16;
  --green-800: #14532d;
  --green-700: #15803d;
  --green-600: #16a34a;
  --green-500: #22c55e;
  --green-400: #4ade80;
  --green-100: #dcfce7;
  --green-50:  #f0fdf4;

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

  /* ─ CTA */
  --cta:        #16a34a;
  --cta-hover:  #15803d;
  --cta-light:  #dcfce7;

  /* ─ Accent glow */
  --glow-green: rgba(34, 197, 94, 0.18);
  --glow-mid:   rgba(22, 163, 74, 0.12);

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

  /* ─ Surface */
  --white:      #ffffff;
  --surface:    #f8fafc;
  --border:     #e2e8f0;

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

  /* ─ Motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t:    all 0.22s var(--ease);
  --t-slow: all 0.38s var(--ease);

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

  /* ─ Radius */
  --r-xs: 6px;
  --r-sm: 10px;
  --r:    16px;
  --r-lg: 24px;
  --r-xl: 32px;

  /* ─ Shadows */
  --sh-xs: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --sh-sm: 0 4px 16px rgba(0,0,0,0.07);
  --sh-md: 0 8px 32px rgba(0,0,0,0.10);
  --sh-lg: 0 20px 60px rgba(0,0,0,0.14);
  --sh-green: 0 8px 32px rgba(22, 163, 74, 0.22);
  --sh-form: 0 4px 6px -1px rgba(0,0,0,0.03), 0 24px 48px -8px rgba(22,163,74,0.10);
}

/* ═══ 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);
  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);
  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(--green-700);
  outline: none;
  text-decoration: none;
  transition: var(--t);
}

a:hover {
  color: var(--green-600);
  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);
}

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

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

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

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

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

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

.gx74o3   { width: 100%; }
.otn89e { flex: 1; min-width: 0; }

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

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

@media (min-width: 992px) {
  .nq5xjd { width: 25%; }
  .wel55d { width: 33.3333%; }
  .gcqa8p { width: 41.6666%; }
  .hqjtoc { width: 58.3333%; }
  .fay9gu { width: 66.6666%; }
}

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

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

input,
select {
  width: 100%;
  display: block;
  padding: 12px 16px;
  color: var(--text-dark);
  font-size: 16px;
  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(--green-600);
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.15);
  background-color: var(--white);
}

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

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

.gcu1ny::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, transparent 60%);
  pointer-events: none;
  border-radius: inherit;
}

.gcu1ny:hover,
.gcu1ny:active {
  box-shadow: 0 12px 40px rgba(22, 163, 74, 0.38);
  transform: translateY(-2px);
  text-decoration: none;
  color: var(--white);
}

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

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

.kff5u1          { display: flex; }
.kowvbd    { align-items: center; }
.cmqful { justify-content: space-between; }
.cx7pl1  { justify-content: center; }
.bs2d0y   { justify-content: flex-start; }

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

.pacuk3 {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  border-top: 3px solid var(--green-600);
  box-shadow: 0 1px 24px rgba(15, 23, 42, 0.06);
  position: sticky;
  top: 0;
  z-index: 50;
  transition: box-shadow 0.3s var(--ease);
}

.pacuk3.lq8is3 {
  box-shadow: 0 4px 32px rgba(15, 23, 42, 0.10);
}

.pacuk3 .ikrtgb {
  height: 72px;
  display: flex;
  align-items: center;
}

.pacuk3 .iydsem {
  width: 100%;
  flex-wrap: nowrap;
  align-items: center;
}

/* Logo */
.j27m7a {
  font-size: clamp(14px, 1.5vw, 17px);
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  white-space: nowrap;
  background: linear-gradient(135deg, var(--slate-900) 0%, var(--green-700) 100%);
  padding: 9px 20px;
  border-radius: var(--r-sm);
  letter-spacing: -0.03em;
  transition: var(--t);
  flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.j27m7a::before {
  content: '◈';
  font-size: 16px;
  opacity: 0.8;
}

.j27m7a:hover {
  opacity: 0.92;
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.3);
  text-decoration: none;
  color: var(--white);
}

/* Nav */
.a5mwpe {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  min-width: 0;
  transition: transform 0.28s var(--ease);
}

.rs9h9t {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0;
  transition: var(--t);
  background-color: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  pointer-events: none;
}

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

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

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

.zpymfv ul li {
  margin: 0 0 0 32px;
  padding: 0;
  white-space: nowrap;
}

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

.zpymfv ul li a {
  display: inline-flex;
  color: var(--text);
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  text-decoration: none;
  padding: 6px 0;
  position: relative;
  letter-spacing: -0.01em;
}

.zpymfv ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green-600);
  border-radius: 2px;
  transition: width 0.22s var(--ease);
}

.zpymfv ul li a:hover,
.zpymfv ul li.iyd4ak a {
  color: var(--green-700);
  text-decoration: none;
}

.zpymfv ul li a:hover::after,
.zpymfv ul li.iyd4ak a::after {
  width: 100%;
}

.uan6lp { flex-shrink: 0; }

.uan6lp .gcu1ny {
  font-size: 13.5px;
  padding: 9px 22px;
  border-radius: var(--r-sm);
  width: auto;
  letter-spacing: -0.01em;
  box-shadow: 0 2px 10px rgba(22, 163, 74, 0.30);
}

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

.tt6a4v {
  position: relative;
}

/* Dark hero with animated grid */
.xetub5 {
  background: linear-gradient(150deg, var(--slate-950) 0%, #0d1f0f 35%, #0a1a0a 65%, var(--slate-900) 100%);
  padding: 90px 0 96px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Animated dot grid */
.xetub5::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(34, 197, 94, 0.07) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  animation: gridShift 20s linear infinite;
}

@keyframes gridShift {
  0%   { background-position: 0 0; }
  100% { background-position: 40px 40px; }
}

/* Top-right glow */
.xetub5::after {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(34, 197, 94, 0.12) 0%, transparent 65%);
  pointer-events: none;
  animation: glowPulse 6s ease-in-out infinite alternate;
}

@keyframes glowPulse {
  0%   { opacity: 0.6; transform: scale(1); }
  100% { opacity: 1;   transform: scale(1.08); }
}

.x2elz3 {
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  max-width: 100%;
  height: 280px;
  background: radial-gradient(ellipse, rgba(34, 197, 94, 0.10) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Left bottom accent */
.xetub5 .x0uxik {
  position: absolute;
  bottom: -40px;
  left: -60px;
  width: 360px;
  height: 360px;
  background: radial-gradient(ellipse, rgba(74, 222, 128, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.j2e3nv {
  font-size: clamp(28px, 4.5vw, 56px);
  line-height: 1.12;
  color: var(--white);
  font-weight: 900;
  margin: 0 auto 22px;
  max-width: 860px;
  letter-spacing: -0.04em;
  position: relative;
  z-index: 1;
}

/* Green gradient word highlight */
.j2e3nv mark {
  background: linear-gradient(90deg, var(--green-400), var(--green-500));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: normal;
}

.tgj61n {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: 50px;
  padding: 6px 16px 6px 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--green-400);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  animation: fadeSlideDown 0.6s var(--ease) both;
}

.mbejf5 {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-500);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25); }
  50%       { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.12); }
}

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

.q78464 {
  font-size: clamp(15px, 1.8vw, 19px);
  line-height: 1.65;
  max-width: 560px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.72);
  position: relative;
  z-index: 1;
  animation: fadeSlideUp 0.7s var(--ease) 0.1s both;
}

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

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

/* Decorative top edge */
.oki6ug::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-700), var(--green-500), var(--green-700));
  opacity: 0.35;
}

/* Floating form card */
.z0atrg {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 44px 44px 36px;
  box-shadow: var(--sh-form),
              0 0 0 1px rgba(22, 163, 74, 0.05);
  border: none;
  position: relative;
  animation: formReveal 0.7s var(--ease) 0.2s both;
}

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

/* Subtle green left accent bar */
.z0atrg::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20px;
  bottom: 20px;
  width: 3px;
  background: linear-gradient(180deg, var(--green-500), var(--green-700));
  border-radius: 0 3px 3px 0;
  opacity: 0.6;
}

.vpypi0 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 22px;
}

.vpypi0::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-600);
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.15);
}

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

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

.vg6fmb select {
  flex: 0 0 210px;
  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);
}

.vg6fmb 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="%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);
}

.vg6fmb select:focus,
.vg6fmb input[type="email"]:focus {
  border-color: var(--green-600);
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.12);
  background-color: var(--white);
}

.c59yn6 { flex: 0 0 auto; }

.c59yn6 .gcu1ny {
  height: 60px;
  padding: 0 36px;
  font-size: 16px;
  width: auto;
  border-radius: var(--r-sm);
  box-shadow: 0 4px 16px rgba(22, 163, 74, 0.35);
}

.c59yn6 .gcu1ny:hover {
  box-shadow: 0 8px 28px rgba(22, 163, 74, 0.50);
  transform: translateY(-2px);
}

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

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

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

.e22c68 {
  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: 8px 18px 8px 12px;
  white-space: nowrap;
  box-shadow: var(--sh-xs);
  transition: var(--t);
  cursor: default;
}

.e22c68:hover {
  border-color: var(--green-400);
  color: var(--green-700);
  box-shadow: 0 4px 16px rgba(22, 163, 74, 0.12);
  transform: translateY(-1px);
}

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

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

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

.jamayz {
  margin: 0 0 32px;
  font-size: clamp(26px, 3vw, 38px);
  color: var(--text-dark);
  line-height: 1.28;
  font-weight: 800;
  padding-bottom: 18px;
  position: relative;
  letter-spacing: -0.03em;
}

.jamayz::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--green-600), var(--green-400));
}

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

.nb0yl5 {
  padding-top: 80px;
  background: linear-gradient(170deg, var(--slate-950) 0%, #0d1f0f 40%, var(--slate-900) 100%);
  color: var(--white);
  border-top: 3px solid var(--green-700);
  position: relative;
  overflow: hidden;
}

/* Footer background pattern */
.nb0yl5::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(34, 197, 94, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}

/* Footer glow accent */
.nb0yl5::after {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 480px;
  height: 480px;
  background: radial-gradient(ellipse, rgba(34, 197, 94, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.faktaa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.10);
  padding: 10px 18px;
  border-radius: var(--r-sm);
  letter-spacing: -0.03em;
  transition: var(--t);
  position: relative;
  z-index: 1;
}

.faktaa::before {
  content: '◈';
  font-size: 15px;
  opacity: 0.7;
  color: var(--green-400);
}

.faktaa:hover {
  background: rgba(34, 197, 94, 0.12);
  border-color: rgba(34, 197, 94, 0.25);
  text-decoration: none;
  color: var(--white);
}

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

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

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

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

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

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

.clcomq li a:hover {
  background: var(--green-700);
  border-color: var(--green-600);
  text-decoration: none;
  transform: translateY(-2px);
}

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

.mmyxo5 {
  margin: 0 0 16px;
  text-transform: uppercase;
  font-size: 10px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--green-400);
  position: relative;
  z-index: 1;
}

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

.nf5jsc { width: 100%; }

.my7hmn { margin: 0; }

.my7hmn li {
  margin: 0 0 10px;
  padding: 0;
  line-height: 1;
}

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

.my7hmn 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.62);
  transition: var(--t);
}

.my7hmn li a::before {
  content: '→';
  font-size: 11px;
  color: var(--green-500);
  opacity: 0;
  transform: translateX(-6px);
  transition: var(--t);
}

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

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

.nj66aa.z7zxws .my7hmn {
  display: flex;
  flex-wrap: wrap;
  column-gap: 16px;
}

.nj66aa.z7zxws .my7hmn li {
  width: calc(50% - 8px);
}

.bs2llh {
  margin-top: 52px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 1;
}

.f64rmx {
  margin-bottom: 24px;
}

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

.f64rmx p {
  color: rgba(255,255,255,0.42);
  font-size: 11.5px;
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 6px;
  overflow-wrap: break-word;
  word-break: break-word;
}

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

.mbe19q {
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
  color: var(--green-400);
  margin-right: 6px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.a1vec7 {
  width: 100%;
  padding: 18px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  margin-top: 24px;
  position: relative;
  z-index: 1;
}

.a1vec7 p {
  margin-bottom: 0;
  font-size: 11.5px;
  line-height: 1.5;
  color: rgba(255,255,255,0.35);
}

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

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

.fgh53n:hover { opacity: 0.7; }

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

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

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

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

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

.vz1uli .dzzo0u { top: 2px; }

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

.vz1uli .dzzo0u::after { top: 16px; }

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

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

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

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

.p0tq35 {
  padding: 64px 0 80px;
  background: var(--white);
  overflow-x: hidden;
  border-top: 3px solid var(--green-100);
}

.p0tq35 h1 { margin-top: 0; }

.iuxe29 { line-height: 1.75; }

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

.iuxe29 h2 {
  padding-left: 16px;
  border-left: 3px solid var(--green-600);
  margin-top: 2.2rem;
}

.iuxe29 h3 {
  padding-left: 12px;
  border-left: 2px solid var(--green-400);
  color: var(--slate-700);
}

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

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

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

.bw565z {
  padding: 0 0 72px;
  background: var(--white);
}

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

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

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

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

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

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

.kc4xz4 li a:hover {
  background: var(--green-50);
  color: var(--green-700);
}

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

.ac0n7d {
  padding: 2rem 0 3rem;
  background: var(--surface);
}

.s3gacr { margin-bottom: 1.25rem; }

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

.gqt2es {
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  background: var(--white);
  overflow: hidden;
  transition: border-color 0.2s;
}

.gqt2es[open] {
  border-color: var(--green-400);
}

.m0m9wa {
  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;
  color: var(--text-dark);
}

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

.gqt2es[open] .m0m9wa::after {
  transform: rotate(90deg);
}

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

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

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

.x625xh li a {
  display: block;
  padding: 0.25rem 1rem;
  font-size: 0.88rem;
  color: var(--green-700);
  text-decoration: none;
  transition: background 0.12s;
}

.x625xh li a:hover {
  background: var(--green-50);
  text-decoration: none;
}

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

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

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

.z9m303 { flex: 1 1 220px; }

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

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

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

.a2bhq3:hover {
  border-color: var(--green-300);
  box-shadow: 0 4px 20px rgba(22, 163, 74, 0.08);
}

.la96kd {
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
  cursor: default;
  border-left: 3px solid var(--green-600);
}

.segza2 {
  padding: 0 24px 20px 24px;
  border-top: 1px solid var(--green-100);
}

.segza2 p,
.segza2 ul {
  font-size: 15.5px;
  line-height: 1.7;
  margin-top: 14px;
}

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

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

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

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

.bz0fpy {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
}

.xd1w46 {
  width: 100%;
  padding: 0.7rem 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);
}

.xd1w46:focus {
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.13);
  background: var(--white);
}

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

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

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

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

.rhx2mw iframe { display: block; }

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

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

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

.gq1xd3 th {
  text-align: left;
  padding: 12px 16px;
  background: var(--green-50);
  border-bottom: 2px solid var(--green-200);
  font-weight: 700;
  white-space: nowrap;
  color: var(--green-800);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

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

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

.gq1xd3 tr:hover td {
  background: var(--green-50);
}

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

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

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

.wttpcg td,
.wttpcg th {
  border: 1.5px solid var(--border);
  padding: 0.7rem 1rem;
  vertical-align: top;
  word-break: break-word;
}

.wttpcg tr:first-child td,
.wttpcg tr:first-child th {
  background-color: var(--green-50);
  font-weight: 700;
  color: var(--green-800);
}

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

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

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

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

.dn99ce .w1r0l7,
.dn99ce .pvf8yk {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

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

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

.nodojs { min-height: 60vh; }

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

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

  .pacuk3,
  .pacuk3 .ikrtgb { height: 72px; }

  .a5mwpe {
    padding: 36px 24px;
    position: fixed;
    top: 72px;
    right: 0;
    bottom: 0;
    height: calc(100% - 72px);
    width: min(300px, 90vw);
    z-index: 99;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transform: translateX(100%);
    box-shadow: -12px 0 48px rgba(15, 23, 42, 0.12);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    overflow-y: auto;
    flex: none;
    border-left: 1px solid var(--border);
  }

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

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

  .zpymfv ul {
    display: block;
  }

  .zpymfv ul li {
    margin: 0 0 6px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
  }

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

  .zpymfv ul li a {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    padding: 4px 0;
  }

  .zpymfv ul li a::after { display: none; }
  .zpymfv ul li a:hover  { color: var(--green-700); }

  .uan6lp .gcu1ny {
    font-size: 14px;
    padding: 9px 18px;
  }

  .xetub5 { padding: 64px 0 80px; }
}

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

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

  .faktaa   { margin-bottom: 0; }
  .clcomq { margin: 4px 0 20px; }
}

/* ─ 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.2; }
  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);
  }

  .gcu1ny {
    font-size: 16px;
    padding: 13px 20px;
  }

  /* ─ Header mobile */
  .pacuk3,
  .pacuk3 .ikrtgb { height: 64px; }

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

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

  .uan6lp .gcu1ny {
    padding: 7px 12px;
    font-size: 13px;
    box-shadow: none;
  }

  /* ─ Hero mobile */
  .xetub5     { padding: 48px 0 64px; }
  .oki6ug{ padding-top: 28px; padding-bottom: 48px; }

  .z0atrg {
    padding: 28px 20px 22px;
    border-radius: var(--r-lg);
    box-shadow: 0 10px 30px -5px rgba(22, 163, 74, 0.08);
  }

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

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

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

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

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

  .c59yn6 .gcu1ny {
    width: 100%;
    height: 54px;
    font-size: 16px;
    border-radius: var(--r-sm);
  }

  .kzbu3y {
    font-size: 10.5px;
    margin-top: 14px;
  }

  .urof9e { gap: 8px; margin-top: 16px; }

  .e22c68 {
    font-size: 11.5px;
    padding: 7px 12px 7px 10px;
  }

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

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

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

  .nj66aa.z7zxws .my7hmn { flex-direction: column; }
  .nj66aa.z7zxws .my7hmn li { width: 100%; }

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

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

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

  .gq1xd3 td {
    display: block;
    border: none;
    padding: 4px 12px;
  }

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

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

  .tgj61n {
    font-size: 10.5px;
  }
}

/* ─ Helper: green-200, green-300 for hover states */
:root {
  --green-200: #bbf7d0;
  --green-300: #86efac;
}

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

.d9sb6i,
.go0noo,
.nb3rro {
  padding: 52px 0 80px;
  background: var(--white);
  border-top: 3px solid var(--green-100);
}

.d9sb6i  h1:first-of-type,
.go0noo h1:first-of-type,
.nb3rro h1:first-of-type { margin-top: 0; }

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

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

body.t5qphz .nodojs {
  flex: 1;
  padding: 48px 0;
}

