:root {
  --orange: #ea8825;
  --orange-dark: #c7721b;
  --orange-soft: #fbf1e4;
  --ink: #14161a;
  --ink-soft: #2a2d33;
  --muted: #5b6068;
  --line: #e6e2db;
  --line-strong: #d6d1c7;
  --cream: #faf7f2;
  --cream-deep: #f3efe7;
  --white: #ffffff;
  --black: #0b0c0e;
  --shadow-sm: 0 1px 2px rgba(20, 22, 26, 0.05), 0 1px 1px rgba(20, 22, 26, 0.03);
  --shadow-md: 0 8px 24px -12px rgba(20, 22, 26, 0.12), 0 2px 6px rgba(20, 22, 26, 0.04);
  --shadow-lg: 0 24px 60px -20px rgba(20, 22, 26, 0.25), 0 8px 20px -10px rgba(20, 22, 26, 0.08);
  --radius: 8px;
  --radius-sm: 6px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--ink);
  font-family: "Source Sans 3", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.62;
}

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

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

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

h1,
h2,
h3,
h4 {
  color: var(--ink);
  font-family: "Raleway", Arial, Helvetica, sans-serif;
  letter-spacing: 0;
  line-height: 1.15;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: saturate(140%) blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
}

.logo img {
  width: 128px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 38px;
}

.nav a,
.nav-dropdown-toggle,
.phone-link {
  color: var(--ink-soft);
  font-family: "Raleway", Arial, Helvetica, sans-serif;
  font-size: 14.5px;
  font-weight: 600;
}

.nav a:hover,
.nav-dropdown-toggle:hover,
.phone-link:hover {
  color: var(--orange-dark);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-dropdown-toggle::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  opacity: 0.7;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: -18px;
  display: grid;
  min-width: 320px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.nav-dropdown.open .nav-dropdown-menu,
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  padding: 11px 12px;
  border-radius: 6px;
  font-size: 14px;
}

.nav-dropdown-menu a:hover {
  background: var(--cream);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink-soft);
  transition: all 0.2s ease;
}

.social-links a:hover {
  border-color: rgba(234, 136, 37, 0.4);
  background: var(--orange-soft);
  color: var(--orange-dark);
  transform: translateY(-1px);
}

.social-links svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  font-family: "Raleway", Arial, Helvetica, sans-serif;
  font-weight: 700;
}

.mobile-nav {
  display: none;
  padding: 0 28px 18px;
  border-top: 1px solid var(--line);
  background: var(--cream);
}

.mobile-nav.open {
  display: grid;
  gap: 10px;
}

.mobile-nav > a,
.mobile-subnav a {
  padding: 10px 0;
  color: var(--ink-soft);
  font-family: "Raleway", Arial, Helvetica, sans-serif;
  font-size: 14.5px;
  font-weight: 600;
}

.mobile-subnav {
  display: grid;
  gap: 2px;
  margin: 2px 0 8px;
  padding: 12px 0 4px 14px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.mobile-subnav a {
  font-family: "Source Sans 3", Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 600;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-family: "Raleway", Arial, Helvetica, sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(234, 136, 37, 0.25);
}

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}

.btn-ghost,
.btn-light-ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.34);
  color: var(--white);
}

.btn-ghost:hover,
.btn-light-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
}

.btn-ghost-dark {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--ink);
}

.btn-ghost-dark:hover {
  border-color: var(--orange);
  color: var(--orange-dark);
}

.btn-block {
  width: 100%;
}

.hero,
.simple-hero {
  position: relative;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.hero {
  padding: 82px 0 112px;
}

.simple-hero {
  padding: 78px 0 82px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.simple-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(95deg, rgba(11, 12, 14, 0.95) 0%, rgba(11, 12, 14, 0.86) 52%, rgba(11, 12, 14, 0.66) 100%),
    url("/images/bg-image-2.webp") center / cover no-repeat;
  opacity: 0.95;
}

.simple-hero > .container {
  position: relative;
  z-index: 2;
}

.hero .section-head,
.simple-hero .section-head {
  margin-bottom: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(95deg, rgba(11, 12, 14, 0.94) 0%, rgba(11, 12, 14, 0.78) 54%, rgba(11, 12, 14, 0.48) 100%),
    url("/images/bg-image-1.webp") center / cover no-repeat;
}

.hero-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange) 38%, transparent 38%);
}

