:root {
  --ink: #14213d;
  --muted: #5d6980;
  --line: #dfe5ee;
  --paper: #ffffff;
  --soft: #f5f8fc;
  --navy: #10234b;
  --blue: #1c64f2;
  --blue-dark: #1346ad;
  --aqua: #16b8a6;
  --aqua-soft: #dcfaf6;
  --orange: #ff9d2e;
  --yellow: #ffe169;
  --danger: #c2413b;
  --success: #087f5b;
  --shadow-sm: 0 8px 28px rgba(16, 35, 75, 0.08);
  --shadow-lg: 0 24px 70px rgba(16, 35, 75, 0.14);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 32px;
  --max: 1180px;
}

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

html {
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--blue-dark);
  text-underline-offset: 0.2em;
}

a:hover {
  text-decoration-thickness: 2px;
}

button,
input,
select {
  font: inherit;
}

button,
.button {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(28, 100, 242, 0.42);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  padding: 10px 16px;
  color: #fff;
  background: var(--navy);
  border-radius: 8px;
}

.skip-link:focus {
  transform: none;
}

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 40px), 820px);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(223, 229, 238, 0.82);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
}

.disclosure-bar {
  color: #4b3711;
  background: #fff6cc;
  border-bottom: 1px solid #ead58a;
}

.disclosure-inner {
  min-height: 46px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding-block: 8px;
  font-size: 0.76rem;
  line-height: 1.55;
}

.disclosure-inner strong,
.pr-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 9px;
  color: #fff;
  background: #9c4b00;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 900;
  line-height: 1.35;
  white-space: nowrap;
}

.disclosure-inner span {
  min-width: 0;
}

.disclosure-inner a {
  color: #684000;
  font-weight: 900;
  white-space: nowrap;
}

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

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 900;
  font-size: 1.14rem;
  letter-spacing: -0.02em;
  text-decoration: none;
  white-space: nowrap;
}

.logo-copy {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1.2;
}

.logo-name {
  display: block;
}

.logo-copy small {
  display: block;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.logo-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #5b8cff 52%, var(--aqua) 53%);
  border-radius: 12px;
  box-shadow: 0 7px 18px rgba(28, 100, 242, 0.25);
}

.logo-mark svg {
  width: 25px;
  height: 25px;
}

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

.site-nav a {
  padding: 8px 11px;
  color: var(--ink);
  border-radius: 9px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--blue-dark);
  background: #edf3ff;
}

.nav-cta {
  color: #fff !important;
  background: var(--blue) !important;
  box-shadow: 0 6px 14px rgba(28, 100, 242, 0.2);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  background: var(--soft);
  border: 0;
  border-radius: 12px;
}

.nav-toggle svg {
  width: 23px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 82px 0 72px;
  background:
    radial-gradient(circle at 85% 18%, rgba(255, 225, 105, 0.6), transparent 19%),
    radial-gradient(circle at 14% 80%, rgba(22, 184, 166, 0.18), transparent 25%),
    linear-gradient(145deg, #f2f7ff 0%, #fff 52%, #f0fffb 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(28, 100, 242, 0.1);
  border-radius: 50%;
}

.hero::before {
  width: 380px;
  height: 380px;
  top: -260px;
  left: -120px;
}

.hero::after {
  width: 560px;
  height: 560px;
  right: -360px;
  bottom: -330px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.07fr) minmax(360px, 0.93fr);
  align-items: center;
  gap: 70px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--blue-dark);
  font-weight: 800;
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 3px;
  background: var(--aqua);
  border-radius: 99px;
}

.hero h1 {
  max-width: 700px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.25rem, 5.1vw, 4.55rem);
  line-height: 1.12;
  letter-spacing: -0.055em;
}

.hero h1 .accent {
  position: relative;
  color: var(--blue);
  white-space: nowrap;
}

.hero h1 .accent::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -2px;
  bottom: 0.04em;
  left: -2px;
  height: 0.26em;
  background: var(--yellow);
  border-radius: 99px;
  transform: rotate(-1deg);
}

