:root {
  --ink: #10213d;
  --muted: #5f6f85;
  --navy: #09233e;
  --blue: #155a88;
  --teal: #0f8a97;
  --gold: #f2b84b;
  --gold-dark: #cf8e18;
  --paper: #ffffff;
  --soft: #eef5f8;
  --line: #dce6ec;
  --shadow: 0 24px 70px rgba(14, 38, 63, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #f6fafc;
}
body.nav-open {
  overflow: hidden;
}
a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  margin: 16px auto 0;
  padding: 16px 20px;
  background: rgba(255,255,255,.94);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(12,32,54,.08);
  backdrop-filter: blur(12px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
}
.brand-mark {
  display: none;
}
.brand-lockup {
  display: grid;
  grid-template-columns: auto auto;
  align-items: baseline;
  column-gap: 8px;
  row-gap: 0;
}
.brand-primary {
  color: #5e6d7f;
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.brand-by {
  color: #69778a;
  font-size: 12px;
  font-weight: 800;
  text-transform: lowercase;
}
.brand-parent {
  grid-column: 1 / -1;
  color: #040b8f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
  line-height: .92;
  font-weight: 800;
  letter-spacing: -.04em;
  text-transform: uppercase;
}
.brand small {
  grid-column: 1 / -1;
  display: block;
  color: var(--muted);
  font-size: 11px;
  margin-top: 4px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #33445a;
  font-weight: 750;
  font-size: 14px;
}
.desktop-nav a { text-decoration: none; }
.desktop-nav a:hover { color: var(--blue); }
.phone-link {
  text-decoration: none;
  font-weight: 900;
  color: var(--navy);
  white-space: nowrap;
}
.mobile-header-actions,
.mobile-menu-panel,
.mobile-menu-backdrop {
  display: none;
}
.mobile-menu-toggle,
.mobile-call-link,
.mobile-menu-close {
  appearance: none;
  border: 0;
  font: inherit;
}

@media (min-width: 901px) {
  .mobile-header-actions,
  .mobile-menu-panel,
  .mobile-menu-backdrop {
    display: none !important;
  }
}

.hero {
  width: min(1180px, calc(100% - 32px));
  margin: 18px auto 0;
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) 430px;
  gap: 36px;
  align-items: center;
  padding: 72px 56px;
  color: #fff;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(9,35,62,.98) 0%, rgba(9,35,62,.92) 48%, rgba(9,35,62,.68) 100%),
    url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&w=1600&q=82") center/cover;
  box-shadow: var(--shadow);
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
  font-size: 13px;
}
.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(44px, 6vw, 78px);
  line-height: .93;
  letter-spacing: -.035em;
}
.hero-text {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255,255,255,.86);
  font-size: 21px;
  line-height: 1.45;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}
.btn-primary {
  color: #10213d;
  background: linear-gradient(180deg, #ffd36b, var(--gold));
  box-shadow: inset 0 -2px 0 rgba(151,90,0,.2), 0 14px 34px rgba(242,184,75,.24);
}
.btn-secondary {
  color: #fff;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.28);
}
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}
.trust-strip li {
  padding: 9px 12px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 8px;
  background: rgba(255,255,255,.11);
  color: rgba(255,255,255,.88);
  font-weight: 800;
  font-size: 13px;
}

.hero-card {
  color: var(--ink);
  background: rgba(255,255,255,.98);
  border-radius: 8px;
  padding: 28px;
  box-shadow: 0 24px 80px rgba(0,0,0,.24);
}
.form-top {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 900;
}
.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #32c787;
  box-shadow: 0 0 0 5px rgba(50,199,135,.14);
}
.hero-card h2 { margin: 12px 0 18px; font-size: 30px; line-height: 1.05; letter-spacing: -.02em; }
.lead-form,
.application-form {
  display: grid;
  gap: 14px;
}
label {
  display: grid;
  gap: 7px;
  font-weight: 850;
  font-size: 13px;
  color: #263850;
}
input, select, textarea {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid #cbd9e3;
  border-radius: 8px;
  background: #f8fbfd;
  color: var(--ink);
  font: inherit;
}
textarea { padding-top: 12px; resize: vertical; }
.fine-print {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}
.form-success {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgba(50,199,135,.35);
  border-radius: 8px;
  background: rgba(50,199,135,.1);
  color: #156143;
  font-weight: 850;
  line-height: 1.35;
}