.hero-inner,
.service-hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 52px;
  align-items: start;
}

.service-hero-layout-compact {
  gap: 38px;
}

.hero-eyebrow,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--orange);
  font-family: "Raleway", Arial, Helvetica, sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero-eyebrow::before,
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--orange);
}

.hero h1,
.simple-hero h1 {
  max-width: 780px;
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(34px, 4.4vw, 58px);
  font-weight: 800;
  line-height: 1.06;
}

.hero h1 em {
  color: var(--orange);
  font-style: normal;
}

.hero-sub,
.simple-hero p {
  max-width: 620px;
  margin-bottom: 38px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.66;
}

.simple-hero .quote-panel p,
.simple-hero .quote-panel label,
.simple-hero .quote-panel .result {
  color: inherit;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 38px;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-meta-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
}

.hero-meta-item:last-child {
  grid-column: 1 / -1;
  max-width: 420px;
}

.hero-meta-item-icon,
.proof-item-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  flex: 0 0 auto;
}

.hero-meta-item-icon {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: var(--orange);
}

.proof-item-icon {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: var(--orange);
}

.hero-meta-item-icon svg,
.proof-item-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.hero-meta-item-copy strong,
.proof-item-copy strong {
  display: block;
  color: var(--white);
  font-family: "Raleway", Arial, Helvetica, sans-serif;
  font-size: 15px;
  margin-bottom: 4px;
}

.hero-meta-item-copy span,
.proof-item-copy span {
  display: block;
}

.quote-panel {
  position: relative;
  padding: 38px 36px;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow-lg);
}

.quote-panel-service,
.quote-panel-services,
.quote-panel-states,
.quote-panel-careers,
.quote-panel-location {
  padding: 28px 26px;
}

.quote-panel-service .quote-panel-points,
.quote-panel-service .quote-panel-foot,
.quote-panel-services .quote-panel-points,
.quote-panel-services .quote-panel-foot,
.quote-panel-states .quote-panel-points,
.quote-panel-states .quote-panel-foot,
.quote-panel-careers .quote-panel-points,
.quote-panel-careers .quote-panel-foot {
  display: none;
}

.quote-panel-service .panel-chips,
.quote-panel-services .panel-chips,
.quote-panel-states .panel-chips {
  margin-bottom: 12px;
}

.quote-panel-service .quote-panel-sub,
.quote-panel-services .quote-panel-sub,
.quote-panel-states .quote-panel-sub {
  margin-bottom: 16px;
}

.service-hero-layout-compact .section-head p {
  margin-bottom: 28px;
}

.service-hero-layout-compact .hero-cta-row {
  margin-bottom: 0;
}

.service-hero-layout-compact .quote-panel-service {
  align-self: start;
}

.quote-panel-location .panel-chips {
  margin-bottom: 12px;
}

.quote-panel-location .quote-panel-points,
.quote-panel-location .quote-panel-foot {
  display: none;
}

.quote-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 110px;
  height: 3px;
  border-radius: var(--radius) 0 0 0;
  background: var(--orange);
}

.quote-panel-location {
  background:
    linear-gradient(180deg, rgba(251, 241, 228, 0.75) 0%, rgba(255, 255, 255, 1) 34%),
    var(--white);
  border: 1px solid rgba(234, 136, 37, 0.22);
}

.quote-panel h3 {
  margin-bottom: 8px;
  font-size: 23px;
}

.quote-panel-sub {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  max-width: none;
}

.panel-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.panel-chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid rgba(234, 136, 37, 0.24);
  border-radius: 999px;
  background: var(--orange-soft);
  color: var(--orange-dark);
  font-family: "Raleway", Arial, Helvetica, sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.field {
  margin-bottom: 16px;
}

.field label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-family: "Raleway", Arial, Helvetica, sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  outline: none;
  background: var(--cream);
  color: var(--ink);
  font-family: "Source Sans 3", Arial, Helvetica, sans-serif;
  font-size: 16px;
}

.field input,
.field select {
  height: 52px;
  padding: 0 16px;
}

