.selection-guide-page {
  --selection-ink: #0f1b33;
  --selection-muted: #60718a;
  --selection-line: #dce4ee;
  --selection-blue: #2f66ef;
  color: var(--selection-ink);
  background: #fff;
}

.selection-guide-page main { overflow: clip; }

.selection-hero {
  border-bottom: 1px solid #edf1f6;
  background: #f7f9fc;
}
.selection-hero__layout {
  min-height: 430px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 0 68px;
}
.selection-hero__copy { width: 100%; text-align: center; }
.selection-hero__copy .breadcrumb { justify-content: center; margin: 0 0 34px; }
.selection-hero__copy h1 {
  max-width: 940px;
  margin: 0 auto 18px;
  color: var(--selection-ink);
  font-size: clamp(34px, 3.2vw, 44px);
  line-height: 1.2;
  letter-spacing: -.045em;
  text-wrap: balance;
}
.selection-hero__copy > p {
  max-width: 820px;
  margin: 0 auto;
  color: var(--selection-muted);
  font-size: 17px;
  line-height: 1.75;
}
.selection-hero__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}
.selection-hero__tags li {
  padding: 7px 13px;
  border-radius: 999px;
  color: #45566f;
  background: #edf1f6;
  font-size: 12px;
}
.selection-primary-cta {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 30px;
  padding: 0 28px;
  border-radius: 7px;
  color: #fff;
  background: var(--selection-blue);
  box-shadow: 0 8px 18px rgba(47, 102, 239, .2);
  font-size: 14px;
  font-weight: 700;
}
.selection-primary-cta span { font-size: 17px; transition: transform .2s ease; }
.selection-primary-cta:hover span { transform: translateY(2px); }
.selection-primary-cta:focus-visible { outline: 3px solid rgba(47, 102, 239, .28); outline-offset: 4px; }

.selection-section { padding: 84px 0; }
.selection-section__head {
  max-width: 820px;
  margin: 0 auto 38px;
  text-align: center;
}
.selection-section__head h2 {
  margin: 0;
  color: var(--selection-ink);
  font-size: clamp(28px, 2.5vw, 34px);
  line-height: 1.28;
  letter-spacing: -.035em;
  text-wrap: balance;
}
.selection-section__head > p {
  margin: 12px 0 0;
  color: var(--selection-muted);
  font-size: 14px;
  line-height: 1.75;
}

