:root {
  --blue-950: #073777;
  --blue-850: #0a4694;
  --blue-700: #115da9;
  --blue-100: #e9f4ff;
  --blue-050: #f6fbff;
  --green-700: #438d22;
  --green-600: #5a9f32;
  --green-500: #70bd39;
  --green-100: #e9f6df;
  --ink: #132238;
  --muted: #5d6b7a;
  --line: #d7e6f5;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(10, 70, 148, 0.15);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  background:
    radial-gradient(circle at 82% 6%, rgba(151, 211, 255, 0.72), transparent 30rem),
    radial-gradient(circle at 12% 32%, rgba(196, 239, 164, 0.58), transparent 25rem),
    linear-gradient(180deg, var(--white) 0%, #eef8ff 46%, #ffffff 100%);
}

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

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

button {
  font: inherit;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  color: var(--blue-950);
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 700;
}

.brand-mark {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(7, 55, 119, 0.12);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.25rem;
  color: var(--blue-950);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-links a {
  white-space: nowrap;
}

.nav-button {
  padding: 0.7rem 1rem;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-850), #1d6eea);
  border: 0;
  border-radius: 6px;
  box-shadow: 0 10px 24px rgba(10, 70, 148, 0.18);
  cursor: pointer;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(340px, 1.12fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  width: min(1180px, calc(100% - 32px));
  min-height: calc(100vh - 92px);
  margin: 0 auto;
  padding: 34px 0 70px;
}

.campaign-hero {
  min-height: auto;
  padding-top: 56px;
}

.local-agent-card {
  align-self: center;
}

.hero-copy {
  max-width: 590px;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--green-700);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 1.1rem;
  color: var(--blue-950);
  font-size: clamp(2.6rem, 6.2vw, 5.45rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 1rem;
  color: var(--blue-950);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.45rem;
  color: var(--blue-850);
  font-size: 1.28rem;
}

.hero-text,
.section p,
.site-footer p {
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.06rem;
  line-height: 1.7;
}

.hero-text {
  max-width: 540px;
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.button,
.contact-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.15rem;
  border: 2px solid transparent;
  border-radius: 6px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
  cursor: pointer;
}

.button.primary,
.contact-form button {
  color: var(--white);
  background: linear-gradient(135deg, var(--green-700), var(--green-500));
  box-shadow: 0 14px 32px rgba(67, 141, 34, 0.26);
}

.button.secondary {
  color: var(--blue-950);
  background: var(--white);
  border-color: var(--line);
}

.hero-art {
  position: relative;
}

.hero-art::after {
  position: absolute;
  right: -4%;
  bottom: -4%;
  z-index: -1;
  width: 74%;
  height: 28%;
  content: "";
  background: linear-gradient(135deg, var(--green-600), #80bd54);
  border-radius: 100% 0 0 0;
}

.hero-art img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(1080px, calc(100% - 32px));
  margin: -26px auto 0;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(7, 55, 119, 0.08);
}

.trust-strip div {
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.94);
}

.trust-strip strong,
.trust-strip span {
  display: block;
  font-family: Arial, Helvetica, sans-serif;
}

.trust-strip strong {
  color: var(--blue-950);
  font-size: 1.05rem;
}

.trust-strip span {
  margin-top: 0.25rem;
  color: var(--green-700);
  font-size: 0.93rem;
  font-weight: 700;
}

.section {
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
  padding: 92px 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 6vw, 5rem);
}

.feature-list {
  display: grid;
  gap: 1rem;
}

.feature-list article {
  padding: 1.25rem 0 1.25rem 1.15rem;
  border-left: 5px solid var(--green-600);
}

.feature-list p,
.calm-panel p {
  margin-bottom: 0;
}

.calm-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  padding: 50px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(232, 245, 255, 0.94)),
    var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 54px rgba(10, 70, 148, 0.12);
}

.check-list {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: Arial, Helvetica, sans-serif;
}

.check-list li {
  position: relative;
  padding: 1rem 1rem 1rem 3rem;
  color: var(--blue-950);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
}

.check-list li::before {
  position: absolute;
  left: 1rem;
  color: var(--green-700);
  content: "✓";
  font-size: 1rem;
  font-weight: 900;
}

.final-expense-benefits {
  display: grid;
  gap: 2rem;
}

.benefits-heading {
  max-width: 760px;
}

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

.benefits-grid article {
  padding: 1.25rem;
  background: linear-gradient(180deg, #ffffff, #f8fcff);
  border: 1px solid var(--line);
  border-top: 5px solid var(--green-600);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(10, 70, 148, 0.08);
}

.benefits-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.98rem;
  line-height: 1.6;
}

