:root {
  --brand: #0B5ED7;
  --brand-hover: #0A53BE;
  --hero-from: #020F2B;
  --hero-to: #0B5ED7;
  --blue-50: #EFF6FF;
  --blue-100: #DBEAFE;
  --blue-200: #BEDBFF;
  --gray-950: #030712;
  --gray-900: #101828;
  --gray-800: #1E2939;
  --gray-700: #364153;
  --gray-600: #4A5565;
  --gray-500: #6A7282;
  --gray-400: #99A1AF;
  --gray-200: #E5E7EB;
  --gray-100: #F3F4F6;
  --gray-50: #F9FAFB;
  --container: 1200px;
  --gutter: 24px;
  --radius-card: 14px;
  --radius-input: 10px;
  --shadow-card: 0 1px 2px rgba(16, 24, 40, .04), 0 1px 3px rgba(16, 24, 40, .06);
  --shadow-float: 0 10px 30px rgba(2, 15, 43, .18);
}

body {
  font-family: 'outfit', sans-serif;
}

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

button {
  font: inherit;
  cursor: pointer;
  border: none
}

input,
select {
  font: inherit;
  color: var(--gray-900);
  width: 100%
}

a {
  text-decoration: none;
  color: inherit
}

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter)
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--brand);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-input);
  height: 46px;
  padding: 0 20px;
  white-space: nowrap;
  transition: background .2s, transform .1s
}

.btn:hover {
  background: var(--brand-hover)
}

.btn:active {
  transform: translateY(1px)
}

.btn:focus-visible {
  outline: 3px solid rgba(11, 94, 215, .35);
  outline-offset: 2px
}

.btn svg {
  width: 16px;
  height: 16px
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  color: #fff;
  overflow: hidden;
  background-image: linear-gradient(100deg, rgba(2, 15, 43, 0.90) 0%, rgba(6, 34, 79, 0.82) 50%, rgba(11, 94, 215, 0.55) 100%), url('/images/content.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-top {
  padding: 24px 0 44px
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, .82);
  margin-bottom: 34px;
  flex-wrap: wrap
}

.breadcrumb a {
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, .82);
  transition: color .2s
}

.breadcrumb a:hover {
  color: #fff
}

.breadcrumb .crumb-sep svg {
  width: 13px;
  height: 13px;
  stroke: rgba(255, 255, 255, .55);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round
}

.breadcrumb .current {
  color: #fff;
  font-weight: 500
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 54px;
  align-items: center;
  min-height: 85vh
}

.hero h1 {
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 800;
  letter-spacing: -.01em;
  margin-bottom: 20px;
  line-height: 1.15
}

.hero-grid p {
  font-size: 16px;
  color: rgba(255, 255, 255, .78);
  line-height: 1.75;
  margin-bottom: 16px
}

.hero-grid p:last-child {
  margin-bottom: 0
}

.hero-img {
  border-radius: 16px;
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .35)
}

.search-band {
  background: rgba(2, 15, 43, .45);
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding: 34px 0 40px
}

.search-band h2 {
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 6px
}

.search-band .sb-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, .78);
  margin-bottom: 20px
}

.search-card {
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-float);
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 1fr 1.2fr auto;
  gap: 18px;
  align-items: end
}

.field-label {
  display: block;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: 8px
}

.select-wrap {
  position: relative
}

.select-wrap select {
  appearance: none;
  -webkit-appearance: none;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-input);
  height: 46px;
  padding: 0 40px 0 14px;
  font-size: 14px;
  color: var(--gray-500);
  outline: none;
  transition: border-color .2s, box-shadow .2s
}

.select-wrap::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-right: 1.8px solid var(--gray-400);
  border-bottom: 1.8px solid var(--gray-400);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none
}

.search-card input[type=text] {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-input);
  height: 46px;
  padding: 0 14px;
  font-size: 14px;
  outline: none;
  transition: border-color .2s, box-shadow .2s, background .2s
}

.search-card input::placeholder {
  color: var(--gray-400)
}

.search-card select:focus,
.search-card input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(11, 94, 215, .12);
  background: #fff
}

/* ===================== STARTING POINT + TABS ===================== */
.start {
  padding: 60px 0 0;
  text-align: center
}

.start h2 {
  font-size: 24px;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -.01em;
  margin-bottom: 10px
}

.start .start-sub {
  font-size: 13px;
  color: var(--gray-500);
  max-width: 640px;
  margin: 0 auto 30px
}

.tab-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--brand);
  border-radius: 12px;
  overflow: hidden;
  margin: 0 auto;
  box-shadow: var(--shadow-card)
}

