:root {
  --bg: #0f172a;
  --bg-alt: #0b1220;
  --bg-soft: #111827;
  --accent: #38bdf8;
  --accent-strong: #0ea5e9;
  --text: #e5e7eb;
  --muted: #9ca3af;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.7);
  --shadow-subtle: 0 10px 25px rgba(15, 23, 42, 0.6);
  --max-width: 1100px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #1e293b 0, #020617 55%);
  color: var(--text);
}

body {
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(56, 189, 248, 0.06), transparent 28%),
    radial-gradient(circle at 80% 10%, rgba(125, 211, 252, 0.08), transparent 22%);
  opacity: 0.9;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 4rem 0;
  position: relative;
}

.section-alt {
  background: linear-gradient(to bottom, rgba(15, 23, 42, 0.8), #020617);
}

.section-highlight {
  background: radial-gradient(circle at top, #0f172a, #020617);
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.section-intro {
  max-width: 650px;
  color: var(--muted);
  margin-bottom: 2rem;
  font-size: 1.02rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(2, 6, 23, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
}

.logo {
  display: inline-block;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.9rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s ease;
}

.logo:hover {
  color: var(--text);
}

.nav {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.nav-toggle {
  display: none;
  width: 2.85rem;
  height: 2.85rem;
  padding: 0;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.88);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.28rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.1rem;
  height: 2px;
  border-radius: 999px;
  background: #dbeafe;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 0.35rem 0.5rem;
  border-radius: 999px;
  transition: color 0.15s ease, background 0.15s ease;
}

.nav a:hover {
  color: var(--text);
  background: rgba(148, 163, 184, 0.12);
}

.nav a.btn,
.nav a.btn-small {
  color: #f8fbff;
}

.hero {
  padding: 4.5rem 0 3.5rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(0, 1.4fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(125, 211, 252, 0.2);
  color: #8edcff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-text h1 {
  font-size: 2.7rem;
  line-height: 1.08;
  margin-bottom: 1rem;
  max-width: 11ch;
}

.hero-text p {
  color: var(--muted);
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  margin: 1.5rem 0 0.75rem;
}

.hero-subtext {
  font-size: 0.9rem;
}

.hero-card {
  background: radial-gradient(circle at top left, #1f2937, #020617);
  border-radius: var(--radius-lg);
  padding: 1.7rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.2);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, rgba(56, 189, 248, 0.9), rgba(14, 165, 233, 0.1));
}

.hero-card h2 {
  font-size: 1.1rem;
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.hero-card ul {
  list-style: disc;
  padding-left: 1.2rem;
  margin: 0 0 1rem;
}

.hero-card li {
  font-size: 0.9rem;
  padding: 0.25rem 0;
  color: #d8e1ec;
}

.hero-card-note {
  font-size: 0.85rem;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  border: 1px solid var(--accent-strong);
  background: linear-gradient(to right, #38bdf8, var(--accent-strong));
  color: #f8fbff;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.1s ease, box-shadow 0.1s ease, background 0.15s ease;
  box-shadow: 0 12px 30px rgba(56, 189, 248, 0.35);
  text-shadow: 0 1px 2px rgba(2, 6, 23, 0.45);
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(56, 189, 248, 0.45);
}

.btn-outline {
  background: transparent;
  color: #38bdf8;
  border-color: rgba(148, 163, 184, 0.5);
  box-shadow: none;
}

.btn-outline:hover {
  background: rgba(15, 23, 42, 0.9);
  box-shadow: var(--shadow-subtle);
}

.btn-small {
  padding: 0.4rem 0.9rem;
  font-size: 0.8rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.card {
  background: rgba(15, 23, 42, 0.9);
  border-radius: var(--radius-lg);
  padding: 1.35rem;
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: var(--shadow-subtle);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.card:hover {
  transform: translateY(-3px);
  border-color: rgba(125, 211, 252, 0.28);
  box-shadow: 0 18px 36px rgba(2, 6, 23, 0.45);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.card p {
  font-size: 0.9rem;
  color: var(--muted);
}

.card ul {
  margin: 0.75rem 0 0;
  padding-left: 1.1rem;
  font-size: 0.9rem;
}

.pricing-card {
  position: relative;
}

.pricing-card-featured {
  border-color: #38bdf8;
  box-shadow: 0 18px 45px rgba(56, 189, 248, 0.35);
  padding-top: 3.15rem;
  background:
    linear-gradient(180deg, rgba(20, 35, 55, 0.96), rgba(8, 15, 31, 0.96)),
    rgba(15, 23, 42, 0.92);
}

.pricing-card-featured::before {
  content: "Most Requested";
  position: absolute;
  top: 0.9rem;
  left: 1.25rem;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.14);
  border: 1px solid rgba(56, 189, 248, 0.26);
  color: #b9ebff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0.25rem 0 0.75rem;
}

.note {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.75rem;
}

.tag {
  margin-top: 1rem;
  display: inline-block;
  color: #dbeafe;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.18);
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
}

.center {
  text-align: center;
}

.trust-strip {
  padding: 0 0 1.25rem;
}

.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.trust-item {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(10, 18, 33, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.14);
  box-shadow: var(--shadow-subtle);
}

.trust-label {
  display: block;
  margin-bottom: 0.25rem;
  color: #aee7ff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.trust-value {
  color: #d7e0eb;
  font-size: 0.92rem;
}

.section-action {
  margin-top: 1.25rem;
  display: flex;
  justify-content: center;
}

.records-band {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 1.25rem;
  align-items: center;
  margin-top: 1.8rem;
  padding: 1.35rem 1.4rem;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(56, 189, 248, 0.1), rgba(15, 23, 42, 0.9) 32%),
    rgba(15, 23, 42, 0.92);
  border: 1px solid rgba(125, 211, 252, 0.14);
}

.records-band-copy h3 {
  margin: 0 0 0.45rem;
}

.records-band-copy p {
  margin: 0;
  color: var(--muted);
}

.records-pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.records-pill {
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.1);
  border: 1px solid rgba(148, 163, 184, 0.14);
  color: #e7edf5;
  font-size: 0.85rem;
}

.comparison-panel {
  display: grid;
  gap: 1.25rem;
}

.comparison-copy {
  max-width: 760px;
}

.comparison-kicker {
  margin: 0 0 0.45rem;
  color: #8edcff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.comparison-copy h2 {
  margin: 0 0 0.7rem;
}

.comparison-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.comparison-card {
  padding: 1.25rem;
  border-radius: 20px;
  border: 1px solid rgba(148, 163, 184, 0.16);
}

.comparison-card h3 {
  margin-top: 0;
}

.comparison-card ul {
  margin: 0;
  padding-left: 1.1rem;
}

.comparison-card li + li {
  margin-top: 0.45rem;
}

.comparison-card-muted {
  background: rgba(15, 23, 42, 0.72);
}

.comparison-card-muted li {
  color: #c3cfdb;
}

.comparison-card-strong {
  background:
    linear-gradient(135deg, rgba(56, 189, 248, 0.12), rgba(15, 23, 42, 0.96) 34%),
    rgba(15, 23, 42, 0.92);
  border-color: rgba(56, 189, 248, 0.25);
  box-shadow: 0 18px 45px rgba(56, 189, 248, 0.14);
}

.comparison-card-strong li {
  color: #e6f7ff;
}

.pricing-banner {
  display: inline-block;
  margin: -0.25rem 0 1.4rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(74, 222, 128, 0.12);
  border: 1px solid rgba(74, 222, 128, 0.2);
  color: #c8f7d7;
  font-size: 0.88rem;
}

.policy-box {
  margin-top: 2rem;
  padding: 1.4rem;
  background: rgba(15, 23, 42, 0.78);
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-subtle);
}

.policy-box h3 {
  margin-top: 0;
}

.policy-box p:last-child {
  margin-bottom: 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.step {
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  background: rgba(15, 23, 42, 0.82);
  border: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow: var(--shadow-subtle);
  position: relative;
  overflow: hidden;
}

.step::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: linear-gradient(to right, rgba(56, 189, 248, 0.5), transparent 75%);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.85rem;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.16);
  border: 1px solid rgba(56, 189, 248, 0.35);
  color: #38bdf8;
  font-weight: 700;
}

.step h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.step p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.faq {
  display: grid;
  gap: 1rem;
}

.faq-item {
  padding: 0.35rem 1.25rem;
  border-radius: var(--radius-lg);
  background: rgba(15, 23, 42, 0.82);
  border: 1px solid rgba(148, 163, 184, 0.16);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.faq-question span:first-child {
  font-size: 1rem;
  line-height: 1.4;
}

.faq-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.18);
  color: #b9ebff;
  font-size: 1.2rem;
  font-weight: 600;
  flex-shrink: 0;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: rgba(56, 189, 248, 0.16);
  border-color: rgba(56, 189, 248, 0.28);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease, padding-bottom 0.25s ease;
}

.faq-item.active .faq-answer {
  max-height: 320px;
  padding-bottom: 1rem;
}

.faq-answer p {
  margin: 0;
  color: var(--muted);
}

.states-preview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.state-preview-card {
  padding: 1rem 1.05rem;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.78);
  border: 1px solid rgba(148, 163, 184, 0.16);
}

.state-preview-eyebrow {
  display: inline-block;
  margin-bottom: 0.35rem;
  color: #8edcff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.state-preview-card h3 {
  margin: 0 0 0.35rem;
}

.state-preview-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.form {
  padding: 1.6rem;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(17, 24, 39, 0.98), rgba(8, 15, 31, 0.98)),
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.14), transparent 38%);
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 22px 50px rgba(2, 6, 23, 0.5);
}

