:root {
  --navy: #0d2340;
  --blue: #1769e0;
  --aqua: #10aaa7;
  --muted: #62738a;
  --line: #dce5ef;
  --wash: #f3f7fb;
  --white: #fff;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    Segoe UI,
    sans-serif;
  color: var(--navy);
  background: #fff;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
.button {
  font: inherit;
  cursor: pointer;
}
header {
  height: 76px;
  max-width: 1180px;
  margin: auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand {
  font-size: 25px;
  font-weight: 900;
  letter-spacing: -1px;
}
.brand span {
  color: var(--blue);
}
nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-weight: 700;
  font-size: 14px;
}
select,
input {
  border: 1px solid var(--line);
  background: white;
  border-radius: 9px;
  padding: 10px;
  color: var(--navy);
}
.hero {
  text-align: center;
  padding: 92px 24px 65px;
  background: radial-gradient(circle at 50% -30%, #dcecff, transparent 58%);
}
.kicker,
.sectionhead > div > span,
.products > div > span {
  color: var(--blue);
  font-weight: 850;
  font-size: 12px;
  letter-spacing: 2px;
}
.hero h1 {
  font-size: clamp(44px, 7vw, 76px);
  letter-spacing: -4px;
  line-height: 1;
  margin: 18px auto;
  max-width: 900px;
}
.hero p {
  max-width: 710px;
  margin: 24px auto 30px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}
.primary,
.button,
.toolgrid button,
.result button {
  border: 0;
  border-radius: 10px;
  background: var(--blue);
  color: white;
  padding: 14px 22px;
  font-weight: 800;
  margin: 4px;
}
.ghost {
  display: inline-block;
  background: white;
  color: var(--navy);
  border: 1px solid var(--line);
}
.card {
  max-width: 1060px;
  margin: 0 auto 85px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
  box-shadow: 0 20px 55px #17334e16;
}
.test {
  padding: 28px;
}
.testtop {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 13px;
}
.testtop i {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #12a768;
  border-radius: 50%;
  margin-right: 8px;
}
.metrics {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  text-align: center;
  padding: 38px 0;
}
.metrics strong {
  font-size: 39px;
  display: block;
}
.metrics span {
  font-size: 12px;
  color: var(--muted);
}
.bar {
  height: 7px;
  background: #e8eef5;
  border-radius: 8px;
  overflow: hidden;
}
.bar i {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--blue), var(--aqua));
  transition: 0.25s;
}
.test > p {
  text-align: center;
  color: var(--muted);
}
.test > .primary {
  display: block;
  margin: 4px auto;
}
.textbtn {
  display: block;
  margin: auto;
  border: 0;
  background: none;
  color: var(--blue);
}
.ad {
  max-width: 970px;
  height: 90px;
  margin: 0 auto 90px;
  background: #f4f5f6;
  color: #9aa2ad;
  display: grid;
  place-items: center;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
main > section:not(.hero, .test, .wide, .products) {
  max-width: 1180px;
  margin: 0 auto 110px;
  padding: 0 24px;
}
.sectionhead {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 32px;
}
.sectionhead h2,
.products h2 {
  font-size: 38px;
  letter-spacing: -1.5px;
  margin: 9px 0 0;
}
.sectionhead > p {
  max-width: 420px;
  color: var(--muted);
  line-height: 1.6;
}
.toolgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.toolgrid article,
.guidegrid > a {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 15px;
}
.toolgrid article > b {
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  border-radius: 11px;
  background: #e8f1ff;
  color: var(--blue);
}
.toolgrid h3 {
  margin: 18px 0 7px;
}
.toolgrid p,
.guidegrid p {
  color: var(--muted);
  line-height: 1.55;
}
.toolgrid button,
.toolgrid a {
  display: inline-block;
  color: var(--blue);
  background: none;
  padding: 0;
  margin-top: 8px;
  font-weight: 800;
  border: 0;
}
.toolgrid label {
  font-size: 11px;
  color: var(--muted);
}
.toolgrid input {
  display: block;
  width: 100%;
  margin-top: 5px;
}
.result {
  margin-top: 18px;
  padding: 25px;
  border-radius: 14px;
  background: var(--wash);
}
dl {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 7px;
}
dt {
  color: var(--muted);
}
dd {
  margin: 0;
  font-weight: 700;
}
.wide {
  padding: 80px max(24px, calc((100% - 1132px) / 2));
  background: var(--wash);
  margin-bottom: 110px;
}
.search {
  width: 100%;
  padding: 15px;
  font-size: 16px;
  margin-bottom: 18px;
}
.servicegrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.servicegrid a {
  background: white;
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 17px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.servicegrid small {
  display: block;
  color: var(--muted);
  margin-top: 3px;
}
.servicegrid em {
  font-style: normal;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}
.guidegrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.guidegrid > a > span {
  font-size: 11px;
  color: var(--blue);
  font-weight: 800;
}
.guidegrid b {
  color: var(--blue);
  font-size: 13px;
}
.products {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 55px;
  padding: 75px max(24px, calc((100% - 1132px) / 2));
  background: var(--navy);
  color: white;
}
.products p {
  color: #b8c7d8;
  line-height: 1.6;
}
.products > div:last-child {
  display: grid;
  gap: 9px;
}
.products > div:last-child a {
  border: 1px solid #ffffff25;
  border-radius: 11px;
  padding: 17px 19px;
  display: grid;
  grid-template-columns: 1fr auto;
}
.products small {
  color: #b8c7d8;
  display: block;
}
.products em {
  grid-column: 2;
  grid-row: 1/3;
  align-self: center;
  color: #6fb5ff;
  font-style: normal;
  font-size: 13px;
  font-weight: 800;
}
footer {
  background: #061528;
  color: #dbe6f2;
  padding: 48px max(24px, calc((100% - 1132px) / 2));
  display: grid;
  gap: 20px;
}
footer div {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 13px;
}
footer small {
  color: #7f91a6;
}
.consent {
  position: fixed;
  z-index: 20;
  left: 18px;
  right: 18px;
  bottom: 18px;
  max-width: 760px;
  margin: auto;
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 18px 60px #00152d33;
  padding: 18px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.consent p {
  margin: 0;
  flex: 1;
  font-size: 13px;
}
.consent button {
  border: 1px solid var(--line);
  padding: 9px;
  border-radius: 8px;
  background: white;
}
.consent #accept {
  background: var(--blue);
  color: white;
}
.consent a {
  font-size: 12px;
}
.table > div {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 15px;
  padding: 9px;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 800px) {
  nav > a {
    display: none;
  }
  .hero {
    padding-top: 55px;
  }
  .hero h1 {
    letter-spacing: -2.5px;
  }
  .metrics {
    grid-template-columns: repeat(2, 1fr);
  }
  .toolgrid,
  .guidegrid,
  .servicegrid {
    grid-template-columns: 1fr;
  }
  .sectionhead,
  .products {
    display: block;
  }
  .sectionhead > p {
    margin-top: 12px;
  }
  .products > div:last-child {
    margin-top: 30px;
  }
  .consent {
    display: block;
  }
  .consent button {
    margin: 4px;
  }
  .testtop {
    gap: 10px;
  }
  .table > div {
    grid-template-columns: 1fr;
  }
  .products > div:last-child a {
    grid-template-columns: 1fr;
  }
  .products em {
    grid-column: 1;
    grid-row: auto;
    margin-top: 8px;
  }
}

.breadcrumbs {
  max-width: 1180px;
  margin: 12px auto 0;
  padding: 0 24px;
  color: var(--muted);
  font-size: 13px;
  gap: 10px;
}
.breadcrumbs a:hover,
.contentgrid aside a:hover,
.article a:not(.button):hover {
  color: var(--blue);
  text-decoration: underline;
}
.pagehero {
  text-align: center;
  padding-top: 68px !important;
  padding-bottom: 40px !important;
  margin-bottom: 44px !important;
  background: radial-gradient(circle at 50% -35%, #dcecff, transparent 62%);
}
.pagehero > span {
  color: var(--blue);
  font-weight: 850;
  font-size: 12px;
  letter-spacing: 2px;
}
.pagehero h1 {
  max-width: 900px;
  margin: 15px auto;
  font-size: clamp(40px, 6vw, 66px);
  line-height: 1.04;
  letter-spacing: -3px;
}
.pagehero p {
  max-width: 750px;
  margin: 18px auto 26px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}
.singletool {
  padding: 30px;
}
.singletool label {
  display: block;
  max-width: 680px;
  margin: 20px 0 8px;
  font-size: 13px;
  font-weight: 750;
}
.singletool input {
  display: block;
  width: 100%;
  margin-top: 7px;
}
.wizardchoices {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.wizardchoices button {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
  padding: 13px 17px;
  color: var(--navy);
  font-weight: 750;
}
.contentgrid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
  gap: 50px;
  line-height: 1.7;
}
.contentgrid article p,
.contentgrid article li {
  color: var(--muted);
}
.contentgrid article li {
  margin-bottom: 10px;
}
.contentgrid aside {
  align-self: start;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--wash);
}
.contentgrid aside a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--blue);
  font-weight: 750;
}
.faq details {
  border-top: 1px solid var(--line);
  padding: 17px 0;
}
.faq summary {
  cursor: pointer;
  font-weight: 800;
}
.faq p {
  max-width: 820px;
  color: var(--muted);
  line-height: 1.65;
}
.statusnotice {
  max-width: 850px !important;
  padding: 22px 25px !important;
  border-left: 4px solid var(--blue);
  border-radius: 8px;
  background: var(--wash);
}
.statusnotice p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}
.providerlinks {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.providerlinks h2 {
  width: 100%;
}
.providerlinks a {
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 10px 14px;
  color: var(--blue);
  font-weight: 750;
}
.translation-note {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 25px;
  background: var(--wash);
}
.article {
  max-width: 780px;
  margin: 58px auto 90px;
  padding: 0 24px;
  line-height: 1.8;
}
.article > span {
  color: var(--blue);
  font-weight: 800;
}
.article h1 {
  font-size: clamp(38px, 6vw, 62px);
  line-height: 1.05;
  letter-spacing: -2px;
}
.article .lead {
  color: var(--muted);
  font-size: 20px;
}
.article section {
  margin: 45px 0;
}
.notice {
  border-left: 4px solid var(--blue);
  padding: 18px;
  background: var(--wash);
}
.articleproducts,
.articlelinks {
  display: grid;
  gap: 9px;
}
.articleproducts a,
.articlelinks a:not(.button) {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px;
}
.articleproducts small {
  display: block;
  color: var(--muted);
}
.ad-below-tool {
  clear: both;
}
.guidegrid h2 {
  margin: 16px 0 7px;
  font-size: 20px;
}

@media (max-width: 800px) {
  .pagehero {
    padding-top: 42px !important;
  }
  .pagehero h1 {
    letter-spacing: -2px;
  }
  .contentgrid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .singletool,
  .test {
    margin-left: 14px;
    margin-right: 14px;
  }
  .ad {
    height: 70px;
    margin-left: 14px;
    margin-right: 14px;
  }
}

.affiliate-products {
  border-top: 1px solid var(--line);
}
.affiliate-products > span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 2px;
}
.affiliate-products > p {
  max-width: 720px;
  color: var(--muted);
  line-height: 1.65;
}
.affiliate-products > div {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 20px 0;
}
.affiliate-products > div a {
  display: grid;
  grid-template-columns: 1fr auto;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px;
}
.affiliate-products small {
  display: block;
  grid-column: 1;
  color: var(--muted);
}
.affiliate-products em {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
  color: var(--blue);
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
}
@media (max-width: 800px) {
  .affiliate-products > div {
    grid-template-columns: 1fr;
  }
}

