:root {
  --brand: rgba(11, 94, 215, 1);
  --brand-hover: #0A53BE;
  --hero-from: #020F2B;
  --hero-to: #0B5ED7;
  --blue-50: rgba(239, 246, 255, 1);
  --blue-100: #DBEAFE;
  --blue-600: #2563EB;
  --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;
  --amber: #F59E0B;
  --container: 1200px;
  --gutter: 24px;
  --radius-card: 14px;
  --radius-input: 10px;
  --shadow-card: 0 1px 2px rgba(79, 102, 148, 0.04), 0 1px 3px rgba(16, 24, 40, .06);
}

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

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

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

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: 44px;
  padding: 0 24px;
  transition: background .2s, transform .1s
}

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

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

/* ===================== BREADCRUMB + EDITORIAL NOTE ===================== */
.crumb-bar {
  padding: 16px 0
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--gray-500);
  flex-wrap: wrap
}

.breadcrumb a {
  display: inline-flex;
  align-items: center;
  color: var(--gray-500);
  transition: color .2s
}

.breadcrumb a:hover {
  color: var(--brand)
}

.breadcrumb .crumb-sep svg {
  width: 13px;
  height: 13px;
  stroke: var(--gray-400);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round
}

.breadcrumb .current {
  color: var(--brand);
  font-weight: 600
}

.editorial {
  background: var(--blue-50);
  text-align: center;
  padding: 11px 16px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--brand)
}

/* ===================== INTRO ===================== */
.intro {
  padding: 44px 0 54px
}

.intro h1 {
  font-size: 26px;
  font-weight: 700;
  color: var(--gray-900);
  letter-spacing: -.01em;
  margin-bottom: 14px;
  max-width: 760px
}

.intro p {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.8;
  max-width: 760px;
  margin-bottom: 18px
}

.feat-list {
  list-style: none;
  margin-bottom: 24px
}

.feat-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--gray-700);
  margin-bottom: 11px
}

.feat-list li svg {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  stroke: var(--brand);
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round
}
.intro-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.intro-inner .container {
  flex: 0 0 48%;
  max-width: 48%;
  padding: 0;
}

.image-section {
  flex: 0 0 46%;
  max-width: 46%;
}

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

@media (max-width: 900px) {
  .intro-inner {
    flex-direction: column;
    gap: 32px;
  }
  .intro-inner .container,
  .image-section {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
/* ===================== LLC VIDEO SECTION (gray band) ===================== */
.llc {
  background: var(--gray-50);
  padding:60px 56px
}

.llc-banner {
  background: var(--brand);
  color: #fff;
  border-radius: 10px;
  padding: 16px 24px;
  font-size: 17px;
  font-weight: 600;
  margin-top: -26px;
  position: relative;
  margin-bottom: 36px
}

.llc-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 48px;
  align-items: center
}

.llc-copy h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--gray-900);
  letter-spacing: -.01em;
  line-height: 1.35;
  margin-bottom: 18px
}

.llc-copy .feat-list {
  margin-bottom: 22px
}

.video-thumb {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(2, 15, 43, .18);
  aspect-ratio: 16/9
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.video-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(2, 15, 43, .25)
}

.play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: rgba(11, 94, 215, .92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: transform .2s, background .2s
}

.play-btn:hover {
  transform: scale(1.08);
  background: var(--brand)
}

.play-btn svg {
  width: 24px;
  height: 24px;
  fill: #fff;
  margin-left: 3px
}

/* ===================== ENTITY CARDS ===================== */
.entities {
  padding: 60px 0 64px;
  text-align: center
}

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

.entities .ent-sub {
  font-size: 13px;
  color: var(--gray-500);
  max-width: 620px;
  margin: 0 auto 40px
}

.ent-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left
}

.ent-card {
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: 20px;
  padding: 26px 24px;
  display: flex;
  flex-direction: column
}

.ent-icon {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--hero-from) 0%, var(--hero-to) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px
}

.ent-icon svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round
}

.ent-card h3 {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--brand);
  margin-bottom: 10px
}

.ent-card p {
  font-size: 12.5px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1
}

.ent-card .btn {
  width: 100%;
  height: 42px;
  font-size: 13px
}

/* ===================== COMPLIANCE (dark band) ===================== */
.compliance {
  background: linear-gradient(105deg, var(--hero-from) 0%, #06224f 55%, var(--hero-to) 100%);
  color: #fff;
  padding: 54px 0 60px
}

.compliance .container h2 {
  font-size: 22px;
  font-weight: 800;
  text-align: center;
  letter-spacing: -.01em;
  margin-bottom: 34px;

  margin-inline: auto
}

.comp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px
}

.comp-card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-card);
  padding: 24px 26px
}

.comp-card .badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 11px;
  border-radius: 999px;
  margin-bottom: 14px
}

.comp-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px
}

.comp-card p {
  font-size: 12px;
  color: rgba(255, 255, 255, .7);
  line-height: 1.75;
  margin-bottom: 20px
}

.comp-card .btn-light {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 44px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .2);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius-input);
  transition: background .2s
}

.comp-card .btn-light:hover {
  background: rgba(255, 255, 255, .2)
}

/* ===================== FAQ ===================== */
.faq {
  padding: 60px 0 80px;
  text-align: center
}

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

.faq .faq-sub {
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 34px
}

.faq-list {
  text-align: left
}

.faq-item {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-card);
  margin-bottom: 14px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow .2s
}

.faq-item.open {
  box-shadow: var(--shadow-card)
}

.faq-q {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  cursor: pointer;
  background: var(--blue-50)
}

.faq-item:not(.open) .faq-q {
  background: var(--blue-50)
}

.faq-q .qi {
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center
}

.faq-q .qi svg {
  width: 15px;
  height: 15px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round
}

.faq-q .qt {
  flex: 1;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-900)
}

.faq-q .chev {
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s
}

.faq-q .chev svg {
  width: 14px;
  height: 14px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round
}

.faq-item.open .chev {
  transform: rotate(180deg)
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease
}

.faq-item.open .faq-body {
  max-height: 1400px
}

.faq-inner {
  padding: 20px
}

/* States grid inside FAQ */
.states-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px 16px
}

.state-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--brand);
  transition: border-color .2s, box-shadow .2s
}

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

.state-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: transform .2s, stroke .2s
}

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

.faq-text {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.8
}

/* ===================== RESPONSIVE ===================== */
@media (max-width:960px) {
  .llc-grid {
    grid-template-columns: 1fr;
    gap: 30px
  }

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

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

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

@media (max-width:680px) {
  .intro {
    padding: 32px 0 40px
  }

  .intro h1 {
    font-size: 22px
  }

  .entities h2,
  .faq h2,
  .compliance>.container>h2 {
    font-size: 20px
  }

  .llc-banner {
    font-size: 15px;
    padding: 14px 18px
  }

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

  .faq-q .qt {
    font-size: 13px
  }
}

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

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

  .editorial {
    font-size: 11.5px
  }
}

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

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

  html {
    scroll-behavior: auto
  }
}