.texas-reality-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(2rem, 5vw, 4.75rem);
  align-items: center;
  padding-top: 96px;
}

.texas-reality-copy {
  max-width: 560px;
}

.texas-reality-copy p:not(.eyebrow) {
  color: #314864;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.08rem;
  line-height: 1.75;
}

.texas-reality-copy .button {
  margin-top: 0.65rem;
}

.texas-process-list {
  display: grid;
  gap: 0.7rem;
}

.texas-process-list article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  padding: 1.05rem 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(17, 93, 169, 0.16);
  border-radius: 8px;
  box-shadow: none;
}

.texas-process-list article:last-child {
  border-bottom: 0;
}

.texas-process-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--white);
  background: var(--blue-950);
  border-radius: 8px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
  font-weight: 900;
}

.texas-process-list h3 {
  margin-bottom: 0.3rem;
  color: #0c274d;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.35;
}

.texas-process-list p {
  margin-bottom: 0;
  color: #314864;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.98rem;
  line-height: 1.6;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 54px rgba(10, 70, 148, 0.11);
  font-family: Arial, Helvetica, sans-serif;
}

.contact-form label {
  display: grid;
  gap: 0.4rem;
  color: var(--blue-950);
  font-size: 0.92rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem 0.9rem;
  color: var(--ink);
  background: var(--blue-050);
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.quiz-section {
  position: relative;
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
  padding: 92px 0;
}

.anchor-alias {
  position: absolute;
  top: 0;
}

.quiz-intro {
  max-width: 720px;
  margin: 0 auto 2rem;
  text-align: center;
}

.quiz-intro p:not(.eyebrow) {
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.06rem;
  line-height: 1.7;
}

.quiz-card {
  width: min(760px, 100%);
  margin: 0 auto;
  color: #08142a;
  font-family: Arial, Helvetica, sans-serif;
}

.quiz-back-row {
  min-height: 32px;
  margin-bottom: 0.5rem;
}

.quiz-back,
.location-pill button {
  padding: 0;
  color: #5a6f8f;
  background: transparent;
  border: 0;
  font: inherit;
  cursor: pointer;
}

.quiz-progress {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.7rem;
  margin-bottom: 1.4rem;
  color: #10244b;
  font-size: 0.9rem;
  font-weight: 800;
}

.quiz-progress [data-progress-label] {
  color: #8a99b5;
  font-weight: 600;
}

.progress-track {
  grid-column: 1 / -1;
  height: 8px;
  overflow: hidden;
  background: #e1e7ef;
  border-radius: 999px;
}

.progress-fill {
  width: 20%;
  height: 100%;
  background: linear-gradient(90deg, #18284f, #2364f0);
  border-radius: inherit;
  transition: width 180ms ease;
}

.location-pill {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding: 0.8rem 1rem;
  color: #3e4b65;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid #dce5f0;
  border-radius: 8px;
}

.location-pill span:nth-child(2) {
  flex: 1;
}

.pill-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  color: var(--blue-950);
  background: var(--blue-100);
  border-radius: 50%;
  font-size: 0.68rem;
  font-weight: 900;
}

.quiz-panel {
  min-height: 380px;
  padding: 2.4rem 2.25rem;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid #dbe5f1;
  border-top: 6px solid #225df0;
  border-radius: 8px;
  box-shadow: 0 22px 52px rgba(13, 32, 66, 0.15);
}

.quiz-step {
  display: none;
  max-width: 590px;
  margin: 0 auto;
  text-align: center;
}

.quiz-step.is-active {
  display: block;
}

.quiz-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 1.25rem;
  color: #15254b;
  background: #e7e9ef;
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 900;
}

.success-icon {
  color: #087b3c;
  background: #d9fae5;
}

.quiz-step h3 {
  max-width: 650px;
  margin: 0 auto 0.85rem;
  color: #071225;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  line-height: 1.1;
}

.quiz-step p {
  max-width: 620px;
  margin: 0 auto 1.7rem;
  color: #a0a8b5;
  font-size: 1.12rem;
  line-height: 1.45;
}

.quiz-step p strong {
  color: #071225;
}

.found-location {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  max-width: 450px;
  margin: 0 auto 1.4rem;
  padding: 1rem;
  background: #fafafa;
  border-radius: 8px;
  font-size: 1.1rem;
}

.pin-dot {
  width: 16px;
  height: 16px;
  border: 3px solid #10244b;
  border-radius: 50%;
}

.quiz-fields {
  display: grid;
  gap: 1rem;
  text-align: left;
}

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

