:root {
  --black: #101416;
  --ink: #172127;
  --ink-2: #202d34;
  --gold: #d2a348;
  --gold-bright: #e4bd6b;
  --gold-soft: #f4e6c6;
  --paper: #fffdf8;
  --cream: #f4f0e7;
  --cream-deep: #e8e0d1;
  --text: #25292b;
  --muted: #677076;
  --muted-light: #aeb9be;
  --line: #ded8cc;
  --line-dark: #324149;
  --error: #c84f4b;
  --radius: 14px;
  --shadow: 0 20px 60px rgba(26, 31, 33, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}
body {
  font-family:
    Inter,
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background: var(--paper);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body::selection {
  background: var(--gold-soft);
  color: var(--black);
}
a {
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
}
.wrap {
  width: min(1160px, calc(100% - 44px));
  margin: 0 auto;
}
.section {
  padding: 92px 0;
}
.eyebrow {
  color: #9b7428;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  text-align: center;
}
h2.head {
  max-width: 820px;
  margin: 0 auto 12px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 700;
  letter-spacing: -0.8px;
  line-height: 1.08;
  text-align: center;
}
.head-sub {
  max-width: 680px;
  margin: 0 auto 44px;
  color: var(--muted);
  text-align: center;
  font-size: 17px;
}
.gold {
  color: var(--gold);
}

/* Navigation */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(16, 20, 22, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}
.topbar .wrap {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}
.topbar-cta {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 14px;
}
.topbar-cta .phone {
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}
.lang {
  display: flex;
  gap: 3px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  overflow: hidden;
}
.lang a {
  padding: 6px 10px;
  color: var(--muted-light);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-decoration: none;
}
.lang a.active {
  background: var(--gold);
  color: var(--black);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 20px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  background: var(--gold);
  color: var(--black);
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.55px;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    transform 0.2s,
    background 0.2s,
    box-shadow 0.2s;
}
.btn:hover {
  background: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(210, 163, 72, 0.22);
}
.btn-lg {
  min-height: 54px;
  padding: 15px 26px;
  font-size: 14px;
}
.btn-ghost {
  border-color: rgba(255, 255, 255, 0.3);
  background: transparent;
  color: #fff;
}
.btn-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 74px 0 78px;
  background:
    radial-gradient(
      circle at 15% 15%,
      rgba(210, 163, 72, 0.16),
      transparent 28%
    ),
    linear-gradient(135deg, #111719 0%, #17242a 62%, #101416 100%);
  color: #fff;
}
.hero::after {
  position: absolute;
  right: -120px;
  bottom: -210px;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(210, 163, 72, 0.15);
  border-radius: 50%;
  content: "";
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 68px;
  align-items: center;
}
.hero-copy {
  max-width: 680px;
}
.hero .kicker {
  color: var(--gold-bright);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2.6px;
  text-transform: uppercase;
}
.hero h1 {
  margin: 17px 0 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(45px, 5.4vw, 70px);
  font-weight: 700;
  letter-spacing: -1.8px;
  line-height: 1.02;
}
.hero h1 span {
  color: var(--gold-bright);
}
.hero p.lede {
  max-width: 670px;
  color: #c6d0d4;
  font-size: 18px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.hero-reassurance {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-top: 20px;
  color: #dce3e6;
  font-size: 13px;
  font-weight: 700;
}
.hero-reassurance span::before {
  margin-right: 7px;
  color: var(--gold-bright);
  content: "✓";
}
.hero-visual {
  position: relative;
  padding: 0 0 30px 20px;
}
.hero-visual img {
  width: 100%;
  height: 550px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.36);
  object-fit: cover;
}
.practice-motorcycle .hero-visual img {
  object-position: 58% center;
}
.practice-trucking .hero-visual img {
  object-position: 62% center;
}
.practice-rideshare .hero-visual img {
  object-position: center;
}
.result-float {
  position: absolute;
  bottom: 3px;
  left: 0;
  min-width: 210px;
  padding: 18px 22px;
  border: 1px solid var(--gold);
  border-radius: 16px;
  background: var(--paper);
  box-shadow: var(--shadow);
  color: var(--ink);
}
.result-float .result-label {
  display: block;
  color: #85621f;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}
.result-float strong {
  display: block;
  margin: 1px 0 -3px;
  font-family: Georgia, serif;
  font-size: 35px;
  line-height: 1.25;
}
.result-float > span:last-child {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}
/* Trust strip */
.trust {
  border-bottom: 1px solid var(--cream-deep);
  background: var(--cream);
}
.trust .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust .stat {
  padding: 27px 16px;
  border-right: 1px solid var(--cream-deep);
  text-align: center;
}
.trust .stat:last-child {
  border-right: 0;
}
.trust .stat strong {
  display: block;
  color: var(--ink);
  font-family: Georgia, serif;
  font-size: 29px;
  line-height: 1.2;
}
.trust .stat span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

/* Editorial content */
.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 76px;
  align-items: center;
}
.prose h3 {
  margin-bottom: 18px;
  color: var(--ink);
  font-family: Georgia, serif;
  font-size: clamp(29px, 3vw, 42px);
  line-height: 1.12;
}
.prose p {
  margin-bottom: 15px;
  color: var(--muted);
  font-size: 16px;
}
.checklist {
  padding: 12px 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow);
  list-style: none;
}
.checklist li {
  position: relative;
  padding: 14px 0 14px 34px;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
}
.checklist li:last-child {
  border-bottom: 0;
}
.checklist li::before {
  position: absolute;
  top: 15px;
  left: 0;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: var(--gold-soft);
  color: #8a641e;
  content: "✓";
  font-size: 12px;
  font-weight: 900;
}
.section-dark {
  border-block: 1px solid var(--line-dark);
  background: var(--ink);
  color: #fff;
}
.section-dark h2.head,
.section-dark .card h3 {
  color: #fff;
}
.section-dark .head-sub,
.section-dark .card p {
  color: var(--muted-light);
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.card {
  padding: 30px 26px;
  border: 1px solid var(--line-dark);
  border-radius: 18px;
  background: var(--ink-2);
}
.card h3 {
  margin-bottom: 8px;
  font-size: 17px;
}
.card h3 .ico {
  margin-right: 8px;
}
.card p {
  color: var(--muted);
  font-size: 14px;
}

/* Results */
.results-section {
  background: var(--cream);
}
.result-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.result-grid.single {
  max-width: 760px;
  grid-template-columns: 1fr;
}
.result-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 30px;
  border: 1px solid #d9cba9;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(27, 31, 33, 0.08);
}
.result-card::after {
  position: absolute;
  top: -55px;
  right: -55px;
  width: 130px;
  height: 130px;
  border: 22px solid var(--gold-soft);
  border-radius: 50%;
  content: "";
}
.result-card .result-type {
  position: relative;
  z-index: 1;
  display: block;
  color: #88641e;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.45px;
  text-transform: uppercase;
}
.result-card strong {
  position: relative;
  z-index: 1;
  display: block;
  margin: 22px 0 7px;
  color: var(--ink);
  font-family: Georgia, serif;
  font-size: clamp(42px, 5vw, 60px);
  line-height: 1;
}
.result-card p {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: 13px;
}
.result-grid.single .result-card {
  min-height: 260px;
  padding: 44px;
  text-align: center;
}
.results-note {
  max-width: 780px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}
.source-link {
  color: #74541b;
  font-weight: 800;
  text-underline-offset: 3px;
}

/* Process */
.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.step {
  padding: 8px 18px;
  text-align: center;
}
.step .num {
  display: grid;
  width: 50px;
  height: 50px;
  margin: 0 auto 18px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold-bright);
  font-family: Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  box-shadow: 0 0 0 7px var(--gold-soft);
}
.step h3 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 18px;
}
.step p {
  color: var(--muted);
  font-size: 14px;
}