.field textarea {
  min-height: 170px;
  padding: 14px 16px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(234, 136, 37, 0.12);
}

.field-error {
  margin-top: 8px;
  color: #b94a1f;
  font-size: 13px;
  font-weight: 700;
}

.result {
  min-height: 28px;
  margin-top: 12px;
  color: var(--orange-dark);
  font-weight: 700;
}

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

.quote-panel-points div {
  position: relative;
  padding-left: 18px;
  color: var(--ink-soft);
  font-size: 14.5px;
}

.quote-panel-points div::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}

.quote-panel-foot {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.proof-band {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.88);
  padding: 26px 0;
}

.proof-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: center;
}

.proof-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  padding: 0 18px 0 0;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.proof-item:last-child {
  border-right: none;
}

section {
  padding: 120px 0;
}

.section-head {
  max-width: 820px;
  margin-bottom: 64px;
}

.section-head.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head h2 {
  margin-bottom: 20px;
  font-size: clamp(28px, 3.1vw, 42px);
  font-weight: 800;
  line-height: 1.08;
}

.section-head p {
  max-width: 720px;
  color: var(--muted);
  font-size: 16.5px;
  line-height: 1.66;
}

.section-head.centered p {
  margin-left: auto;
  margin-right: auto;
}

.services-grid,
.guidance-cards,
.two-col-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.two-col-grid {
  grid-template-columns: repeat(2, 1fr);
}

.service-card,
.guidance-card,
.info-card {
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: all 0.25s ease;
  box-shadow: var(--shadow-sm);
}

.service-card:hover,
.guidance-card:hover,
.info-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-md);
}

.service-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  padding: 14px;
  background:
    linear-gradient(180deg, rgba(251, 241, 228, 0.92) 0%, rgba(255, 255, 255, 1) 100%);
  border-bottom: 1px solid var(--line);
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: calc(var(--radius) - 4px);
  box-shadow: 0 12px 28px rgba(15, 17, 21, 0.08);
  transition: transform 0.3s ease;
}

.service-card:hover .service-img img {
  transform: scale(1.02);
}

.service-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 12px;
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
  font-family: "Raleway", Arial, Helvetica, sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-body,
.guidance-card,
.info-card {
  padding: 30px;
}

.service-body h3,
.guidance-card h3,
.info-card h3,
.faq-item h3,
.testimonial-card h3 {
  margin-bottom: 14px;
  font-size: 21px;
}

.service-body p,
.guidance-card p,
.info-card p,
.faq-item p,
.testimonial-card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.service-list,
.footer-links,
.link-list {
  list-style: none;
}

.service-list li,
.link-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 0;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 14.5px;
}

.service-list li::before,
.link-list li::before {
  content: "";
  width: 5px;
  height: 5px;
  flex: 0 0 auto;
  margin-top: 10px;
  border-radius: 50%;
  background: var(--orange);
}

.text-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--orange-dark);
  font-family: "Raleway", Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.guidance-section,
.finance-section,
.testimonials-section,
.faq-section {
  background: var(--white);
}

.quote-learn-section,
.state-overview-section {
  background: var(--cream);
}

.guidance-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.guidance-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: start;
}

.section-actions {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.process-card {
  min-height: 100%;
  padding: 34px 30px 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.process-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--orange) 0%, rgba(234, 136, 37, 0.25) 100%);
}

.process-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: var(--radius-sm);
  background: var(--orange-soft);
  color: var(--orange-dark);
  font-family: "Raleway", Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 800;
}

.process-card h3 {
  margin-bottom: 14px;
  font-size: 22px;
}

.process-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.guidance-card-num {
  margin-bottom: 12px;
  color: var(--orange);
  font-family: "Raleway", Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.state-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.state-overview-card {
  display: block;
  padding: 32px 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: all 0.25s ease;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.state-overview-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 86px;
  height: 3px;
  background: var(--orange);
}

.state-overview-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-md);
}

.state-overview-card h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.state-overview-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.calculator-card {
  position: relative;
  overflow: hidden;
  padding: 48px;
  border-radius: var(--radius);
  background: var(--black);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.calculator-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 150px;
  height: 3px;
  background: var(--orange);
}