.intake-note {
  margin-bottom: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(125, 211, 252, 0.16);
  color: #d8eefb;
  font-size: 0.94rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.2rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: inline-block;
  margin-bottom: 0.45rem;
  font-weight: 600;
}

.field-help {
  margin: 0.45rem 0 0;
  color: #9eb0c3;
  font-size: 0.82rem;
  line-height: 1.5;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 0.95rem;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: rgba(15, 23, 42, 0.88);
  color: var(--text);
  font: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.form-group textarea {
  min-height: 11rem;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #7b8798;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(56, 189, 248, 0.58);
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.14);
  background: rgba(15, 23, 42, 0.96);
}

.state-advisory {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  margin: 0.35rem 0 1.35rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  border: 1px solid rgba(245, 158, 11, 0.28);
  background:
    linear-gradient(135deg, rgba(245, 158, 11, 0.16), rgba(15, 23, 42, 0.96) 30%),
    rgba(15, 23, 42, 0.96);
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.4);
}

.state-advisory.red {
  border-color: rgba(248, 113, 113, 0.32);
  background:
    linear-gradient(135deg, rgba(248, 113, 113, 0.18), rgba(15, 23, 42, 0.96) 30%),
    rgba(15, 23, 42, 0.96);
}

.state-advisory.yellow {
  border-color: rgba(250, 204, 21, 0.34);
  background:
    linear-gradient(135deg, rgba(250, 204, 21, 0.18), rgba(15, 23, 42, 0.96) 30%),
    rgba(15, 23, 42, 0.96);
}