.tab-bar button {
  background: transparent;
  color: rgba(255, 255, 255, .9);
  font-size: 13px;
  font-weight: 500;
  padding: 15px 10px;
  transition: background .2s, color .2s
}

.tab-bar button.active {
  background: #fff;
  color: var(--brand);
  font-weight: 600;
  margin: 5px;
  border-radius: 8px;
  padding: 10px
}

.tab-bar button:not(.active):hover {
  background: rgba(255, 255, 255, .1)
}

/* ===================== TAB CONTENT ===================== */
.tab-section {
  padding: 48px 0 70px;
  text-align: center
}

.tab-section h2 {
  font-size: 24px;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -.01em;
  margin-bottom: 10px
}

.tab-section .ts-sub {
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 36px
}

.tab-panel-law {
  display: none
}

.tab-panel-law.active {
  display: block;
  animation: fade .3s ease
}

@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(6px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

/* Image cards (Common Legal Issues) */
.issues-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  text-align: left
}

.issue-card {
  background: rgba(245, 245, 245, 1);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column
}

.issue-card .ic-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  background: var(--gray-100)
}

.issue-card .ic-body {
  padding: 18px 20px 8px
}

.issue-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 4px
}

.issue-card .ic-cap {
  font-size: 12px;
  color: var(--gray-500);
  margin-bottom: 8px
}

.issue-card ul {
  list-style: none
}

.issue-card li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 2px 0;
  font-size: 13px;
  font-weight: 500;
  transition: padding-left .2s, color .2s;
  background: transparent;
  border-radius: 6px;
  color: var(--brand) !important;
}

.issue-card li a:hover {
  padding-left: 4px;
  color: var(--brand-hover)
}

.issue-card li a svg {
  width: 13px;
  height: 13px;
  stroke: var(--gray-400);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .2s
}

.issue-card li a:hover svg {
  transform: translateX(3px)
}

/* Button grid (states / categories) */
.btn-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px 18px;
  text-align: left
}

.grid-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: var(--blue-50);
  border: 1px solid rgba(11, 94, 215, 0.2);
  border-radius: var(--radius-input);
  padding: 10px 16px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--brand);
  transition: background .2s, border-color .2s, box-shadow .2s;
  line-height: 1.35

}

.grid-btn:hover {
  background: #fff;
  border-color: var(--brand);
  box-shadow: 0 2px 8px rgba(11, 94, 215, .10)
}

.grid-btn svg {
  flex: 0 0 13px;
  width: 13px;
  height: 13px;
  stroke: var(--gray-400);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke .2s, transform .2s
}

.grid-btn:hover svg {
  stroke: var(--brand);
  transform: translateX(2px)
}

/* US map */
.map-wrap {
  padding: 34px 0 0;
  display: flex;
  justify-content: center
}

.map-wrap img {
  width: 100%;
  max-width: 1100px;
  height: auto
}

.lal-interactive-map {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 34px 0 0
}

.lal-interactive-map svg {
  width: 100%;
  height: auto;
  display: block
}

.lal-interactive-map .map-module-svg-state-graphic {
  fill: #1d72f2;
  stroke: #ffffff;
  stroke-width: 1;
  transition: fill .15s ease
}

.lal-interactive-map .map-module-svg-state-link:hover .map-module-svg-state-graphic,
.lal-interactive-map .map-module-svg-state-link:focus .map-module-svg-state-graphic {
  fill: var(--brand-hover, #094cb0)
}

.lal-interactive-map .map-module-svg-state-link--disabled {
  cursor: default;
  pointer-events: none
}

.lal-interactive-map .map-module-svg-state-link--disabled .map-module-svg-state-graphic {
  fill: #cbd5e1
}

.lal-interactive-map .map-module-svg-state-label {
  fill: #ffffff;
  font-family: 'outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  pointer-events: none
}

.lal-state-grid {
  margin-top: 32px
}

/* A-Z alphabet row */
.alpha-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 32px
}

.alpha-row button {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--blue-50);
  color: var(--brand);
  font-size: 12.5px;
  font-weight: 600;
  transition: background .2s, color .2s
}

.alpha-row button.active {
  background: var(--brand);
  color: #fff
}

.alpha-row button:not(.active):hover {
  background: var(--blue-100)
}

/* ===================== MISSION ===================== */
.mission {
  padding: 30px 0 70px
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 38px;
  align-items: center
}

.mission-media {
  position: relative
}

.mission-media .photo {
  border-radius: 18px;
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 18px 40px rgba(2, 15, 43, .14)
}

.float-card {
  position: absolute;
  right: -20px;
  bottom: -30px;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow-float);
  padding: 16px 18px;
  display: flex;
  gap: 13px;
  align-items: flex-start;
  max-width: 300px
}