/* Attorney proof */
.attorney-band {
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}
.attorney-grid {
  display: grid;
  grid-template-columns: 390px 1fr;
  min-height: 470px;
}
.attorney-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.attorney-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 72px;
}
.attorney-copy .eyebrow {
  color: var(--gold-bright);
  text-align: left;
}
.attorney-copy h2 {
  max-width: 630px;
  margin-bottom: 18px;
  font-family: Georgia, serif;
  font-size: clamp(35px, 4vw, 52px);
  line-height: 1.08;
}
.attorney-copy p {
  max-width: 650px;
  color: #bac5ca;
  font-size: 16px;
}
.credential-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}
.credential-row span {
  padding: 8px 12px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  color: #eef1f2;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* FAQ */
.faq {
  border-top: 1px solid var(--line);
}
.faq details {
  padding: 20px 4px;
  border-bottom: 1px solid var(--line);
}
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--ink);
  cursor: pointer;
  font-size: 16px;
  font-weight: 800;
  list-style: none;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  color: var(--gold);
  content: "+";
  font-family: Georgia, serif;
  font-size: 27px;
  font-weight: 400;
}
.faq details[open] summary::after {
  content: "–";
}
.faq p {
  max-width: 690px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 15px;
}

/* Form */
.form-section {
  border-top: 1px solid var(--line-dark);
  background: var(--ink);
}
.form-section h2.head {
  color: #fff;
}
.form-section .head-sub {
  color: var(--muted-light);
}
.form-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 12px;
  margin: -22px auto 30px;
  color: #d5dde0;
  font-size: 12px;
  font-weight: 800;
}
.form-trust span {
  padding: 7px 11px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
}
.form-card {
  max-width: 720px;
  margin: 0 auto;
  padding: 38px;
  border: 1px solid #d8d1c4;
  border-radius: 22px;
  background: var(--paper);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.22);
  color: var(--text);
}
label {
  display: block;
  margin-bottom: 7px;
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
}
label .req {
  color: #a87922;
}
.field {
  margin-bottom: 18px;
}
.row {
  display: flex;
  gap: 15px;
}
.row .field {
  flex: 1;
}
input,
select,
textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #d4cec2;
  border-radius: 11px;
  background: #fff;
  color: var(--text);
  font: inherit;
  font-size: 15px;
  transition:
    border-color 0.15s,
    box-shadow 0.15s;
}
input::placeholder,
textarea::placeholder {
  color: #93999c;
}
input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(210, 163, 72, 0.16);
}
textarea {
  min-height: 115px;
  resize: vertical;
}
select {
  cursor: pointer;
}
.form-card button {
  width: 100%;
  min-height: 56px;
  border: 0;
  border-radius: 999px;
  background: var(--gold);
  color: var(--black);
  cursor: pointer;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  transition:
    transform 0.2s,
    background 0.2s;
}
.form-card button:hover {
  background: var(--gold-bright);
  transform: translateY(-1px);
}
.form-card button:disabled {
  cursor: not-allowed;
  opacity: 0.62;
}
.disclaimer {
  margin-top: 15px;
  color: #7c8589;
  font-size: 11px;
  line-height: 1.55;
  text-align: center;
}
#result {
  display: none;
  margin-top: 18px;
  padding: 14px;
  border-radius: 11px;
  font-size: 14px;
  text-align: center;
}
#result.ok {
  display: block;
  border: 1px solid #b69249;
  background: #f8edcf;
  color: #6d5019;
}
#result.err {
  display: block;
  border: 1px solid var(--error);
  background: #fbe9e8;
  color: #9c3734;
}