.three-fields {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.quiz-fields label {
  display: grid;
  gap: 0.45rem;
  color: #071225;
  font-size: 0.95rem;
  font-weight: 700;
}

.quiz-fields input,
.quiz-fields select {
  min-height: 54px;
  width: 100%;
  padding: 0.85rem 0.95rem;
  color: #172444;
  background: #ffffff;
  border: 1px solid #dfe4eb;
  border-radius: 8px;
  font: inherit;
}

.quiz-fields input:focus,
.quiz-fields select:focus {
  border-color: #15254b;
  box-shadow: 0 0 0 3px rgba(34, 93, 240, 0.12);
  outline: none;
}

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

.coverage-grid button {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 64px;
  padding: 0.85rem 1.3rem;
  color: #071225;
  background: #ffffff;
  border: 2px solid #dfe4eb;
  border-radius: 8px;
  font-size: 1.12rem;
  font-weight: 900;
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.coverage-grid button::before {
  margin-right: 0.8rem;
  color: #10244b;
  content: "$";
  font-size: 1.45rem;
  font-weight: 500;
}

.coverage-grid button:hover,
.coverage-grid button:focus-visible,
.coverage-grid button.is-selected {
  border-color: #225df0;
  box-shadow: 0 8px 22px rgba(34, 93, 240, 0.12);
  outline: none;
  transform: translateY(-1px);
}

.tip-box,
.qualified-box {
  display: grid;
  gap: 0.45rem;
  margin-top: 1.25rem;
  padding: 1rem;
  text-align: left;
  border-radius: 8px;
  font-size: 0.96rem;
  line-height: 1.45;
}

.tip-box {
  color: #9a5600;
  background: #fff8e6;
  border: 1px solid #f5c752;
}

.qualified-box {
  color: #05733b;
  background: #eafbf1;
  border: 1px solid #9ee8bb;
}

.security-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin: 1.25rem 0;
  color: #8495b4;
  font-size: 0.9rem;
}

.security-row span::before {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  margin-right: 0.3rem;
  color: #6c82a7;
  content: "✓";
  border: 1px solid #9fb0ca;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 900;
  vertical-align: 2px;
}

.quiz-next,
.quiz-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(640px, 100%);
  min-height: 56px;
  margin: 0 auto;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue-850), #225df0);
  border: 0;
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(10, 70, 148, 0.2);
  font: inherit;
  font-size: 1.05rem;
  font-weight: 900;
  cursor: pointer;
}

.quiz-submit {
  background: linear-gradient(135deg, var(--green-700), var(--green-600));
}

.quiz-error {
  min-height: 1.25rem;
  margin-top: 0.85rem;
  color: #b22a1f;
  text-align: center;
  font-size: 0.94rem;
  font-weight: 800;
}

.result-summary {
  display: grid;
  gap: 0.45rem;
  max-width: 520px;
  margin: 1.25rem auto 0;
  padding: 1rem;
  color: #0c274d;
  background: var(--blue-050);
  border: 1px solid var(--line);
  border-radius: 8px;
  text-align: left;
}

.result-summary span {
  color: var(--muted);
}

.benefit-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.benefit-copy p:not(.eyebrow),
.benefit-card p {
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.06rem;
  line-height: 1.7;
}

.mini-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.25rem 0 1.5rem;
  font-family: Arial, Helvetica, sans-serif;
}

.mini-proof span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.65rem;
  color: var(--blue-950);
  background: var(--blue-050);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 800;
}

.mini-proof span::before {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  color: #ffffff;
  content: "✓";
  background: var(--blue-700);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 900;
}

.benefit-card {
  padding: 1.5rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 251, 255, 0.98)),
    #ffffff;
  border: 1px solid var(--line);
  border-top: 6px solid var(--blue-700);
  border-radius: 8px;
  box-shadow: 0 22px 54px rgba(10, 70, 148, 0.13);
}

.benefit-card > strong {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--blue-950);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.35rem;
}

.benefit-points {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.benefit-points div {
  padding: 0.95rem;
  background: var(--blue-050);
  border: 1px solid var(--line);
  border-left: 5px solid var(--green-600);
  border-radius: 8px;
}

.benefit-points strong,
.benefit-points span {
  display: block;
  font-family: Arial, Helvetica, sans-serif;
}

.benefit-points strong {
  color: var(--blue-950);
  font-size: 0.98rem;
}

.benefit-points span {
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.benefit-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 1rem;
}

.benefit-stats div {
  padding: 0.85rem;
  background: var(--blue-050);
  border: 1px solid var(--line);
  border-radius: 8px;
  text-align: center;
}

.benefit-stats strong,
.benefit-stats span {
  display: block;
  font-family: Arial, Helvetica, sans-serif;
}

.benefit-stats strong {
  color: var(--green-700);
  font-size: 1.3rem;
}

.benefit-stats span {
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.3;
}

.texas-cta-card {
  display: grid;
  gap: 1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 251, 255, 0.98)),
    #ffffff;
  border-top-color: var(--green-700);
}