.proof-band {
  width: min(1180px, calc(100% - 32px));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 22px auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: 0 16px 40px rgba(11,31,55,.06);
}
.proof-band div {
  padding: 22px;
  background: #fff;
}
.proof-band strong { display: block; font-size: 18px; }
.proof-band span { color: var(--muted); font-weight: 700; }

.notice-section,
.attorney-section {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 32px;
  align-items: center;
}
.notice-section {
  background: linear-gradient(135deg, #fffaf0, #ffffff) !important;
}
.notice-section p:last-child,
.attorney-section p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
  font-weight: 700;
}

section:not(.hero):not(.proof-band) {
  width: min(1180px, calc(100% - 32px));
  margin: 22px auto;
  padding: 58px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(11,31,55,.06);
}
.split-section {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 42px;
  align-items: start;
}
h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.02;
  letter-spacing: -.03em;
}
.split-section p,
.section-heading p,
.image-feature p,
.cta-section p {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
}
.steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.steps article,
.case-grid article,
.quote-card,
.apply-note,
.sidebar-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f9fcfd;
}
.steps article { padding: 22px; }
.steps span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 16px;
  border-radius: 8px;
  color: #fff;
  font-weight: 900;
  background: var(--blue);
}
h3 { margin: 0 0 8px; font-size: 22px; letter-spacing: -.01em; }
.steps p, .case-grid p { margin: 0; color: var(--muted); line-height: 1.5; }

.image-feature {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 38px;
  align-items: center;
}
.image-feature img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(12,32,54,.12);
}
.use-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 20px;
}
.use-grid span {
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  font-weight: 900;
}
.section-heading {
  max-width: 830px;
  margin-bottom: 30px;
}
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.case-grid article { padding: 24px; }
.testimonial-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.quote-card {
  padding: 30px;
  border-color: #cfdfe8;
}
.quote-card p {
  margin: 0 0 18px;
  font-size: 22px;
  line-height: 1.4;
  letter-spacing: -.01em;
}
.quote-card strong { color: var(--blue); }
.faq-list {
  display: grid;
  gap: 10px;
}
details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfe;
  padding: 18px 20px;
}
summary {
  cursor: pointer;
  font-weight: 900;
  font-size: 18px;
}
details p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.55;
}
.cta-section {
  text-align: center;
  background: linear-gradient(135deg, #09233e, #155a88) !important;
  color: #fff;
}
.cta-section p { color: rgba(255,255,255,.82); }

.apply-hero {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: end;
  gap: 28px;
  background: linear-gradient(135deg, #09233e, #155a88) !important;
  color: #fff;
}
.apply-hero h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(42px, 6vw, 70px);
  line-height: .96;
  letter-spacing: -.035em;
}
.apply-hero p { color: rgba(255,255,255,.84); font-size: 20px; line-height: 1.5; }
.apply-note {
  padding: 24px;
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.22);
}
.apply-note strong { display: block; font-size: 22px; margin-bottom: 8px; }
.apply-note span { color: rgba(255,255,255,.8); line-height: 1.45; }
.apply-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  align-items: start;
}

.page-hero {
  background: linear-gradient(135deg, #09233e, #155a88) !important;
  color: #fff;
}
.page-hero h1 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(42px, 6vw, 72px);
  line-height: .96;
  letter-spacing: -.035em;
}
.page-hero p {
  max-width: 860px;
  color: rgba(255,255,255,.84);
  font-size: 21px;
  line-height: 1.5;
}
.content-section p,
.content-section li {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}
.content-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 24px;
}
.content-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f9fcfd;
}
.content-card p { margin-bottom: 0; }
.content-card a { color: var(--ink); text-decoration-thickness: 2px; text-underline-offset: 4px; }
.guide-summary {
  background: linear-gradient(135deg, #ffffff, #f2f8fb) !important;
}
.checklist-grid,
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}
.checklist-grid div,
.comparison-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f9fcfd;
}
.checklist-grid strong {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 18px;
}
.checklist-grid span {
  display: block;
  color: var(--muted);
  line-height: 1.5;
  font-weight: 700;
}
.comparison-grid ul {
  margin: 12px 0 0;
  padding-left: 20px;
}
.comparison-grid li + li { margin-top: 7px; }
.link-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 22px;
}
.link-grid a {
  display: block;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
}
.link-grid a:hover {
  border-color: #b7ccd8;
  background: #fff;
}
.application-form {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfe;
}
.policy-page {
  width: min(960px, calc(100% - 32px));
  margin: 22px auto;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(14, 38, 63, .08);
}
.policy-page h1 {
  margin: 0;
  font-size: clamp(38px, 5vw, 58px);
  line-height: .98;
  letter-spacing: -.03em;
}
.policy-page h2 {
  margin: 34px 0 10px;
  font-size: 26px;
  line-height: 1.12;
  letter-spacing: -.02em;
}
.policy-page p,
.policy-page li {
  color: var(--muted);
  font-weight: 650;
  line-height: 1.65;
}
.policy-page ul {
  margin: 12px 0 0;
  padding-left: 22px;
}
.policy-note {
  margin-top: 22px;
  padding: 18px;
  border: 1px solid rgba(15, 138, 151, .24);
  border-radius: 8px;
  background: #eff9fa;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.checkbox-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.4;
}
.checkbox-line input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
}
.apply-sidebar {
  display: grid;
  gap: 16px;
}
.apply-sidebar h2 { font-size: 34px; }
.apply-sidebar ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 700;
}
.sidebar-card { padding: 22px; }
.sidebar-card p { color: var(--muted); }
.sidebar-card a { color: var(--blue); font-weight: 900; font-size: 20px; }

