:root {
  --blue: #12385f;
  --blue-2: #0d2845;
  --teal: #1c746e;
  --gold: #d89b2b;
  --gold-2: #f5c66b;
  --paper: #f6f8fb;
  --white: #ffffff;
  --ink: #17212f;
  --muted: #5d6978;
  --line: rgba(23, 33, 47, 0.14);
  --shadow: 0 22px 55px rgba(18, 56, 95, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

body,
button,
input,
select,
textarea {
  font: inherit;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  left: 12px;
  top: 12px;
  z-index: 100;
  padding: 10px 12px;
  background: var(--white);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.call-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--blue-2);
  font-weight: 700;
  text-align: center;
}

.call-bar a {
  color: var(--gold-2);
  text-decoration: none;
  white-space: nowrap;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 15px clamp(16px, 4vw, 58px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(18, 56, 95, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 240px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  color: var(--white);
  background: var(--blue);
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.nav-links {
  display: flex;
  gap: 24px;
  color: #344357;
  font-size: 14px;
  font-weight: 700;
}

.nav-links a,
.nav-cta,
.button {
  text-decoration: none;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 17px;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 900;
}

.nav-cta,
.button.primary {
  color: #171002;
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.34);
}

.button.full {
  width: 100%;
}

.hero {
  position: relative;
  min-height: calc(100vh - 104px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 420px);
  align-items: center;
  gap: 28px;
  padding: 54px clamp(16px, 5vw, 72px);
  overflow: hidden;
  background: var(--blue);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(18, 56, 95, 0.94), rgba(18, 56, 95, 0.84) 42%, rgba(18, 56, 95, 0.36)),
    linear-gradient(0deg, rgba(13, 40, 69, 0.28), rgba(13, 40, 69, 0.05));
}

.hero-card,
.lead-panel {
  position: relative;
  z-index: 1;
}

.hero-card {
  max-width: 660px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--teal);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1;
}

h2 {
  margin-bottom: 15px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
}

h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.hero-card p {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0;
}

.case-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 720px;
  gap: 10px;
}

.case-tabs a {
  min-height: 58px;
  display: grid;
  place-items: center;
  padding: 10px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.11);
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}

.lead-panel {
  padding: 22px;
  background: rgba(255, 255, 255, 0.97);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.panel-heading p {
  margin-bottom: 3px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.panel-heading h2 {
  margin-bottom: 14px;
  font-size: 28px;
}

.form-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
}

.form-steps li {
  padding: 8px 6px;
  border-radius: 5px;
  color: var(--blue);
  background: #eef4fa;
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}

.lead-form {
  display: grid;
  gap: 12px;
}

label,
legend {
  color: #2e3d50;
  font-size: 13px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  margin-top: 6px;
  padding: 10px 11px;
  border: 1px solid rgba(18, 56, 95, 0.22);
  border-radius: 5px;
  background: var(--white);
  color: var(--ink);
}

input,
select {
  min-height: 43px;
}

textarea {
  resize: vertical;
}

.more-details {
  border: 1px solid rgba(18, 56, 95, 0.16);
  border-radius: 6px;
  background: #f8fbfd;
}

.more-details summary {
  padding: 11px;
  color: var(--blue);
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
}

.more-details label {
  display: block;
  padding: 0 11px 11px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.consent {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  color: #455266;
  font-size: 12px;
  font-weight: 700;
}

input[type="checkbox"] {
  width: 17px;
  height: 17px;
  min-height: 17px;
  margin: 2px 0 0;
  accent-color: var(--teal);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.trust-strip span {
  padding: 18px;
  border-right: 1px solid var(--line);
  color: var(--blue);
  font-weight: 900;
  text-align: center;
}

.section {
  padding: clamp(54px, 7vw, 88px) clamp(16px, 5vw, 72px);
}

.section-header {
  max-width: 760px;
  margin-bottom: 24px;
}

.section p {
  color: var(--muted);
  font-size: 17px;
}

.practice-grid,
.article-grid,
.location-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.practice-grid a,
.location-grid a,
.article-grid article,
.steps article {
  min-height: 150px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 35px rgba(18, 56, 95, 0.08);
}

.practice-grid a {
  color: inherit;
  text-decoration: none;
}

.location-grid a {
  display: flex;
  align-items: center;
  min-height: 82px;
  color: var(--blue);
  font-weight: 900;
  text-decoration: none;
}

.directory-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.directory-grid a,
.mini-link-grid a {
  display: block;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: inherit;
  background: #f8fbfd;
  text-decoration: none;
}

.directory-grid strong,
.directory-grid span {
  display: block;
}

.directory-grid strong {
  margin-bottom: 5px;
  color: var(--blue);
}

.directory-grid span {
  color: var(--muted);
  font-size: 13px;
}

.mini-link-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.mini-link-grid a {
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.seo-copy {
  background: #eef4fa;
}

.copy-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 1100px;
}

.copy-columns p {
  margin-bottom: 0;
}

.locations {
  background: #f8fbfd;
}

.practice-grid strong,
.practice-grid span {
  display: block;
}

.practice-grid strong {
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 19px;
}

.practice-grid span {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 36px;
  align-items: start;
  background: #e8eef5;
}

.steps {
  display: grid;
  gap: 14px;
}

.steps span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--teal);
  font-weight: 900;
}

.articles {
  background: var(--white);
}

.article-grid article p {
  margin-bottom: 10px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.article-grid a {
  color: var(--blue);
  font-weight: 900;
}

.article-more {
  margin-top: 18px;
}

.article-more a {
  color: var(--blue);
  font-weight: 900;
}

.subhero {
  padding: clamp(52px, 7vw, 86px) clamp(16px, 5vw, 72px);
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
}

.subhero h1 {
  max-width: 930px;
}

.subhero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 19px;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 28px;
  align-items: start;
  padding: clamp(46px, 6vw, 76px) clamp(16px, 5vw, 72px);
}

.content-block {
  margin-bottom: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(18, 56, 95, 0.06);
}

.content-block h2 {
  font-size: clamp(26px, 3vw, 34px);
}

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

.faq details {
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.faq summary {
  color: var(--blue);
  cursor: pointer;
  font-weight: 900;
}

.faq details p {
  margin: 10px 0 0;
}

.sidebar-card {
  position: sticky;
  top: 92px;
  padding: 20px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.sidebar-card h2 {
  font-size: 26px;
}

.button.outline {
  margin-top: 10px;
  color: var(--blue);
  background: var(--white);
  border: 1px solid var(--line);
}

.related-links {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.related-links a {
  color: var(--blue);
  font-weight: 800;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--white);
  background: var(--blue);
}

.final-cta p {
  color: rgba(255, 255, 255, 0.82);
}

footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  padding: 28px clamp(16px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.76);
  background: #0b1f35;
}

footer strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-2);
}