.advisory-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 14px;
  background: rgba(245, 158, 11, 0.16);
  border: 1px solid rgba(245, 158, 11, 0.35);
  color: #fbbf24;
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1;
}

.state-advisory.red .advisory-badge {
  background: rgba(248, 113, 113, 0.15);
  border-color: rgba(248, 113, 113, 0.35);
  color: #fca5a5;
}

.state-advisory.yellow .advisory-badge {
  background: rgba(250, 204, 21, 0.15);
  border-color: rgba(250, 204, 21, 0.35);
  color: #fde047;
}

.advisory-copy {
  min-width: 0;
}

.advisory-eyebrow {
  margin-bottom: 0.2rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f8d27a;
}

.advisory-title {
  margin: 0 0 0.3rem;
  font-size: 1rem;
  line-height: 1.25;
}

.advisory-body {
  margin: 0;
  color: #d6dde7;
  font-size: 0.95rem;
  line-height: 1.65;
}

.form-message {
  min-height: 1.5rem;
  margin: 1rem 0 0;
  color: var(--muted);
}

.hidden {
  display: none;
}

.site-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(2, 6, 23, 0.9);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 0 1.8rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-inner p {
  margin: 0;
}

.footer-link {
  margin-left: 0.5rem;
  color: #8edcff;
  text-decoration: none;
}

.footer-link:hover {
  color: #dff6ff;
}

.page-hero {
  padding: 4.25rem 0 2.25rem;
}

.page-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.9fr) minmax(280px, 0.9fr);
  gap: 1.5rem;
  align-items: end;
}

.page-kicker {
  margin: 0 0 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  color: #7dd3fc;
}

.page-hero h1 {
  margin: 0 0 0.9rem;
  font-size: 2.5rem;
  line-height: 1.1;
}

.page-hero p {
  margin: 0;
  color: var(--muted);
  max-width: 760px;
}

.page-summary {
  padding: 1.1rem 1.2rem;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.88);
  border: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow: var(--shadow-subtle);
}

.page-summary h2 {
  margin: 0 0 0.45rem;
  font-size: 1rem;
}

.page-summary p {
  font-size: 0.92rem;
}

.state-jump-section {
  padding: 0 0 1.75rem;
}

.state-jump-card {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.84);
  border: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow: var(--shadow-subtle);
}

.state-jump-label {
  font-weight: 700;
  color: #dbeafe;
  white-space: nowrap;
}

.state-jump-select {
  min-width: 260px;
  padding: 0.85rem 0.95rem;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: rgba(8, 15, 31, 0.92);
  color: var(--text);
  font: inherit;
}

.state-jump-select:focus {
  outline: none;
  border-color: rgba(56, 189, 248, 0.58);
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.14);
}

.alpha-section {
  padding-top: 1rem;
}

.alpha-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}