.site-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 22px auto 36px;
  display: grid;
  grid-template-columns: 1.1fr .9fr 1fr;
  gap: 28px;
  padding: 34px;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
}
.site-footer strong { font-size: 22px; }
.site-footer p { margin: 8px 0 0; color: rgba(255,255,255,.72); line-height: 1.5; }
.site-footer a { color: #fff; font-weight: 800; text-decoration: none; }
.footer-address {
  margin: 0;
  padding: 0;
  color: rgba(255,255,255,.78);
  font-style: normal;
  line-height: 1.55;
}
.footer-address span,
.footer-links span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.footer-address strong {
  display: block;
  color: #fff;
  font-size: 18px;
}
.footer-address a {
  display: inline-block;
  margin-top: 10px;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  align-content: start;
}
.footer-links span { grid-column: 1 / -1; }
.footer-links a {
  color: rgba(255,255,255,.88);
  font-size: 14px;
}
.footer-links a:hover,
.footer-address a:hover {
  color: var(--gold);
}
.disclaimer {
  grid-column: 1 / -1;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.14);
  font-size: 13px;
  line-height: 1.45;
}

@media (max-width: 900px) {
  .site-header {
    align-items: center;
    flex-wrap: nowrap;
    gap: 12px;
    width: 100%;
    margin: 0;
    padding: 10px 12px;
    border-width: 0 0 1px;
    border-radius: 0;
    box-shadow: 0 10px 32px rgba(12,32,54,.1);
  }
  .desktop-nav {
    display: none;
  }
  .phone-link {
    display: none;
  }
  .brand {
    min-width: 0;
    flex: 1 1 auto;
    gap: 8px;
  }
  .brand-lockup {
    display: block;
    max-width: 210px;
    overflow: hidden;
  }
  .brand-primary {
    display: block;
    color: var(--navy);
    font-size: 15px;
    line-height: 1.05;
    letter-spacing: 0;
  }
  .brand-by { display: none; }
  .brand-parent {
    display: block;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--blue);
    font-size: 10px;
    line-height: 1.1;
    margin-top: 2px;
    letter-spacing: .03em;
    white-space: nowrap;
  }
  .brand small {
    display: block;
    max-width: 100%;
    margin-top: 2px;
    font-size: 9px;
    letter-spacing: .06em;
    white-space: nowrap;
  }
  .mobile-header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
  }
  .mobile-call-link,
  .mobile-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 44px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 900;
  }
  .mobile-call-link {
    padding: 0 12px;
    color: #10213d;
    background: linear-gradient(180deg, #ffd36b, var(--gold));
    box-shadow: inset 0 -2px 0 rgba(151,90,0,.16);
  }
  .mobile-menu-toggle {
    flex-direction: column;
    gap: 5px;
    background: var(--navy);
    color: #fff;
    cursor: pointer;
  }
  .mobile-menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform .18s ease, opacity .18s ease;
  }
  .mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .mobile-menu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 28;
    background: rgba(9, 35, 62, .52);
    opacity: 0;
    pointer-events: none;
    transition: opacity .18s ease;
  }
  .mobile-menu-panel {
    position: fixed;
    top: 66px;
    left: 12px;
    right: 12px;
    z-index: 30;
    display: grid;
    gap: 14px;
    max-height: calc(100svh - 82px);
    overflow: auto;
    padding: 18px;
    color: var(--ink);
    background: #fff;
    border: 1px solid rgba(220,230,236,.95);
    border-radius: 8px;
    box-shadow: 0 28px 70px rgba(9,35,62,.28);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: transform .18s ease, opacity .18s ease;
  }
  body.nav-open .mobile-menu-backdrop,
  body.nav-open .mobile-menu-panel {
    opacity: 1;
    pointer-events: auto;
  }
  body.nav-open .mobile-menu-panel {
    transform: translateY(0);
  }
  .mobile-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--line);
  }
  .mobile-menu-head strong {
    display: block;
    font-size: 18px;
    line-height: 1.1;
  }
  .mobile-menu-head span {
    display: block;
    margin-top: 3px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 750;
  }
  .mobile-menu-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background: #edf4f8;
    color: var(--navy);
    cursor: pointer;
    font-size: 28px;
    line-height: 1;
  }
  .mobile-menu-links {
    display: grid;
    gap: 8px;
  }
  .mobile-menu-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-height: 48px;
    padding: 13px 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #f8fbfd;
    color: #1d3049;
    font-weight: 900;
    text-decoration: none;
  }
  .mobile-menu-links a::after {
    content: ">";
    color: var(--blue);
    font-weight: 900;
  }
  .mobile-menu-cta {
    display: grid;
    gap: 10px;
    padding-top: 2px;
  }
  .mobile-menu-cta .btn {
    width: 100%;
  }
  .mobile-menu-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    border-radius: 8px;
    background: #eef5f8;
    color: var(--navy);
    font-weight: 950;
    text-decoration: none;
  }
  .hero,
  .split-section,
  .image-feature,
  .notice-section,
  .attorney-section,
  .apply-hero,
  .apply-layout {
    grid-template-columns: 1fr;
  }
  .hero {
    width: 100%;
    margin-top: 0;
    min-height: auto;
    padding: 46px 22px;
    border-radius: 0 0 8px 8px;
  }
  .hero h1 { font-size: 48px; }
  .hero-text { font-size: 18px; }
  .hero-card { padding: 22px; }
  .proof-band,
  .case-grid,
  .testimonial-section,
  .steps,
  .form-row,
  .content-grid,
  .checklist-grid,
  .comparison-grid,
  .link-grid {
    grid-template-columns: 1fr;
  }
  section:not(.hero):not(.proof-band) {
    width: calc(100% - 24px);
    padding: 30px 20px;
  }
  .policy-page {
    width: calc(100% - 24px);
    padding: 30px 20px;
  }
  .proof-band { width: calc(100% - 24px); }
  .use-grid { grid-template-columns: 1fr; }
  .site-footer {
    width: calc(100% - 24px);
    grid-template-columns: 1fr;
  }
  .footer-links { grid-template-columns: 1fr; }
}