/* Footer + mobile conversion */
footer.site {
  padding: 48px 0 90px;
  border-top: 1px solid #20282c;
  background: var(--black);
  color: #fff;
  text-align: center;
}
footer.site .phone {
  color: var(--gold-bright);
  font-family: Georgia, serif;
  font-size: 26px;
  font-weight: 700;
  text-decoration: none;
}
footer.site .offices {
  margin: 8px 0 12px;
  color: #a5b0b5;
  font-size: 13px;
}
footer.site .fine {
  max-width: 800px;
  margin: 14px auto 0;
  color: #77848a;
  font-size: 10px;
  line-height: 1.75;
}
footer.site .fine a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.mobile-cta {
  display: none;
}

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-copy {
    max-width: 760px;
  }
  .hero-visual {
    max-width: 680px;
    padding-left: 20px;
  }
  .hero-visual img {
    height: 460px;
  }
  .split {
    gap: 40px;
  }
  .attorney-grid {
    grid-template-columns: 320px 1fr;
  }
  .attorney-copy {
    padding: 48px;
  }
}

@media (max-width: 760px) {
  .wrap {
    width: min(100% - 34px, 1160px);
  }
  .section {
    padding: 66px 0;
  }
  .topbar .wrap {
    min-height: 64px;
  }
  .topbar-cta .phone {
    display: none;
  }
  .topbar-cta > .btn {
    display: none;
  }
  .hero {
    padding: 54px 0 62px;
  }
  .hero h1 {
    font-size: clamp(42px, 12vw, 58px);
  }
  .hero p.lede {
    font-size: 16px;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .hero-visual {
    padding-left: 10px;
  }
  .hero-visual img {
    height: 390px;
    border-radius: 20px;
  }
  .result-float {
    left: -7px;
    min-width: 190px;
  }
  .trust .wrap {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust .stat:nth-child(2) {
    border-right: 0;
  }
  .trust .stat:nth-child(-n + 2) {
    border-bottom: 1px solid var(--cream-deep);
  }
  .split,
  .grid,
  .grid-2,
  .steps,
  .result-grid,
  .attorney-grid {
    grid-template-columns: 1fr;
  }
  .split {
    gap: 34px;
  }
  .checklist {
    padding-inline: 22px;
  }
  .result-card {
    min-height: 190px;
  }
  .attorney-grid {
    min-height: 0;
  }
  .attorney-photo {
    height: 410px;
  }
  .attorney-copy {
    padding: 48px 25px 56px;
  }
  .row {
    flex-direction: column;
    gap: 0;
  }
  .form-card {
    padding: 26px 20px;
  }
  .mobile-cta {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 60;
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
    gap: 8px;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    background: #101416;
    background-color: #101416;
    opacity: 1;
    isolation: isolate;
    box-shadow: 0 -10px 28px rgba(0, 0, 0, 0.28);
  }
  .mobile-cta a {
    min-height: 46px;
    border-radius: 12px;
    font-size: 12px;
  }
  .mobile-cta .call {
    display: grid;
    place-items: center;
    border: 1px solid #415058;
    color: #fff;
    font-weight: 900;
    text-decoration: none;
  }
  body {
    padding-bottom: calc(106px + env(safe-area-inset-bottom));
  }
  footer.site {
    padding-bottom: calc(136px + env(safe-area-inset-bottom));
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