.calc-eyebrow {
  margin-bottom: 20px;
  color: var(--orange);
  font-family: "Raleway", Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.calculator-card h3 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 27px;
  line-height: 1.18;
}

.calculator-card p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
}

.calculator-card form {
  margin-top: 34px;
}

.calc-field {
  margin-bottom: 20px;
}

.calc-field label {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.62);
  font-family: "Raleway", Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.calc-input-wrap {
  position: relative;
}

.calc-input-wrap span {
  position: absolute;
  top: 50%;
  left: 20px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 22px;
  transform: translateY(-50%);
}

.calc-input-wrap input {
  width: 100%;
  height: 68px;
  padding: 0 20px 0 50px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-sm);
  outline: none;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font-family: "Source Sans 3", Arial, Helvetica, sans-serif;
  font-size: 20px;
}

.calc-input-wrap input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(234, 136, 37, 0.14);
}

.calculator-card .btn {
  min-height: 64px;
  margin-top: 2px;
  font-size: 16px;
}

.calc-result {
  min-height: 30px;
  margin-top: 22px;
  color: var(--white);
  font-family: "Raleway", Arial, Helvetica, sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
}

.calc-result.is-pending {
  color: rgba(255, 255, 255, 0.82);
}

.calc-result.is-success {
  color: #7ce3a1;
}

.calc-result.is-error {
  color: #ffb3a7;
}

.calc-disclaimer {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
}

.trust-section {
  background: var(--cream);
}

.trust-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 88px;
  align-items: flex-start;
}

.trust-image {
  position: sticky;
  top: 110px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.trust-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.trust-image-caption {
  padding: 20px 24px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 14px;
}

.trust-list {
  display: flex;
  flex-direction: column;
}

.trust-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 22px;
  padding: 26px 0;
  border-top: 1px solid var(--line);
}

.trust-item:last-child {
  border-bottom: 1px solid var(--line);
}

.trust-item-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
  background: var(--orange-soft);
  color: var(--orange-dark);
  font-family: "Raleway", Arial, Helvetica, sans-serif;
  font-weight: 800;
}

.trust-item h3 {
  margin-bottom: 8px;
  font-size: 17px;
}

.trust-item p {
  color: var(--muted);
  font-size: 15px;
}

.trust-callout {
  margin-top: 32px;
  padding: 26px 28px;
  border-radius: var(--radius);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
}

.trust-callout strong {
  color: var(--white);
}

.team-grid,
.mention-grid,
.contact-grid {
  display: grid;
  gap: 26px;
}

.team-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

.team-card {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 22px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  padding: 24px;
}

.team-card img {
  width: 108px;
  height: 108px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid var(--line);
}

.team-card-body {
  padding: 0;
}

.team-role {
  margin-bottom: 10px;
  color: var(--orange-dark);
  font-family: "Raleway", Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mention-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: flex-start;
}

.mention-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink);
  font-family: "Raleway", Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  white-space: nowrap;
}

.mention-pill:hover {
  border-color: rgba(234, 136, 37, 0.4);
  color: var(--orange-dark);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 34px;
  align-items: start;
}

.contact-form-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.contact-sidebar {
  display: grid;
  gap: 24px;
}

.contact-grid {
  grid-template-columns: 1fr 1fr;
}

.contact-notice {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-weight: 700;
}

.contact-notice-success {
  background: rgba(39, 174, 96, 0.12);
  color: #196c42;
}

.contact-notice-error {
  background: rgba(185, 74, 31, 0.12);
  color: #8f3917;
}

.hours-list {
  display: grid;
  gap: 10px;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
}

.hours-list li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.hours-list strong {
  color: var(--ink);
  font-size: 14.5px;
}

.legal-stack {
  display: grid;
  gap: 24px;
  max-width: 980px;
}

.legal-card {
  padding: 30px;
}

.legal-card h2 {
  margin-bottom: 16px;
  font-size: 26px;
}

.legal-card p + p {
  margin-top: 14px;
}