.texas-cta-card .eyebrow {
  margin-bottom: -0.35rem;
}

.texas-cta-card > p {
  margin-bottom: 0;
}

.texas-cta-card .button {
  width: 100%;
  margin-top: 0.25rem;
}

.texas-cta-card small {
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.82rem;
  text-align: center;
}

.cta-value-list {
  display: grid;
  gap: 0.7rem;
  margin: 0.15rem 0;
}

.cta-value-list div {
  padding: 0.9rem 0;
  border-top: 1px solid rgba(17, 93, 169, 0.14);
}

.cta-value-list strong,
.cta-value-list span {
  display: block;
  font-family: Arial, Helvetica, sans-serif;
}

.cta-value-list strong {
  color: var(--blue-950);
  font-size: 0.98rem;
}

.cta-value-list span {
  margin-top: 0.22rem;
  color: #314864;
  font-size: 0.92rem;
  line-height: 1.45;
}

.compare-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.compare-table {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(10, 70, 148, 0.09);
}

.compare-head,
.compare-row {
  display: grid;
  grid-template-columns: 0.85fr 1fr 1.1fr;
  gap: 1px;
  background: var(--line);
}

.compare-head span {
  padding: 0.85rem 1rem;
  color: #ffffff;
  background: var(--blue-950);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.compare-table strong,
.compare-table span {
  padding: 1rem;
  background: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.45;
}

.compare-table strong {
  color: var(--blue-950);
  font-size: 0.98rem;
}

.compare-table .with-cell {
  color: var(--green-700);
  font-weight: 800;
}

.compare-table .without-cell {
  color: #8b2a20;
}

.testimonial-section {
  display: grid;
  gap: 1.5rem;
}

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

.testimonial-grid blockquote {
  margin: 0;
  padding: 1.25rem;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(10, 70, 148, 0.08);
}

.testimonial-grid p,
.testimonial-grid cite {
  font-family: Arial, Helvetica, sans-serif;
}

.testimonial-grid p {
  color: var(--ink);
  line-height: 1.6;
}

.testimonial-grid cite {
  color: var(--green-700);
  font-style: normal;
  font-weight: 800;
}

.appointment-page {
  margin-top: 2rem;
  background:
    radial-gradient(circle at 86% 8%, rgba(112, 189, 57, 0.25), transparent 28rem),
    linear-gradient(135deg, var(--blue-950), #126c92 72%, #eef8ff 72%);
}

.schedule-body {
  background: #eef8ff;
}

.appointment-page.is-standalone {
  min-height: 100vh;
  margin-top: 0;
}

.appointment-hero,
.next-steps-card,
.scheduler-shell,
.direct-call {
  width: min(1040px, calc(100% - 32px));
  margin: 0 auto;
}

.appointment-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: end;
  padding: 54px 0 92px;
  color: #ffffff;
}

.back-home,
.prequalified-badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1.2rem;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
}

.back-home {
  margin-right: 0.8rem;
  color: #d7e6f5;
}

.prequalified-badge {
  padding: 0.45rem 0.7rem;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.appointment-copy h1,
.appointment-copy h2 {
  max-width: 760px;
  margin-bottom: 1rem;
  color: #ffffff;
  font-size: clamp(2.25rem, 5.2vw, 4.4rem);
}

.appointment-copy h1 em,
.appointment-copy h2 em {
  color: #ffd45c;
}

.appointment-copy p {
  max-width: 720px;
  color: #d9e8f6;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.16rem;
  line-height: 1.65;
}

.appointment-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.25rem;
  color: #eef7ff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
}

.appointment-trust span::before {
  margin-right: 0.35rem;
  color: #ffd45c;
  content: "✓";
}

.agent-card {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 8px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.24);
}