footer p {
  max-width: 980px;
  margin: 0;
  font-size: 13px;
}

footer nav {
  display: flex;
  gap: 16px;
  align-items: start;
  font-size: 13px;
  font-weight: 800;
}

footer a {
  color: var(--white);
}

.sticky-actions {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom));
  z-index: 40;
  display: none;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(18, 56, 95, 0.16);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 42px rgba(18, 56, 95, 0.22);
  backdrop-filter: blur(14px);
}

.sticky-actions a {
  display: grid;
  place-items: center;
  min-height: 46px;
  border-radius: 7px;
  color: var(--white);
  background: var(--blue);
  font-weight: 900;
  text-decoration: none;
}

.sticky-actions a:last-child {
  color: #171002;
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
}

:focus-visible {
  outline: 3px solid var(--gold-2);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-shade {
    background: rgba(18, 56, 95, 0.72);
  }

  .lead-panel {
    max-width: 570px;
  }

  .case-tabs,
  .trust-strip,
  .practice-grid,
  .article-grid,
  .location-grid,
  .directory-grid,
  .mini-link-grid,
  .split {
    grid-template-columns: 1fr 1fr;
  }

  .article-layout,
  .copy-columns {
    grid-template-columns: 1fr;
  }

  .sidebar-card {
    position: static;
  }
}

@media (max-width: 650px) {
  .call-bar {
    display: grid;
    gap: 4px;
  }

  .topbar {
    padding: 12px 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .nav-cta {
    padding: 10px;
    font-size: 13px;
  }

  .hero {
    padding: 30px 14px 36px;
  }

  h1 {
    font-size: 40px;
  }

  .hero-actions,
  .case-tabs,
  .form-grid,
  .trust-strip,
  .practice-grid,
  .article-grid,
  .location-grid,
  .directory-grid,
  .mini-link-grid,
  .split,
  .copy-columns,
  .final-cta,
  footer {
    display: grid;
    grid-template-columns: 1fr;
    padding-bottom: 96px;
  }

  .button {
    width: 100%;
  }

  .sticky-actions {
    display: grid;
  }

  .section {
    padding: 50px 16px;
  }

  footer nav {
    display: grid;
  }
}


.ad-label {
  padding: 8px 16px;
  color: #ffffff;
  background: #07182a;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.form-warning,
.sensitive-note,
.form-links {
  margin: 0;
  color: #5a2530;
  font-size: 12px;
  line-height: 1.4;
}

.form-warning {
  padding: 9px;
  border: 1px solid rgba(143, 47, 47, 0.18);
  border-radius: 6px;
  background: #fff5f3;
}

.sensitive-note {
  color: #5d6978;
}

.form-links {
  color: #455266;
  text-align: center;
}

.form-links a {
  color: #12385f;
  font-weight: 800;
}

/* Desktop alignment repair: keep media out of the hero grid and lock the intake panel. */
.hero > picture {
  position: absolute;
  inset: 0;
  display: block;
}

.hero {
  grid-template-columns: minmax(520px, 1fr) minmax(390px, 460px);
  align-items: start;
  gap: clamp(28px, 4vw, 54px);
  padding-top: clamp(44px, 6vw, 78px);
  padding-bottom: clamp(44px, 6vw, 78px);
}

.hero-card {
  align-self: center;
  max-width: 720px;
}

.lead-panel {
  align-self: start;
  justify-self: end;
  width: 100%;
  max-width: 460px;
  padding: 24px;
}

.panel-heading h2 {
  font-size: 28px;
  line-height: 1.08;
}

.lead-form,
.panel-heading {
  width: 100%;
}

.lead-form label,
.more-details label {
  display: block;
  min-width: 0;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  display: block;
  width: 100%;
  max-width: 100%;
}

.form-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: end;
}

.consent {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
}

.consent input[type="checkbox"] {
  margin-top: 1px;
}

.form-links {
  max-width: 100%;
  overflow-wrap: anywhere;
}

@media (min-width: 981px) {
  .hero {
    min-height: auto;
  }
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
  }

  .hero-card,
  .lead-panel {
    justify-self: stretch;
    max-width: 680px;
  }
}

@media (max-width: 650px) {
  .hero-actions,
  .case-tabs,
  .form-grid,
  .trust-strip,
  .practice-grid,
  .article-grid,
  .location-grid,
  .directory-grid,
  .mini-link-grid,
  .split,
  .copy-columns,
  .final-cta {
    padding-bottom: 0;
  }

  footer {
    padding-bottom: 96px;
  }
}