.float-card .ic {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--blue-50);
  display: flex;
  align-items: center;
  justify-content: center
}

.float-card .ic svg {
  width: 18px;
  height: 18px;
  stroke: var(--brand);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round
}

.float-card .t {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 2px
}

.float-card .d {
  font-size: 12px;
  color: var(--gray-500);
  line-height: 1.55
}

.mission-copy h2 {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -.015em;
  line-height: 1.3;
  margin-bottom: 18px;
  color: var(--gray-900)
}

.mission-copy p {
  font-size: 13.5px;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 14px
}

.check-list {
  list-style: none;
  margin-top: 22px
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--gray-800)
}

.check-list li+li {
  margin-top: 12px
}

.check-list .chk {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--blue-50);
  display: flex;
  align-items: center;
  justify-content: center
}

.check-list .chk svg {
  width: 11px;
  height: 11px;
  stroke: var(--brand);
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round
}

/* ===================== CTA ===================== */
.cta-section {
  padding: 20px 0 90px
}

.cta-card {
  background: linear-gradient(90deg, var(--hero-from) 0%, var(--hero-to) 100%);
  border-radius: 18px;
  padding: 38px 40px 34px;
  color: #fff
}

.cta-card h2 {
  font-size: 23px;
  font-weight: 700;
  letter-spacing: -.01em;
  margin-bottom: 6px
}

.cta-card .cta-sub {
  font-size: 13.5px;
  color: rgba(255, 255, 255, .82);
  margin-bottom: 22px
}

.cta-form {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 1fr 1.2fr auto;
  gap: 18px;
  align-items: end
}

/* ===================== RESPONSIVE ===================== */
@media (max-width:992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    min-height: auto
  }

  .hero-img {
    height: 320px
  }

  .issues-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .btn-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .mission-grid {
    grid-template-columns: 1fr;
    gap: 60px
  }

  .float-card {
    left: 14px;
    bottom: -26px
  }

  .search-card,
  .cta-form {
    grid-template-columns: 1fr 1fr
  }

  .search-card .btn,
  .cta-form .btn {
    grid-column: 1 / -1;
    width: 100%
  }

  .tab-bar {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (max-width:760px) {
  .hero-top {
    padding: 20px 0 36px
  }

  .hero-img {
    height: 240px
  }

  .start h2,
  .tab-section h2 {
    font-size: 21px
  }

  .search-band h2 {
    font-size: 19px
  }

  .issues-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto
  }

  .btn-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px
  }

  .mission {
    padding: 20px 0 50px
  }

  .mission-copy h2 {
    font-size: 23px
  }

  .cta-card {
    padding: 28px 22px 26px
  }

  .cta-card h2 {
    font-size: 20px
  }
}

@media (max-width:520px) {
  :root {
    --gutter: 16px
  }

  .search-card,
  .cta-form {
    grid-template-columns: 1fr;
    padding: 16px
  }

  .tab-bar {
    grid-template-columns: 1fr
  }

  .btn-grid {
    grid-template-columns: 1fr
  }

  .float-card {
    position: static;
    margin-top: 16px;
    max-width: none
  }

  .mission-grid {
    gap: 30px
  }
}

@media (prefers-reduced-motion:reduce) {

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important
  }

  html {
    scroll-behavior: auto
  }
}

/* Dual bottom CTA */
.lal-dual-wrap {
  padding: 48px 0 64px;
  background: var(--gray-50);
  position: relative;
}

.lal-dual-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230b5ed7' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.lal-dual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.lal-dual-card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 28px 26px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--gray-200);
}

.lal-dual-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.lal-dual-card p {
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 18px;
  line-height: 1.6;
}

.lal-diy-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.lal-diy-links li {
  margin-bottom: 10px;
}

.lal-diy-links a {
  color: var(--brand);
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.lal-diy-links a:hover {
  color: var(--brand-hover);
}

.lal-search-inline {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: end;
}

.lal-search-inline .field-label {
  margin-bottom: 8px;
}

.lal-search-inline input {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-input);
  height: 46px;
  padding: 0 14px;
  font-size: 14px;
}

.btn-outline-law {
  background: #fff;
  color: var(--brand);
  border: 2px solid var(--brand);
  box-shadow: none;
}

.btn-outline-law:hover {
  background: var(--brand);
  color: #fff;
}

.mission-copy p a {
  color: var(--brand);
  font-weight: 600;
  text-decoration: none;
}

.mission-copy p a:hover {
  color: var(--brand-hover);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .lal-dual-grid {
    grid-template-columns: 1fr;
  }
}