.agent-card img {
  width: 100%;
  max-height: 260px;
  object-fit: contain;
  object-position: bottom center;
  background: linear-gradient(180deg, #edf6ff, #ffffff);
  border-radius: 8px;
}

.agent-card .eyebrow {
  margin-bottom: 0.35rem;
}

.agent-card h3 {
  margin-bottom: 0.25rem;
  color: var(--blue-950);
  font-size: 1.7rem;
}

.agent-card p,
.agent-card a {
  display: block;
  margin: 0 0 0.35rem;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.4;
}

.agent-card a {
  color: var(--blue-850);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.next-steps-card {
  margin-top: -58px;
  padding: 1.5rem;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 22px 58px rgba(10, 70, 148, 0.16);
}

.next-steps-card h3,
.scheduler-head h3,
.scheduler-body h4 {
  margin-bottom: 0.8rem;
  color: var(--blue-950);
  font-family: Arial, Helvetica, sans-serif;
}

.next-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.next-steps-grid article {
  position: relative;
  padding: 1.25rem;
  background: var(--blue-050);
  border-radius: 8px;
}

.next-steps-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 0.85rem;
  color: #ffffff;
  background: var(--green-700);
  border-radius: 50%;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
}

.next-steps-grid h4 {
  margin: 0 0 0.45rem;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

.next-steps-grid p {
  margin: 0;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

.scheduler-shell {
  margin-top: 1.5rem;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 28px 76px rgba(10, 70, 148, 0.17);
}

.scheduler-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: #f4f8fc;
  border-bottom: 1px solid var(--line);
}

.scheduler-head p {
  margin: 0;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
}

.calendar-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--green-700), var(--green-500));
  border-radius: 8px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
}

.scheduler-body {
  padding: 1.5rem;
}

.appointment-details {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.appointment-details ul {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  list-style: none;
}

.appointment-details li::before {
  margin-right: 0.45rem;
  color: var(--green-700);
  content: "✓";
  font-weight: 900;
}

.date-time-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.date-picker {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.65rem;
}

.date-picker button,
.time-picker button {
  min-height: 52px;
  color: var(--blue-850);
  background: #ffffff;
  border: 1px solid #1d6eea;
  border-radius: 8px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
  cursor: pointer;
}

.date-picker button {
  display: grid;
  gap: 0.15rem;
  color: var(--ink);
  border-color: var(--line);
}

.date-picker button span {
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.date-picker button.is-selected,
.time-picker button.is-selected {
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue-850), #2364f0);
  border-color: transparent;
}

.time-picker {
  display: grid;
  gap: 0.65rem;
  max-height: 360px;
  overflow: auto;
  padding-right: 0.3rem;
}

.schedule-confirmation {
  margin-top: 1.25rem;
  padding: 1rem;
  color: var(--blue-950);
  background: var(--blue-050);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
  text-align: center;
}

.direct-call {
  display: grid;
  justify-items: center;
  gap: 0.75rem;
  padding: 2rem 0 3rem;
}

.direct-call p {
  margin: 0;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
}

.matching-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(255, 255, 255, 0.96);
}

.matching-modal[aria-hidden="true"] {
  display: none;
}

.matching-card {
  width: min(460px, 100%);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

.matching-progress {
  height: 8px;
  overflow: hidden;
  background: #eef1f5;
  border-radius: 999px;
}

.matching-fill {
  width: 25%;
  height: 100%;
  background: linear-gradient(90deg, var(--blue-950), var(--green-600));
  border-radius: inherit;
  transition: width 360ms ease;
}

.matching-card > p {
  margin: 0.75rem 0 1.35rem;
  color: var(--muted);
  text-align: center;
  font-weight: 800;
}

.matching-steps {
  display: grid;
  gap: 0.85rem;
}

.matching-step {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 0.2rem 0.75rem;
  align-items: center;
  padding: 1rem;
  color: #9aa3ad;
  background: #f7f9fb;
  border: 1px solid transparent;
  border-radius: 8px;
}

.matching-step span {
  display: inline-flex;
  grid-row: span 2;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: #b6bdc7;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 900;
}

.matching-step strong {
  color: inherit;
  font-size: 1rem;
}

.matching-step small {
  display: none;
  color: var(--muted);
  font-size: 0.88rem;
}

.matching-step.is-active {
  color: var(--blue-950);
  background: #f1f7ff;
  border-color: #c7dcff;
  box-shadow: 0 12px 28px rgba(10, 70, 148, 0.08);
}

.matching-step.is-active span {
  color: var(--blue-850);
}

.matching-step.is-active small {
  display: block;
}

.matching-step.is-complete {
  color: #687385;
  background: #f8fbf7;
}

.matching-step.is-complete span {
  color: var(--green-600);
}

.matching-wait {
  margin-top: 1.8rem !important;
  font-weight: 700 !important;
}

.pulse-cta,
.floating-qualify {
  position: relative;
  overflow: visible;
  animation: cta-breathe 1.7s ease-in-out infinite;
  transform-origin: center;
  will-change: transform;
}

.pulse-cta::before,
.pulse-cta::after,
.floating-qualify::before,
.floating-qualify::after {
  position: absolute;
  inset: -8px;
  z-index: -1;
  content: "";
  border: 2px solid rgba(67, 141, 34, 0.45);
  border-radius: inherit;
  animation: pulse-ring 1.9s ease-out infinite;
}

.pulse-cta::after,
.floating-qualify::after {
  animation-delay: 0.7s;
}

@keyframes pulse-ring {
  0% {
    opacity: 0.8;
    transform: scale(0.94);
  }
  100% {
    opacity: 0;
    transform: scale(1.2);
  }
}

@keyframes cta-breathe {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.035);
  }
}