.service-detail-band {
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.calculator-section {
  background: var(--cream);
}

.faq-list {
  display: grid;
  gap: 16px;
  max-width: 980px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.final-cta {
  padding: 0;
  background: var(--black);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 26px 30px;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  font-family: "Raleway", Arial, Helvetica, sans-serif;
  font-size: 19px;
  font-weight: 700;
  cursor: pointer;
}

.faq-icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background: var(--orange);
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease;
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.22s ease;
}

.faq-answer-inner {
  overflow: hidden;
}

.faq-answer-inner p {
  padding: 0 30px 28px;
  color: var(--muted);
  font-size: 15.5px;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.open .faq-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.final-cta-container {
  max-width: 100%;
  padding: 0;
}

.final-cta-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 42px;
  align-items: end;
  padding: 86px max(32px, calc((100vw - 1280px) / 2 + 32px));
  background:
    linear-gradient(95deg, rgba(11, 12, 14, 0.96) 0%, rgba(11, 12, 14, 0.9) 64%, rgba(11, 12, 14, 0.84) 100%),
    url("/images/bg-image-1.webp") center / cover no-repeat;
}

.final-cta-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange) 22%, transparent 22%);
}

.final-cta-copy .eyebrow,
.final-cta-copy h2,
.final-cta-copy p {
  position: relative;
  z-index: 1;
}

.final-cta-copy h2 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.1;
}

.final-cta-copy p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
}

.final-cta-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.testimonial-card p {
  font-size: 16px;
}

.areas-directory-section {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.areas-directory {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.area-pill {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--cream);
  color: var(--ink-soft);
  font-family: "Raleway", Arial, Helvetica, sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  transition: all 0.2s ease;
}

.area-pill:hover {
  border-color: rgba(234, 136, 37, 0.45);
  background: var(--orange-soft);
  color: var(--orange-dark);
}

.footer {
  padding: 70px 0 28px;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.74);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 44px;
}

.footer img {
  width: 128px;
  height: auto;
  margin-bottom: 18px;
}

.footer-social {
  margin: 24px 0 6px;
}

.footer-social a {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
}

.footer-social a:hover {
  background: rgba(234, 136, 37, 0.16);
  border-color: rgba(234, 136, 37, 0.4);
  color: var(--white);
}

.footer p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14.5px;
}

.footer h4 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 15px;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14.5px;
}

.footer-links a:hover {
  color: var(--orange);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-bottom-links a:hover {
  color: var(--orange);
}

.footer-separator {
  padding: 0 8px;
  color: rgba(255, 255, 255, 0.32);
}

@media (max-width: 1050px) {
  .nav,
  .phone-link {
    display: none;
  }

  .mobile-toggle {
    display: inline-block;
  }

  .hero-inner,
  .service-hero-layout,
  .trust-layout,
  .contact-layout,
  .guidance-layout,
  .state-overview-grid,
  .services-grid,
  .guidance-cards,
  .proof-inner,
  .footer-grid,
  .two-col-grid,
  .team-grid,
  .mention-grid {
    grid-template-columns: 1fr;
  }

  .process-grid,
  .final-cta-card {
    grid-template-columns: 1fr 1fr;
  }

  .trust-image {
    position: static;
  }

  .service-hero-layout {
    gap: 28px;
  }

  .team-card {
    grid-template-columns: 88px 1fr;
    gap: 18px;
    padding: 20px;
  }

  .team-card img {
    width: 88px;
    height: 88px;
  }

}

@media (max-width: 680px) {
  .container {
    padding: 0 18px;
  }

  .header-inner {
    min-height: 70px;
  }

  .hero {
    padding: 58px 0 82px;
  }

  .simple-hero {
    padding: 56px 0 64px;
  }

  .hero-meta {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-meta-item:last-child {
    grid-column: auto;
    max-width: none;
  }

  .hero h1,
  .simple-hero h1 {
    font-size: 34px;
  }

  section {
    padding: 72px 0;
  }

  .proof-item {
    grid-template-columns: 42px 1fr;
    padding-bottom: 16px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .calculator-card,
  .quote-panel,
  .final-cta-card {
    padding: 28px 22px;
  }

  .service-body,
  .guidance-card,
  .info-card {
    padding: 26px 22px;
  }

  .faq-question {
    padding: 22px 22px;
    font-size: 18px;
  }

  .faq-answer-inner p {
    padding: 0 22px 24px;
  }

  .process-grid,
  .final-cta-card {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    display: block;
  }
}