.selection-compare { background: #fff; }
.selection-table-hint { display: none; }
.selection-table-scroll {
  position: relative;
  max-width: 100%;
  overflow-x: auto;
  border: 1px solid #d4deeb;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(25, 50, 82, .09);
  scrollbar-color: #8eafea #edf2f8;
}
.selection-table-scroll::before {
  position: absolute;
  z-index: 3;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, #9caabc 0 21%, #6f87a7 21% 63%, #2f66ef 63% 100%);
}
.selection-table-scroll:focus-visible { outline: 3px solid rgba(47, 102, 239, .2); outline-offset: 3px; }
.selection-table-scroll table { width: 100%; min-width: 850px; border-collapse: separate; border-spacing: 0; table-layout: fixed; }
.selection-table-scroll th,
.selection-table-scroll td {
  padding: 20px 22px;
  border-right: 1px solid #dce4ee;
  border-bottom: 1px solid #dce4ee;
  text-align: left;
  vertical-align: top;
}
.selection-table-scroll thead th { padding-top: 25px; color: #40526b; background: #f6f8fb; }
.selection-table-scroll thead th:first-child { width: 180px; color: var(--selection-ink); background: #f1f4f8; }
.selection-table-scroll thead th:nth-child(2) { background: #f7f9fc; }
.selection-table-scroll thead th:last-child { color: #174d9b; background: linear-gradient(135deg, #edf4ff, #f6f9ff); }
.selection-table-scroll thead span {
  display: block;
  margin-bottom: 7px;
  color: #7c8ba0;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
}
.selection-table-scroll thead th:last-child span { color: #4c75b7; }
.selection-table-scroll thead strong { display: block; font-size: 16px; line-height: 1.35; }
.selection-table-scroll tbody { counter-reset: selection-dimension; }
.selection-table-scroll tbody tr { counter-increment: selection-dimension; }
.selection-table-scroll tbody th { color: #14243b; background: #f8fafc; }
.selection-table-scroll tbody th::before {
  display: block;
  margin-bottom: 9px;
  color: #7890ad;
  content: counter(selection-dimension, decimal-leading-zero);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
}
.selection-table-scroll tbody th strong { font-size: 14px; }
.selection-table-scroll tbody td { color: #53657c; background: #fff; font-size: 12px; line-height: 1.75; }
.selection-table-scroll tbody td:last-child {
  color: #284d78;
  background: #f6faff;
  box-shadow: inset 3px 0 0 rgba(47, 102, 239, .12);
}
.selection-table-scroll tr:last-child > * { border-bottom: 0; }
.selection-table-scroll tr > *:last-child { border-right: 0; }
.selection-compare-boundary {
  margin: 18px 0 0;
  padding-left: 12px;
  border-left: 3px solid #b9c9de;
  color: #6f7f93;
  font-size: 11px;
  line-height: 1.7;
}
.selection-application-link { margin: 24px 0 0; color: #6c7b91; font-size: 13px; text-align: center; }
.selection-application-link a {
  color: var(--selection-blue);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(47, 102, 239, .35);
  text-underline-offset: 3px;
}

.selection-scenes { background: #f6f9fc; }
.selection-scene-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.selection-scene-grid article {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid #d9e2ed;
  border-radius: 10px;
  background: #fff;
}
.selection-scene-grid article > span {
  width: fit-content;
  padding: 5px 9px;
  border-radius: 4px;
  color: #2261d8;
  background: #edf3ff;
  font-size: 11px;
  font-weight: 700;
}
.selection-scene-grid h3 { margin: 18px 0 16px; color: var(--selection-ink); font-size: 20px; line-height: 1.45; }
.selection-scene-grid strong { color: #1e2e46; font-size: 13px; }
.selection-scene-grid p { margin: 12px 0 0; color: var(--selection-muted); font-size: 12px; line-height: 1.7; }

.selection-verify {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(47, 102, 239, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 102, 239, .035) 1px, transparent 1px),
    #f7f9fc;
  background-size: 32px 32px;
}
.selection-verify::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(760px, 80vw);
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(47, 102, 239, .65), transparent);
  transform: translateX(-50%);
}
.selection-verify .container { position: relative; }
.selection-verify__head { max-width: 940px; }
.selection-verify__head h2 { max-width: 900px; margin-inline: auto; }
.selection-verify__head > p { max-width: 760px; margin-inline: auto; }
.selection-verify__steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.selection-verify__steps li {
  position: relative;
  min-height: 250px;
  display: grid;
  align-content: start;
  gap: 26px;
  padding: 30px 32px 32px;
  overflow: hidden;
  border: 1px solid #d8e3f2;
  border-radius: 16px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 18px 42px rgba(27, 53, 88, .08);
}
.selection-verify__steps li::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  content: "";
  background: var(--selection-blue);
}
.selection-verify__steps li::after {
  position: absolute;
  right: -38px;
  bottom: -50px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(47, 102, 239, .12);
  border-radius: 50%;
  content: "";
}
.selection-verify__number {
  width: fit-content;
  min-width: 54px;
  padding: 8px 11px;
  border: 1px solid #c8d8f2;
  border-radius: 999px;
  color: var(--selection-blue);
  background: #f4f8ff;
  font-size: 18px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .04em;
}
.selection-verify__steps h3 { margin: 0 0 12px; color: var(--selection-ink); font-size: 20px; line-height: 1.4; }
.selection-verify__steps p { max-width: 480px; margin: 0; color: var(--selection-muted); font-size: 13px; line-height: 1.9; }
.selection-verify__cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 28px;
  align-items: center;
  gap: 20px;
  min-height: 74px;
  margin-top: 22px;
  padding: 18px 26px;
  border-radius: 14px;
  color: #fff;
  background: #205ad7;
  box-shadow: 0 16px 34px rgba(32, 90, 215, .24);
  font-size: 14px;
  line-height: 1.65;
  font-weight: 700;
  transition: background-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.selection-verify__cta::after { content: "\2192"; font-size: 22px; text-align: right; transition: transform .2s ease; }
.selection-verify__cta:hover { color: #fff; background: #174fc7; box-shadow: 0 20px 38px rgba(32, 90, 215, .3); transform: translateY(-2px); }
.selection-verify__cta:hover::after { transform: translateX(3px); }
.selection-verify__cta:focus-visible { outline: 3px solid rgba(47, 102, 239, .28); outline-offset: 4px; }

.selection-decision-notes { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-top: 22px; }
.selection-decision-notes article { padding: 24px; border: 1px solid #d9e3f1; border-radius: 14px; background: #f8faff; }
.selection-decision-notes h3 { margin: 0 0 10px; color: var(--selection-ink); font-size: 18px; line-height: 1.45; }
.selection-decision-notes p,
.selection-network-choice { margin: 0; color: var(--selection-muted); font-size: 13px; line-height: 1.85; }
.selection-network-choice { margin-top: 16px; text-align: center; }
.selection-faq { margin-top: 54px; border-top: 1px solid #cbd8ea; }
.selection-faq header { padding: 32px 0 20px; text-align: center; }
.selection-faq header h2 { margin: 0; color: var(--selection-ink); font-size: 30px; }
.selection-faq header p { margin: 10px 0 0; color: var(--selection-muted); }
.selection-faq details { border-bottom: 1px solid #d6e0ee; }
.selection-faq summary { display: grid; grid-template-columns: 38px minmax(0, 1fr) 24px; gap: 14px; align-items: center; min-height: 78px; cursor: pointer; list-style: none; }
.selection-faq summary::-webkit-details-marker { display: none; }
.selection-faq summary span { color: var(--selection-blue); font-size: 11px; font-weight: 800; }
.selection-faq summary strong { color: var(--selection-ink); font-size: 15px; }
.selection-faq summary i { font-size: 20px; font-style: normal; }
.selection-faq details[open] summary i { transform: rotate(45deg); }
.selection-faq details > p { margin: 0; padding: 0 38px 24px 52px; color: var(--selection-muted); font-size: 13px; line-height: 1.9; }

#consult-anchor { scroll-margin-top: 72px; }
.selection-contact-note { display: grid; gap: 5px; margin: 20px 0 22px; color: #c1d2df; }
.selection-contact-note strong { color: #fff; font-size: 17px; }

@media (max-width: 980px) {
  .selection-scene-grid { grid-template-columns: 1fr; }
  .selection-decision-notes { grid-template-columns: 1fr; }
  .selection-scene-grid article { min-height: 0; }
  .selection-verify__steps { grid-template-columns: 1fr; }
  .selection-verify__steps li { min-height: 0; grid-template-columns: 58px minmax(0, 1fr); }
}

@media (max-width: 620px) {
  .selection-hero__layout { min-height: 0; padding: 34px 0 48px; }
  .selection-hero__copy .breadcrumb { justify-content: flex-start; margin-bottom: 28px; font-size: 8px; text-align: left; }
  .selection-hero__copy h1 { font-size: 31px; line-height: 1.22; }
  .selection-hero__copy > p { font-size: 14px; line-height: 1.75; }
  .selection-hero__tags { gap: 7px; margin-top: 20px; }
  .selection-hero__tags li { padding: 6px 9px; font-size: 10px; }
  .selection-primary-cta { width: 100%; min-height: 48px; justify-content: space-between; margin-top: 24px; padding: 0 16px; font-size: 12px; }
  .selection-section { padding: 62px 0; }
  .selection-section__head { margin-bottom: 30px; }
  .selection-section__head h2 { font-size: 27px; }
  .selection-section__head > p { font-size: 13px; }
  .selection-table-hint {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    margin: 0 0 10px;
    color: #647895;
    font-size: 10px;
  }
  .selection-table-hint span { color: var(--selection-blue); font-size: 15px; }
  .selection-table-scroll { border-radius: 12px; }
  .selection-table-scroll table { min-width: 780px; }
  .selection-table-scroll th,
  .selection-table-scroll td { padding: 17px; }
  .selection-table-scroll thead th:first-child,
  .selection-table-scroll tbody th {
    position: sticky;
    z-index: 2;
    left: 0;
    box-shadow: 10px 0 18px rgba(31, 52, 78, .08);
  }
  .selection-table-scroll thead th:first-child { z-index: 4; width: 140px; }
  .selection-application-link { font-size: 12px; line-height: 1.75; text-align: left; }
  .selection-scene-grid article { padding: 20px; }
  .selection-scene-grid h3 { font-size: 19px; }
  .selection-verify { background-size: 24px 24px; }
  .selection-verify__steps { gap: 14px; }
  .selection-verify__steps li { grid-template-columns: 1fr; gap: 18px; padding: 24px 22px 26px; border-radius: 13px; }
  .selection-verify__number { min-width: 50px; font-size: 16px; }
  .selection-verify__steps h3 { font-size: 18px; }
  .selection-verify__steps p { font-size: 12px; line-height: 1.8; }
  .selection-verify__cta { min-height: 0; margin-top: 16px; padding: 18px 20px; border-radius: 12px; font-size: 12px; }
}

@media (max-width: 768px) {
  .selection-guide-page .woot-widget-bubble { bottom: calc(10px + env(safe-area-inset-bottom)) !important; }
}

@media (max-width: 340px) {
  .selection-hero__copy h1 { font-size: 28px; }
  .selection-primary-cta { font-size: 11px; }
  .selection-section__head h2 { font-size: 25px; }
}

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .selection-primary-cta span,
  .selection-verify__cta,
  .selection-verify__cta::after { transition: none; }
}