.floating-qualify {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 20;
  min-height: 62px;
  padding: 0 1.35rem;
  color: #ffffff;
  background: linear-gradient(135deg, var(--green-700), #63b139);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 18px 42px rgba(67, 141, 34, 0.38);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
  cursor: pointer;
}

.quiz-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 24px;
}

.quiz-modal[aria-hidden="true"] {
  display: none;
}

.quiz-scrim {
  position: absolute;
  inset: 0;
  background: rgba(6, 15, 30, 0.64);
  backdrop-filter: blur(2px);
}

.modal-open {
  overflow: hidden;
}

.modal-card {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  max-height: min(92vh, 860px);
  overflow: auto;
  overscroll-behavior: contain;
  scroll-padding-bottom: 120px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  font-family: Arial, Helvetica, sans-serif;
}

.modal-benefits {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.25rem;
  justify-content: center;
  padding: 1rem 3.5rem 0.9rem 1rem;
  background: #f5f7fa;
  border-bottom: 1px solid #d8dee8;
  color: #0d1d3b;
  font-size: 0.82rem;
  font-weight: 800;
}

.modal-benefits span::before {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  margin-right: 0.3rem;
  color: #ffffff;
  content: "✓";
  background: #2364f0;
  border-radius: 50%;
  font-size: 0.65rem;
}