.byline {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}
.pagehero .byline {
  justify-content: center;
  margin-top: 22px;
}
.byline a,
.method-link a,
.sources a,
.trust-links a {
  color: var(--blue);
  font-weight: 750;
}
.deep-content,
.home-diagnosis,
.guide-library-intro {
  max-width: 980px !important;
  line-height: 1.75;
}
.deep-content h2,
.home-diagnosis h2,
.guide-library-intro h2 {
  margin-top: 42px;
  font-size: clamp(27px, 4vw, 38px);
  letter-spacing: -1px;
}
.deep-content p,
.home-diagnosis > p,
.guide-library-intro p {
  color: var(--muted);
}
.method-link {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.home-diagnosis > span,
.article-category {
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.home-diagnosis > h2 {
  margin: 10px 0 14px;
}
.home-diagnosis .lead {
  max-width: 820px;
  font-size: 18px;
}
.diagnosis-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 30px 0;
}
.diagnosis-grid article {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px;
  background: var(--white);
}
.diagnosis-grid h3 {
  margin-top: 0;
}
.diagnosis-grid p {
  color: var(--muted);
  line-height: 1.65;
}
.trust-note {
  border-left: 4px solid var(--aqua);
  background: var(--wash);
  padding: 18px 20px;
}
.trust-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.takeaways {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 4px 24px 12px;
  background: var(--wash);
}
.takeaways li {
  margin: 10px 0;
}
.guide-article {
  max-width: 850px;
}
.guide-article .byline {
  margin: 18px 0 28px;
}
.guide-article .ad {
  width: 100%;
  margin: 55px 0;
}
.articleproducts a {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 20px;
}
.articleproducts a em {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
  color: var(--blue);
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
}
.sources {
  border-top: 1px solid var(--line);
}
.sources li {
  margin: 10px 0;
}
.trustpage .byline {
  justify-content: space-between;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  margin: 28px 0;
}
.editorial-note {
  background: var(--wash);
  border-radius: 14px;
  padding: 4px 22px 18px;
}
.provider-depth {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-top: 5px !important;
  padding-bottom: 35px !important;
}

@media (max-width: 800px) {
  .diagnosis-grid {
    grid-template-columns: 1fr;
  }
  .articleproducts a {
    grid-template-columns: 1fr;
  }
  .articleproducts a em {
    grid-column: 1;
    grid-row: auto;
  }
  .byline span:nth-of-type(odd) {
    display: none;
  }
}