.urgency-strip {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  background: linear-gradient(135deg, #ffffff, #fff8e7) !important;
}
.urgency-strip strong {
  font-size: 22px;
}
.urgency-strip span {
  color: var(--muted);
  font-weight: 750;
  line-height: 1.45;
}
.urgency-strip a {
  color: var(--blue);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  white-space: nowrap;
}
.qualify-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.qualify-grid article {
  display: grid;
  gap: 10px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f9fcfd;
}
.qualify-grid strong {
  font-size: 19px;
}
.qualify-grid span {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.5;
}
.estimate-section {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 28px;
  align-items: center;
  background: linear-gradient(135deg, #f7fbfd, #ffffff) !important;
}
.estimate-section p {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
}
.estimate-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.estimate-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 22px;
}
.estimate-card ul {
  margin: 0 0 18px;
  padding-left: 20px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.6;
}
.proof-examples {
  grid-template-columns: repeat(3, 1fr);
}
.content-card ul {
  margin: 10px 0 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.55;
}
@media (max-width: 900px) {
  .urgency-strip,
  .estimate-section {
    grid-template-columns: 1fr;
  }
  .qualify-grid,
  .proof-examples {
    grid-template-columns: 1fr;
  }
}


.related-resources {
  border-top: 1px solid var(--line);
}
.check-list {
  display: grid;
  gap: 10px;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.6;
}
.checkbox-line input {
  width: auto;
  min-height: auto;
  margin-top: 2px;
}


.casepaynow-keyword-cluster .link-grid a{background:#f8fbfd;border-color:#d7e6ee}
.casepaynow-keyword-cluster .link-grid a:hover{border-color:#f2b84b;color:#09233e}