.alpha-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3rem;
  height: 3rem;
  padding: 0 0.8rem;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.24);
  color: #7dd3fc;
  font-weight: 700;
}

.alpha-title {
  margin: 0;
  font-size: 1.4rem;
}

.state-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.state-card {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.94), rgba(8, 15, 31, 0.94));
  border-radius: 18px;
  padding: 1.25rem;
  border: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow: var(--shadow-subtle);
}

.state-card h3 {
  margin: 0 0 0.15rem;
  font-size: 1.15rem;
}

.state-law {
  margin: 0 0 0.85rem;
  color: #7dd3fc;
  font-size: 0.9rem;
}

.state-law a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(125, 211, 252, 0.35);
  transition: color 0.15s ease, border-color 0.15s ease;
}

.state-law a:hover {
  color: #d9f3ff;
  border-color: rgba(217, 243, 255, 0.75);
}

.state-guide-page .state-law a {
  pointer-events: none;
  cursor: default;
  border-bottom: none;
}

.state-guide-page .state-law a:hover {
  color: inherit;
  border-color: transparent;
}

.state-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: #d8e1ec;
}

.state-card li + li {
  margin-top: 0.3rem;
}

.contact-hero {
  padding-bottom: 1.5rem;
}

.contact-summary {
  background:
    linear-gradient(180deg, rgba(17, 24, 39, 0.98), rgba(8, 15, 31, 0.98)),
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.12), transparent 38%);
}

.contact-summary-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.contact-section {
  padding-top: 1.5rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.2fr);
  gap: 1.5rem;
  align-items: start;
}

.contact-panel,
.contact-form-card {
  position: relative;
  overflow: hidden;
}

.contact-panel::before,
.contact-form-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, rgba(56, 189, 248, 0.9), rgba(14, 165, 233, 0.08));
}

.contact-panel {
  padding: 1.6rem;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(17, 24, 39, 0.96), rgba(8, 15, 31, 0.98)),
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.1), transparent 40%);
  border: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow: var(--shadow-subtle);
}

.contact-panel h2,
.contact-form-header h2 {
  margin: 0 0 0.7rem;
}

.contact-panel .section-intro {
  margin-bottom: 1.4rem;
}

.contact-checklist {
  display: grid;
  gap: 0.95rem;
}

.contact-checklist-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  padding: 1rem 1.05rem;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.66);
  border: 1px solid rgba(148, 163, 184, 0.14);
}

.contact-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.45rem;
  height: 2.45rem;
  border-radius: 16px;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.25);
  color: #bcecff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.contact-checklist-item h3 {
  margin: 0 0 0.3rem;
  font-size: 1rem;
}

.contact-checklist-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-form-card {
  padding-top: 2rem;
}

.contact-form-header {
  margin-bottom: 1.2rem;
}

.form-lead {
  margin: 0;
  color: var(--muted);
}

.contact-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.9rem;
  margin-top: 0.4rem;
}

.contact-actions .btn[disabled] {
  opacity: 0.75;
  cursor: wait;
}

.contact-status {
  min-height: 1.5rem;
}


@media (max-width: 960px) {
  .hero-inner,
  .grid-3,
  .steps,
  .page-hero-inner,
  .state-grid,
  .trust-strip-inner,
  .records-band,
  .states-preview,
  .comparison-grid,
  .contact-layout
  {
    grid-template-columns: 1fr;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .footer-inner {
    flex-direction: column;
  }

}

@media (max-width: 720px) {
  .section {
    padding: 3.2rem 0;
  }

  .hero {
    padding-top: 3.5rem;
  }

  .hero-text h1,
  .section h2 {
    font-size: 1.9rem;
  }

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

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .header-inner {
    position: relative;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    display: none;
    position: absolute;
    top: calc(100% + 0.7rem);
    right: 0;
    left: 0;
    z-index: 30;
    padding: 0.85rem;
    border-radius: 18px;
    background: rgba(6, 12, 24, 0.98);
    border: 1px solid rgba(148, 163, 184, 0.16);
    box-shadow: 0 18px 42px rgba(2, 6, 23, 0.45);
    flex-direction: column;
    align-items: stretch;
    gap: 0.4rem;
  }

  .nav-open .nav {
    display: flex;
  }

  .nav a {
    text-align: left;
    padding: 0.7rem 0.8rem;
  }

  .nav a.btn,
  .nav a.btn-small {
    margin-top: 0.35rem;
    justify-content: center;
    text-align: center;
  }

  .state-jump-card {
    flex-direction: column;
    align-items: stretch;
  }

  .state-jump-select {
    min-width: 0;
    width: 100%;
  }

  .state-advisory {
    grid-template-columns: 1fr;
  }

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