.modal-close {
  position: absolute;
  top: 50%;
  right: 1rem;
  width: 34px;
  height: 34px;
  color: #4b596f;
  background: transparent;
  border: 0;
  border-radius: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

.modal-close:hover {
  background: #e8edf5;
}

.modal-body {
  padding: 1.55rem 1.75rem 1.75rem;
}

.modal-progress {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1.25rem;
}

.modal-progress .progress-track {
  height: 6px;
}

.modal-progress span {
  color: #4b596f;
  font-size: 0.82rem;
}

.checked-today {
  margin: 0 0 1rem;
  color: #4f5c70;
  text-align: center;
}

.modal-proof {
  justify-content: center;
  margin: 0 0 1.35rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #d8dee8;
}

.modal-proof span {
  padding: 0;
  background: transparent;
  border: 0;
  font-size: 0.72rem;
}

.modal-proof span::before {
  background: var(--green-700);
}

.modal-step {
  display: none;
  text-align: center;
}

.modal-step.is-active {
  display: block;
}

.modal-step h3 {
  max-width: 560px;
  margin: 0 auto 0.8rem;
  color: #18284f;
  font-size: clamp(1.45rem, 4vw, 2rem);
  line-height: 1.18;
}

.modal-step p {
  margin: 0 auto 1.4rem;
  color: #556173;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
}

.solo-field,
.field-row label {
  display: grid;
  gap: 0.45rem;
  color: #071225;
  font-size: 0.92rem;
  font-weight: 800;
  text-align: left;
}

.solo-field {
  max-width: 560px;
  margin: 0 auto;
}

.zip-confirm-card {
  display: grid;
  gap: 1rem;
  max-width: 560px;
  margin: 0 auto;
}

.zip-confirm-card > div {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.1rem;
  background: #ffffff;
  border: 2px solid #d4dbe5;
  border-radius: 8px;
  text-align: left;
}

.zip-confirm-card strong,
.zip-confirm-card small {
  display: block;
}

.zip-confirm-card strong {
  color: #18284f;
  font-size: 1.15rem;
}

.zip-confirm-card small {
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.zip-pin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  color: #ffffff;
  background: var(--green-700);
  border-radius: 50%;
  font-size: 0.58rem;
  font-weight: 900;
}

.zip-confirm-card button {
  min-height: 52px;
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
}

.zip-confirm-card [data-confirm-location] {
  color: #ffffff;
  background: linear-gradient(135deg, var(--green-700), #63b139);
  border: 0;
  box-shadow: 0 12px 28px rgba(67, 141, 34, 0.2);
}

.zip-confirm-card [data-edit-zip] {
  min-height: auto;
  color: #5d6878;
  background: transparent;
  border: 0;
  text-decoration: underline;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 0.85rem;
}

.field-row.thirds {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.solo-field input,
.field-row input,
.field-row select,
.solo-field select {
  min-height: 54px;
  width: 100%;
  padding: 0.85rem 0.95rem;
  color: #172444;
  background: #ffffff;
  border: 2px solid #d4dbe5;
  border-radius: 8px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.35;
}

.solo-field input:focus,
.field-row input:focus,
.field-row select:focus {
  border-color: var(--blue-700);
  box-shadow: 0 0 0 4px rgba(17, 93, 169, 0.12);
  outline: none;
}

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

.choice-stack {
  display: grid;
  gap: 0.85rem;
  max-width: 520px;
  margin: 1rem auto 0;
}

.two-choice {
  max-width: 560px;
}

.choice-grid button {
  min-height: 60px;
  padding: 0.8rem 1rem;
  color: #071225;
  background: #ffffff;
  border: 2px solid #d4dbe5;
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
}

.choice-stack button {
  position: relative;
  min-height: 58px;
  padding: 0.85rem 3rem 0.85rem 1rem;
  color: #071225;
  background: #ffffff;
  border: 1px solid #cbd4df;
  border-radius: 6px;
  font-size: 1.02rem;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.choice-stack button::after {
  position: absolute;
  top: 50%;
  right: 1rem;
  width: 22px;
  height: 22px;
  content: "";
  border: 2px solid #071225;
  border-radius: 50%;
  transform: translateY(-50%);
}

.choice-stack button:hover,
.choice-stack button:focus-visible,
.choice-stack button.is-selected {
  border-color: var(--blue-700);
  box-shadow: 0 8px 22px rgba(34, 93, 240, 0.1);
  outline: none;
}

.choice-stack button.is-selected::after {
  background: radial-gradient(circle, var(--blue-850) 0 38%, transparent 42%);
  border-color: var(--blue-850);
}

.choice-grid button:hover,
.choice-grid button:focus-visible,
.choice-grid button.is-selected {
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue-850), #2364f0);
  border-color: transparent;
  outline: none;
}

.choice-grid button.is-selected::after {
  margin-left: 0.45rem;
  content: "✓";
  font-size: 0.9rem;
}

.privacy-lock {
  justify-content: center;
  min-height: 54px;
  padding: 0.65rem 0.8rem;
  color: var(--green-700);
  background: var(--green-100);
  border: 1px solid #b9df9c;
  border-radius: 8px;
  text-align: center !important;
}

.privacy-lock span {
  color: #0f7a35;
  font-size: 0.82rem;
}

.modal-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  margin-top: 1.35rem;
  padding-top: 1.35rem;
  border-top: 1px solid #d8dee8;
}

.modal-back,
.modal-next,
.modal-submit {
  min-height: 58px;
  border-radius: 8px;
  font-size: 1.05rem;
  font-weight: 900;
  cursor: pointer;
}

.modal-back {
  color: #071225;
  background: #ffffff;
  border: 1px solid #cbd4df;
}

.modal-next,
.modal-submit {
  color: #ffffff;
  background: linear-gradient(135deg, var(--green-700), #63b139);
  border: 0;
  box-shadow: 0 12px 28px rgba(67, 141, 34, 0.22);
}

.secure-note,
.consent-copy {
  margin: 0;
  color: #5d6878;
  text-align: center;
  font-size: 0.8rem;
}

.secure-note {
  margin-top: 1rem;
  font-weight: 800;
}

.consent-copy {
  margin-top: 0.8rem;
  line-height: 1.45;
  font-size: 0.68rem;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

.site-footer {
  display: grid;
  grid-template-columns: auto minmax(180px, 1fr) minmax(300px, 0.9fr);
  gap: 1rem;
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 34px;
  border-top: 1px solid var(--line);
}

.footer-mark {
  width: 58px;
  height: 58px;
  border-radius: 50%;
}

.site-footer strong {
  color: var(--blue-950);
  font-size: 1.15rem;
}

.site-footer p {
  margin: 0;
  font-size: 0.93rem;
}

.disclaimer {
  text-align: right;
}

@media (max-width: 880px) {
  .site-header,
  .hero,
  .split,
  .benefit-hero,
  .compare-section,
  .appointment-hero,
  .date-time-grid,
  .calm-panel,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-header {
    display: grid;
  }

  .nav-links {
    justify-content: space-between;
    width: 100%;
    gap: 0.65rem;
    overflow-x: auto;
    padding-bottom: 0.15rem;
  }

  .hero {
    min-height: auto;
    padding-top: 22px;
  }

  .hero-art {
    order: -1;
  }

  .hero-art img {
    max-height: 420px;
    object-fit: cover;
    object-position: center;
  }

  .texas-reality-section {
    grid-template-columns: 1fr;
    padding-top: 76px;
  }

  .texas-reality-copy {
    max-width: 720px;
  }

  .trust-strip {
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .calm-panel {
    padding: 28px;
  }

  .quiz-panel {
    padding: 2rem 1.25rem;
  }

  .two-fields,
  .three-fields,
  .coverage-grid,
  .benefits-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .compare-head {
    display: none;
  }

  .compare-row {
    grid-template-columns: 1fr;
    gap: 0;
    margin: 0.75rem;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 8px;
  }

  .compare-row + .compare-row {
    margin-top: 0;
  }

  .compare-table {
    padding: 0.1rem 0;
    background: var(--blue-050);
  }

  .compare-table strong {
    padding: 0.9rem 1rem;
    background: var(--blue-950);
    color: #ffffff;
  }

  .compare-table .with-cell,
  .compare-table .without-cell {
    display: grid;
    gap: 0.25rem;
    padding: 0.9rem 1rem;
  }

  .compare-table .with-cell::before,
  .compare-table .without-cell::before {
    content: attr(data-label);
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
  }

  .compare-table .with-cell {
    border-bottom: 1px solid var(--line);
  }

  .benefit-stats {
    grid-template-columns: 1fr;
  }

  .appointment-page {
    background: linear-gradient(180deg, var(--blue-950) 0%, #126c92 42%, #eef8ff 42%);
  }

  .appointment-hero {
    padding-bottom: 78px;
  }

  .agent-card {
    max-width: 420px;
  }

  .next-steps-grid {
    grid-template-columns: 1fr;
  }

  .date-picker {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .disclaimer {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .site-header,
  .hero,
  .section,
  .benefit-hero,
  .quiz-section,
  .trust-strip,
  .site-footer {
    width: min(100% - 24px, 1180px);
  }

  .brand {
    align-items: center;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
  }

  .nav-links {
    font-size: 0.86rem;
  }

  .nav-button {
    padding: 0.62rem 0.78rem;
  }

  h1 {
    font-size: 2.55rem;
  }

  .button,
  .contact-form button {
    width: 100%;
  }

  .section {
    padding: 64px 0;
  }

  .calm-panel {
    width: min(100% - 24px, 1080px);
    padding: 24px;
  }

  .quiz-section {
    padding: 64px 0;
  }

  .quiz-progress {
    font-size: 0.82rem;
  }

  .location-pill {
    align-items: flex-start;
    font-size: 0.9rem;
  }

  .quiz-panel {
    min-height: auto;
    padding: 1.5rem 1rem;
  }

  .quiz-step h3 {
    font-size: 1.55rem;
  }

  .texas-reality-section {
    gap: 1.5rem;
    padding-top: 58px;
  }

  .texas-process-list article {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 0.85rem;
    padding: 0.95rem 0;
  }

  .texas-process-list span {
    width: 34px;
    height: 34px;
  }

  .quiz-step p {
    font-size: 1rem;
  }

  .security-row {
    gap: 0.8rem;
    font-size: 0.8rem;
  }

  .floating-qualify {
    right: 12px;
    bottom: 12px;
    min-height: 54px;
    padding: 0 1rem;
    font-size: 0.9rem;
  }

  .quiz-modal {
    padding: 10px;
    align-items: start;
  }

  .appointment-hero,
  .next-steps-card,
  .scheduler-shell,
  .direct-call {
    width: min(100% - 24px, 1040px);
  }

  .appointment-copy h2 {
    font-size: 2.3rem;
  }

  .next-steps-card,
  .scheduler-body {
    padding: 1rem;
  }

  .date-picker {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .time-picker {
    max-height: none;
  }

  .modal-card {
    max-height: calc(100vh - 20px);
  }

  .modal-benefits {
    justify-content: flex-start;
    padding-right: 3rem;
    font-size: 0.74rem;
  }

  .modal-body {
    padding: 1.2rem 1rem;
  }

  .modal-actions {
    position: sticky;
    bottom: 0;
    z-index: 2;
    margin-right: -1rem;
    margin-left: -1rem;
    padding: 0.85rem 1rem;
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid #d8dee8;
    box-shadow: 0 -12px 26px rgba(10, 30, 60, 0.08);
  }

  .modal-next,
  .modal-submit,
  .modal-back {
    min-height: 54px;
    font-size: 1rem;
  }

  .field-row,
  .field-row.thirds,
  .choice-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .modal-actions {
    grid-template-columns: 1fr;
  }
}