.hero-lead {
  max-width: 640px;
  margin: 26px 0 0;
  color: #3e4b65;
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 22px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 13px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.button-primary {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 12px 30px rgba(28, 100, 242, 0.25);
}

.button-primary:hover {
  background: var(--blue-dark);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.72);
}

.button-small {
  min-height: 42px;
  padding: 9px 15px;
  font-size: 0.9rem;
}

.button-block {
  width: 100%;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 25px;
  padding: 0;
  color: var(--muted);
  font-size: 0.86rem;
  list-style: none;
}

.hero-proof li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.check-icon {
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  color: var(--success);
  background: #ddf8ee;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 900;
}

.hero-visual {
  position: relative;
  min-height: 465px;
  display: grid;
  place-items: center;
}

.phone {
  position: relative;
  width: min(300px, 82vw);
  padding: 13px;
  background: #14213d;
  border: 3px solid #25365a;
  border-radius: 42px;
  box-shadow: 0 35px 80px rgba(16, 35, 75, 0.3);
  transform: rotate(2.5deg);
}

.phone::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 8px;
  left: 50%;
  width: 88px;
  height: 22px;
  background: #14213d;
  border-radius: 0 0 15px 15px;
  transform: translateX(-50%);
}

.phone-screen {
  min-height: 420px;
  padding: 38px 18px 20px;
  background: linear-gradient(165deg, #edf4ff, #fff 60%);
  border-radius: 30px;
}

.mini-label {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.phone-screen h2 {
  margin: 8px 0 14px;
  color: var(--navy);
  font-size: 1.35rem;
  line-height: 1.4;
}

.mini-progress {
  height: 7px;
  margin-bottom: 22px;
  overflow: hidden;
  background: #dbe4f3;
  border-radius: 99px;
}

.mini-progress span {
  width: 62%;
  height: 100%;
  display: block;
  background: linear-gradient(90deg, var(--blue), var(--aqua));
  border-radius: inherit;
}

.mini-option {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 9px 0;
  padding: 13px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(16, 35, 75, 0.05);
  font-size: 0.82rem;
  font-weight: 800;
}

.mini-option.active {
  color: var(--blue-dark);
  background: #edf3ff;
  border-color: #93b4fa;
}

.radio-dot {
  width: 17px;
  height: 17px;
  border: 2px solid #aeb9c9;
  border-radius: 50%;
}

.active .radio-dot {
  border: 5px solid var(--blue);
}

.float-card {
  position: absolute;
  padding: 13px 16px;
  background: #fff;
  border: 1px solid rgba(223, 229, 238, 0.82);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  font-weight: 800;
  font-size: 0.82rem;
  animation: float 5s ease-in-out infinite;
}

.float-card strong {
  display: block;
  color: var(--blue);
  font-size: 1.15rem;
}

.float-a {
  top: 52px;
  left: 0;
}

.float-b {
  right: 0;
  bottom: 68px;
  animation-delay: -2.4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

.trust-strip {
  position: relative;
  z-index: 3;
  margin-top: -20px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
}

.trust-item + .trust-item {
  border-left: 1px solid var(--line);
}

.trust-number {
  color: var(--blue);
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.trust-number--text {
  font-size: 1.1rem;
}

.trust-copy {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.5;
}

.trust-copy strong {
  display: block;
  color: var(--ink);
  font-size: 0.94rem;
}

.section {
  padding: 92px 0;
}

.section-soft {
  background: var(--soft);
}

.section-dark {
  color: #fff;
  background: var(--navy);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.page-hero h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.85rem, 3.8vw, 3rem);
  line-height: 1.25;
  letter-spacing: -0.035em;
}

.section-dark .section-heading h2,
.section-dark .eyebrow {
  color: #fff;
}

.section-heading p {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.section-dark .section-heading p {
  color: #bdc9dc;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.step-card {
  position: relative;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(16, 35, 75, 0.05);
}

.step-no {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  color: #fff;
  background: var(--blue);
  border-radius: 13px;
  font-weight: 900;
}

.step-card:nth-child(2) .step-no { background: var(--aqua); }
.step-card:nth-child(3) .step-no { color: var(--navy); background: var(--yellow); }

.step-card h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 1.15rem;
}

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

.provider-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.section-specialty {
  background: linear-gradient(180deg, #f4fbfa 0%, #f8fbff 100%);
  border-block: 1px solid #dceeea;
}

.provider-grid--specialty {
  grid-template-columns: repeat(4, 1fr);
}

.specialty-intro {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -8px 0 24px;
}

.specialty-intro span,
.provider-focus {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 5px 9px;
  color: #08685e;
  background: #dff7f2;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 900;
}

.provider-focus {
  margin-top: 14px;
}

.provider-focus--hero {
  margin: 0 0 14px;
}

.provider-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 7px 22px rgba(16, 35, 75, 0.05);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.provider-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.provider-top {
  display: flex;
  align-items: center;
  gap: 13px;
}

.provider-mark {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--brand, var(--blue));
  border-radius: 14px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.provider-name {
  margin: 0;
  color: var(--navy);
  font-size: 1.12rem;
  line-height: 1.35;
}

.provider-type {
  display: block;
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 700;
}

.provider-tagline {
  margin: 17px 0 12px;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.55;
}

.provider-price {
  margin-top: auto;
  padding-top: 17px;
  color: var(--muted);
  font-size: 0.78rem;
}

.provider-price strong {
  color: var(--navy);
  font-size: 1.55rem;
  letter-spacing: -0.03em;
}

.provider-card .text-link {
  margin-top: 14px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue-dark);
  font-weight: 800;
  font-size: 0.9rem;
  text-decoration: none;
}

.text-link::after {
  content: "→";
  transition: transform 0.18s ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.diagnosis-shell {
  display: grid;
  grid-template-columns: 0.63fr 1.37fr;
  overflow: hidden;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.diagnosis-aside {
  position: relative;
  overflow: hidden;
  padding: 42px;
  color: #fff;
  background: linear-gradient(155deg, #1549ba, #1c64f2 56%, #1e8bd9);
}

.diagnosis-aside::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -90px;
  width: 220px;
  height: 220px;
  border: 35px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
}

.diagnosis-aside h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 2rem;
  line-height: 1.3;
}

.diagnosis-aside p {
  color: #dce7ff;
}

.diagnosis-meta {
  display: grid;
  gap: 10px;
  margin-top: 30px;
  font-size: 0.88rem;
}

.diagnosis-main {
  min-height: 525px;
  padding: 42px;
  overflow-anchor: none;
}

.diagnosis-progress {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.progress-track {
  height: 7px;
  flex: 1;
  overflow: hidden;
  background: #e8edf5;
  border-radius: 99px;
}

.progress-fill {
  width: 20%;
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--aqua));
  border-radius: inherit;
  transition: width 0.3s ease;
}

.question-title {
  margin: 0 0 22px;
  color: var(--navy);
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  line-height: 1.45;
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.option-button {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 15px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
  transition: border 0.16s ease, background 0.16s ease, transform 0.16s ease;
}

.option-button:hover {
  transform: translateY(-2px);
  border-color: #9cb9f5;
}

.option-button[aria-pressed="true"] {
  color: var(--blue-dark);
  background: #edf3ff;
  border: 2px solid var(--blue);
}

.option-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  background: var(--soft);
  border-radius: 10px;
  font-size: 1.12rem;
}

.option-button--capacity .option-icon {
  width: auto;
  min-width: 68px;
  padding: 0 10px;
  white-space: nowrap;
  font-size: 0.92rem;
  letter-spacing: -0.02em;
}

.option-label {
  min-width: 0;
}

.diagnosis-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 26px;
}

.diagnosis-result {
  animation: reveal 0.35s ease both;
}

@keyframes reveal {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

.result-kicker {
  color: var(--blue-dark);
  font-weight: 900;
  font-size: 0.82rem;
}

.result-lead {
  max-width: 680px;
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.75;
}

.result-list {
  display: grid;
  gap: 13px;
  margin-top: 20px;
}

.result-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 15px;
  padding: 17px;
  color: inherit;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 15px;
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.result-card:hover {
  transform: translateY(-2px);
  border-color: #9cb9f5;
  box-shadow: var(--shadow-sm);
}

.result-card:focus-visible {
  outline: 3px solid rgba(28, 100, 242, 0.3);
  outline-offset: 3px;
}

.result-card--primary {
  background: #f5f9ff;
  border: 2px solid #85aaf8;
  box-shadow: 0 12px 30px rgba(28, 100, 242, 0.1);
}

.result-card .provider-mark {
  width: 45px;
  height: 45px;
}

.result-name {
  display: block;
  margin-top: 5px;
  color: var(--navy);
  font-weight: 900;
}

.result-rank {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 3px 8px;
  color: var(--blue-dark);
  background: #edf3ff;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1;
}

.result-card--primary .result-rank {
  color: #fff;
  background: var(--blue);
}

.result-reason {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

.result-plan {
  text-align: right;
}

.result-plan strong {
  display: block;
  color: var(--navy);
  font-size: 1.15rem;
}

.result-card-cta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  margin-top: 8px;
  color: var(--blue-dark);
  font-size: 0.76rem;
  font-weight: 900;
}

.result-card-cta span {
  transition: transform 0.18s ease;
}

.result-card:hover .result-card-cta span {
  transform: translateX(4px);
}

.result-note {
  margin-top: 16px;
  padding: 12px 14px;
  color: var(--muted);
  background: var(--soft);
  border-radius: 10px;
  font-size: 0.78rem;
}

.result-note strong {
  color: var(--ink);
}

.result-primary-action {
  display: grid;
  justify-items: center;
  gap: 9px;
  margin-top: 20px;
  text-align: center;
}

.result-primary-button {
  width: 100%;
  min-height: 60px;
  font-size: 1.02rem;
}

.result-primary-action > span {
  color: var(--muted);
  font-size: 0.72rem;
}

.result-secondary-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.result-action-link {
  padding: 4px 0;
  color: var(--muted);
  background: none;
  border: 0;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.result-action-link:hover {
  color: var(--blue-dark);
}

.compare-tools {
  display: grid;
  grid-template-columns: 1.35fr repeat(4, minmax(115px, 0.5fr));
  gap: 12px;
  margin-bottom: 18px;
}

.comparison-scope {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 24px;
  padding: 16px 18px;
  color: var(--muted);
  background: #f6f9ff;
  border: 1px solid #dbe6fa;
  border-radius: 14px;
  font-size: 0.84rem;
}

.comparison-scope strong {
  color: var(--navy);
}

.comparison-scope span {
  padding: 4px 9px;
  color: var(--blue-dark);
  background: #e8f0ff;
  border-radius: 999px;
  font-weight: 900;
}

.comparison-scope p {
  flex-basis: 100%;
  margin: 2px 0 0;
}

.field label {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 800;
}

.field input,
.field select {
  width: 100%;
  min-height: 46px;
  padding: 9px 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 11px;
}

.table-wrap {
  overflow-x: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 7px 22px rgba(16, 35, 75, 0.04);
}

.compare-table {
  width: 100%;
  min-width: 920px;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.compare-table th,
.compare-table td {
  padding: 15px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
}

.compare-table th {
  position: sticky;
  z-index: 2;
  top: 72px;
  color: #46536b;
  background: #f6f8fc;
  font-size: 0.76rem;
  white-space: nowrap;
}

.compare-table tbody tr:hover {
  background: #fafcff;
}

.compare-table tbody tr:last-child td {
  border-bottom: 0;
}

.table-provider {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 900;
  text-decoration: none;
}

.table-provider .provider-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  font-size: 0.78rem;
}

.table-category {
  display: block;
  margin-top: 2px;
  color: #087258;
  font-size: 0.62rem;
  font-weight: 900;
}

.special-data-box {
  display: grid;
  gap: 5px;
  margin: 18px 0;
  padding: 18px;
  color: #155f57;
  background: #eafaf7;
  border: 1px solid #bfe9df;
  border-radius: 13px;
}

.special-data-box span {
  color: var(--navy);
  font-weight: 900;
}

.special-data-box small {
  color: var(--muted);
  line-height: 1.6;
}

.related-services {
  display: grid;
  gap: 12px;
}

.related-services article {
  padding: 18px;
  background: #f7f9fd;
  border: 1px solid var(--line);
  border-radius: 13px;
}

.related-services h3,
.related-services p {
  margin-top: 0;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag,
.status {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  color: #44516a;
  background: #edf1f7;
  border-radius: 99px;
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1.3;
}

.tag-blue { color: #174ca6; background: #e7efff; }
.tag-green { color: #087258; background: #def7ed; }
.tag-yellow { color: #775b00; background: #fff5c2; }

.yes { color: var(--success); font-weight: 900; }
.no { color: #8a94a7; }

.result-count {
  margin: 8px 0 14px;
  color: var(--muted);
  font-size: 0.84rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.content-card {
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.content-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  line-height: 1.45;
}

.content-card p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.92rem;
}

.guide-meta {
  display: inline-block;
  margin-bottom: 13px;
  color: var(--blue-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.cta-band {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 38px 42px;
  color: #fff;
  background: linear-gradient(120deg, #17366f, var(--blue));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.cta-band h2 {
  margin: 0 0 8px;
  color: #fff;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
}

.cta-band p {
  margin: 0;
  color: #dce7ff;
}

.page-hero {
  padding: 70px 0 54px;
  background:
    radial-gradient(circle at 90% 15%, rgba(255, 225, 105, 0.5), transparent 17%),
    linear-gradient(145deg, #f2f7ff, #fff);
  border-bottom: 1px solid var(--line);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.76rem;
}

.breadcrumbs a {
  color: var(--muted);
}

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

.updated {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 20px;
  padding: 5px 10px;
  color: #3e4b65;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 800;
}

.prose {
  color: #2e3a53;
}

.prose h2 {
  margin: 2.5em 0 0.8em;
  padding-bottom: 0.38em;
  color: var(--navy);
  border-bottom: 2px solid #e9eef6;
  font-size: 1.65rem;
  line-height: 1.45;
}

.prose h3 {
  margin: 2em 0 0.55em;
  color: var(--navy);
  font-size: 1.22rem;
}

.prose p {
  margin: 0 0 1.25em;
}

.prose ul,
.prose ol {
  padding-left: 1.35em;
}

.prose li + li {
  margin-top: 0.4em;
}

.prose a:not(.button) {
  font-weight: 700;
}

.key-points {
  margin: 30px 0;
  padding: 24px 26px;
  background: #f2f7ff;
  border: 1px solid #cadbfc;
  border-left: 5px solid var(--blue);
  border-radius: 14px;
}

.key-points strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
}

.key-points ul {
  margin: 0;
}

.note-box,
.warning-box {
  margin: 24px 0;
  padding: 18px 20px;
  background: #f7f9fc;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 0.9rem;
}

.disclosure-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 14px;
  margin: 0 0 30px;
  padding: 20px;
  color: #4b3711;
  background: #fff8dc;
  border: 1px solid #ead58a;
  border-radius: 14px;
}

.disclosure-card p {
  margin: 0;
}

.method-table th:first-child,
.method-table td:first-child {
  width: 28%;
}

.warning-box {
  color: #653b08;
  background: #fff8e8;
  border-color: #f4d38c;
}

.success-box {
  margin: 24px 0;
  padding: 18px 20px;
  color: #075d47;
  background: #eafaf4;
  border: 1px solid #a8e4d1;
  border-radius: 12px;
  font-size: 0.9rem;
}

.contact-intro {
  margin-bottom: 34px;
}

.contact-form {
  display: grid;
  gap: 22px;
  margin-top: 30px;
  padding: clamp(24px, 5vw, 42px);
  background: #f8faff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
}

.form-field label {
  display: block;
  margin-bottom: 7px;
  color: var(--navy);
  font-weight: 800;
}

.form-field label span {
  display: inline-block;
  margin-left: 5px;
  padding: 1px 7px;
  color: #fff;
  background: var(--danger);
  border-radius: 99px;
  font-size: 0.68rem;
  vertical-align: 0.1em;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #cbd4e1;
  border-radius: 11px;
  font: inherit;
}

.form-field input,
.form-field select {
  min-height: 50px;
}

.form-field textarea {
  min-height: 210px;
  resize: vertical;
}

.form-field small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.78rem;
}

.consent-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 15px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 11px;
  font-size: 0.9rem;
}

.consent-field input {
  width: 20px;
  height: 20px;
  margin: 3px 0 0;
  flex: 0 0 auto;
}

.contact-form .button {
  justify-self: start;
}

.contact-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

.provider-hero-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  align-items: start;
  gap: 48px;
}

.brand-title {
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand-title .provider-mark {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  font-size: 1.1rem;
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

.quick-fact {
  padding: 15px;
  background: #fff;
}

.quick-fact span {
  display: block;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
}

.quick-fact strong {
  display: block;
  margin-top: 2px;
  color: var(--navy);
  font-size: 0.9rem;
  line-height: 1.45;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: start;
  gap: 46px;
}

.side-card {
  position: sticky;
  top: 96px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.side-card h2,
.side-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 1.1rem;
}

.side-price {
  margin: 13px 0 18px;
  color: var(--muted);
  font-size: 0.78rem;
}

.side-price strong {
  display: block;
  color: var(--navy);
  font-size: 1.8rem;
}

.side-price small {
  display: block;
  margin-top: 5px;
  line-height: 1.55;
}

.side-card .pr-label {
  margin-bottom: 10px;
}

.external-link-note {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.6;
}

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

.plan-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 14px;
  padding: 15px 17px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.plan-name {
  color: var(--navy);
  font-weight: 800;
}

.plan-data {
  color: var(--muted);
  font-size: 0.86rem;
  white-space: nowrap;
}

.plan-price {
  color: var(--navy);
  font-weight: 900;
  white-space: nowrap;
}

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

.pros,
.cons {
  padding: 24px;
  border-radius: var(--radius);
}

.pros { background: #ecfbf6; }
.cons { background: #fff5ed; }

.pros h3,
.cons h3 {
  margin-top: 0;
}

.source-list {
  overflow-wrap: anywhere;
  font-size: 0.84rem;
}

.source-list li + li {
  margin-top: 8px;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.method-card {
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.method-card strong {
  display: block;
  margin: 8px 0;
  color: var(--navy);
}

.method-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.method-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--blue-dark);
  background: #eaf1ff;
  border-radius: 11px;
  font-weight: 900;
}

.archive-list {
  display: grid;
  gap: 12px;
}

.archive-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.archive-item h2,
.archive-item h3 {
  margin: 0 0 5px;
  color: var(--navy);
  font-size: 1.05rem;
}

.archive-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.empty-state {
  padding: 55px 20px;
  color: var(--muted);
  text-align: center;
}

.site-footer {
  padding: 62px 0 24px;
  color: #bdc9dc;
  background: #0b1732;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 0.75fr);
  gap: 42px;
}

.footer-brand .site-logo {
  color: #fff;
}

.footer-brand p {
  max-width: 380px;
  margin: 18px 0 0;
  font-size: 0.86rem;
}

.footer-col h2 {
  margin: 0 0 13px;
  color: #fff;
  font-size: 0.84rem;
}

.footer-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-col li + li {
  margin-top: 8px;
}

.footer-col a {
  color: #bdc9dc;
  font-size: 0.82rem;
  text-decoration: none;
}

.footer-col a:hover {
  color: #fff;
}

.footer-note {
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.72rem;
  line-height: 1.7;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 18px;
  color: #8391a9;
  font-size: 0.72rem;
}

.staging-banner {
  padding: 7px 20px;
  color: #5d4300;
  background: #fff1a8;
  font-size: 0.74rem;
  font-weight: 800;
  text-align: center;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

[hidden] {
  display: none !important;
}

@media (max-width: 980px) {
  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 20px;
    left: 20px;
    display: none;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow-lg);
  }

  .site-nav.open {
    display: grid;
  }

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

  .hero-grid {
    grid-template-columns: 1fr 0.78fr;
    gap: 30px;
  }

  .float-card { display: none; }
  .provider-grid { grid-template-columns: repeat(2, 1fr); }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .method-grid { grid-template-columns: repeat(2, 1fr); }
  .diagnosis-shell { grid-template-columns: 0.75fr 1.25fr; }
  .diagnosis-aside,
  .diagnosis-main { padding: 32px; }
  .detail-grid { grid-template-columns: minmax(0, 1fr) 280px; gap: 28px; }
  .provider-hero-grid { grid-template-columns: 1fr 280px; gap: 30px; }
  .footer-grid { grid-template-columns: 1.4fr repeat(3, 0.6fr); gap: 24px; }
}

@media (max-width: 760px) {
  .container,
  .narrow { width: min(calc(100% - 28px), var(--max)); }
  .header-inner { min-height: 64px; }
  .disclosure-inner {
    grid-template-columns: auto 1fr;
    gap: 7px 9px;
    padding-block: 9px;
    font-size: 0.7rem;
    line-height: 1.5;
  }
  .disclosure-inner a { grid-column: 2; justify-self: start; }
  .hero { padding: 56px 0 66px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(2.3rem, 12vw, 3.75rem); }
  .hero-lead { font-size: 1rem; }
  .hero-visual { min-height: 400px; }
  .phone { width: 260px; }
  .phone-screen { min-height: 365px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item + .trust-item { border-top: 1px solid var(--line); border-left: 0; }
  .section { padding: 68px 0; }
  .step-grid,
  .provider-grid,
  .card-grid,
  .two-col { grid-template-columns: 1fr; }
  .diagnosis-shell { grid-template-columns: 1fr; }
  .diagnosis-aside { padding: 28px; }
  .diagnosis-aside h2 { font-size: 1.6rem; }
  .diagnosis-main { min-height: 500px; padding: 25px 20px; }
  .option-grid { grid-template-columns: 1fr; }
  .result-card { grid-template-columns: auto 1fr; }
  .result-plan { grid-column: 2; text-align: left; }
  .result-card-cta { justify-content: flex-start; }
  .result-secondary-actions { align-items: flex-start; }
  .compare-tools { grid-template-columns: repeat(2, 1fr); }
  .compare-tools .field:first-child { grid-column: 1 / -1; }
  .cta-band { grid-template-columns: 1fr; padding: 30px 25px; }
  .page-hero { padding: 48px 0 38px; }
  .provider-hero-grid,
  .detail-grid { grid-template-columns: 1fr; }
  .side-card { position: static; }
  .plan-row { grid-template-columns: 1fr auto; gap: 6px 12px; }
  .plan-data { grid-column: 1; }
  .plan-price { grid-column: 2; grid-row: 1 / 3; }
  .method-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 480px) {
  .site-logo { font-size: 1rem; }
  .logo-mark { width: 34px; height: 34px; }
  .site-logo { gap: 8px; font-size: 1rem; }
  .logo-copy small { font-size: 0.55rem; }
  .hero-actions .button { width: 100%; }
  .hero-proof { display: grid; }
  .hero-visual { min-height: 375px; }
  .phone { width: 238px; border-radius: 35px; }
  .phone-screen { min-height: 350px; padding-inline: 14px; border-radius: 25px; }
  .compare-tools { grid-template-columns: 1fr; }
  .compare-tools .field:first-child { grid-column: auto; }
  .quick-facts { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .contact-form { padding: 22px 18px; }
  .contact-form .button { width: 100%; }
  .result-secondary-actions { flex-direction: column; gap: 10px; }
  .disclosure-card { grid-template-columns: 1fr; }
  .disclosure-card .pr-label { justify-self: start; }
}

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

@media print {
  .site-header,
  .site-footer,
  .hero-actions,
  .button,
  .compare-tools,
  .staging-banner { display: none !important; }
  body { color: #000; font-size: 11pt; }
  .section { padding: 20px 0; }
  .page-hero { padding: 20px 0; background: #fff; }
  .table-wrap { overflow: visible; box-shadow: none; }
  .compare-table { min-width: 0; font-size: 8pt; }
}
