.choice-article {
  --choice-navy: #0f172a;
  --choice-navy-soft: #18243a;
  --choice-orange: #f97316;
  --choice-orange-dark: #c2410c;
  --choice-blue: #2563eb;
  --choice-paper: #f6f3ed;
  --choice-soft: #f8fafc;
  --choice-line: #dce3ea;
  --choice-copy: #475569;
  color: var(--choice-navy);
  background: #fff;
}

.choice-article a {
  -webkit-tap-highlight-color: transparent;
}

.choice-article a:focus-visible,
.choice-article [tabindex]:focus-visible {
  outline: 3px solid #1d4ed8;
  outline-offset: 4px;
  box-shadow: 0 0 0 7px rgba(255, 255, 255, .96);
}

.choice-wide {
  width: min(100% - 40px, 1180px);
  margin-inline: auto;
}

.choice-reading-progress {
  position: sticky;
  top: 80px;
  z-index: 40;
  height: 3px;
  pointer-events: none;
  background: rgba(226, 232, 240, .72);
}

.choice-reading-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--choice-orange), var(--choice-blue));
  transition: width .08s linear;
}

.choice-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 42px 0 72px;
  color: #fff;
  background:
    radial-gradient(circle at 85% 8%, rgba(37, 99, 235, .18), transparent 31%),
    linear-gradient(135deg, #0f172a 0%, #111c31 58%, #0b1324 100%);
}

.choice-hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .1;
  background-image:
    linear-gradient(rgba(255, 255, 255, .18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .18) 1px, transparent 1px);
  background-size: 52px 52px;
  content: "";
  mask-image: linear-gradient(90deg, transparent, #000 45%, #000);
}

.choice-hero .insights-breadcrumb {
  margin-bottom: 38px;
  color: #94a3b8;
}

.choice-hero .insights-breadcrumb a {
  color: #fdba74;
}

.choice-hero-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, .92fr) minmax(430px, 1.08fr);
  gap: clamp(40px, 5vw, 76px);
}

.choice-hero-copy {
  position: relative;
  z-index: 1;
}

.choice-hero .insights-eyebrow {
  margin-bottom: 20px;
  color: #fdba74;
}

.choice-hero h1 {
  max-width: 720px;
  margin: 0;
  color: #fff;
  font-size: clamp(43px, 5vw, 66px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -.045em;
  text-wrap: balance;
}

.choice-hero .insights-article-deck {
  max-width: 650px;
  margin: 25px 0 0;
  color: #cbd5e1;
  font-size: clamp(18px, 1.6vw, 21px);
  line-height: 1.65;
}

.choice-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 22px;
  margin-top: 32px;
}

.choice-primary-action {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid var(--choice-orange-dark);
  border-radius: 8px;
  color: #fff;
  background: var(--choice-orange-dark);
  box-shadow: 0 10px 24px rgba(249, 115, 22, .18);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.choice-primary-action:hover {
  border-color: #9a3412;
  color: #fff;
  background: #9a3412;
  transform: translateY(-1px);
}

.choice-secondary-action {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, .42);
  color: #e2e8f0;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: border-color .2s ease, color .2s ease;
}

.choice-secondary-action:hover {
  border-color: #fdba74;
  color: #fff;
}

.choice-hero-visual {
  position: relative;
  margin: 0;
  animation: choice-reveal .8s cubic-bezier(.2, .7, .2, 1) both;
}

.choice-hero-visual::before {
  position: absolute;
  top: -17px;
  right: -18px;
  width: 82px;
  height: 82px;
  border-top: 2px solid rgba(251, 146, 60, .75);
  border-right: 2px solid rgba(251, 146, 60, .75);
  content: "";
}

.choice-hero-visual img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 18px;
  box-shadow: 0 30px 70px rgba(2, 6, 23, .38);
}

.choice-article-body {
  padding: 78px 0 92px;
  overflow-x: clip;
  background: #fff;
}

.choice-body-grid {
  display: grid;
  grid-template-columns: 210px minmax(0, 780px);
  justify-content: center;
  gap: clamp(40px, 6vw, 78px);
}

.choice-toc {
  position: sticky;
  top: 112px;
  align-self: start;
  padding: 6px 0 8px 18px;
  border-left: 1px solid var(--choice-line);
}

.choice-toc-title {
  margin: 0 0 15px;
  color: #64748b;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.choice-toc a {
  display: block;
  margin: 0;
  padding: 7px 0;
  color: #64748b;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.45;
  text-decoration: none;
  transition: color .2s ease, transform .2s ease;
}

.choice-toc a:hover,
.choice-toc a.is-active {
  color: var(--choice-orange-dark);
  transform: translateX(3px);
}

.choice-content.insights-article-content {
  width: 100%;
  max-width: none;
  margin: 0;
  color: var(--choice-copy);
  font-size: 18px;
  line-height: 1.82;
}

.choice-content > p {
  margin: 0 0 24px;
}

.choice-content .choice-opening {
  margin-bottom: 26px;
  color: #334155;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.72;
}

.choice-content .choice-opening::first-letter {
  margin-right: 1px;
  color: var(--choice-orange);
  font-size: 1.75em;
  font-weight: 800;
  line-height: .8;
  vertical-align: -.06em;
}

.choice-content .choice-opening-note {
  position: relative;
  margin: 0 0 64px;
  padding: 25px 28px 25px 30px;
  border-left: 4px solid var(--choice-orange);
  color: #7c2d12;
  background: #fff7ed;
  font-size: 17px;
  line-height: 1.72;
}

.choice-content .choice-opening-note em {
  color: var(--choice-orange-dark);
  font-style: normal;
  font-weight: 800;
}

.choice-content.insights-article-content > h2 {
  position: relative;
  scroll-margin-top: 116px;
  margin: 66px 0 22px;
  padding-top: 23px;
  border-top: 1px solid var(--choice-line);
  color: var(--choice-navy);
  font-size: clamp(29px, 3vw, 38px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -.026em;
  text-wrap: balance;
}

.choice-content.insights-article-content > h2::before {
  position: absolute;
  top: -2px;
  left: 0;
  width: 58px;
  height: 3px;
  background: linear-gradient(90deg, var(--choice-orange) 0 64%, var(--choice-blue) 64%);
  content: "";
}

.choice-content.insights-article-content > h2:first-of-type {
  margin-top: 0;
}

.choice-content.insights-article-content > h3 {
  scroll-margin-top: 116px;
  margin: 20px 0 0;
  padding: 22px 24px;
  border: 1px solid var(--choice-line);
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
  color: var(--choice-navy);
  background: var(--choice-soft);
  font-size: 19px;
  line-height: 1.45;
}

.choice-content.insights-article-content > h3 + p {
  margin: 0 0 14px;
  padding: 0 24px 24px;
  border: 1px solid var(--choice-line);
  border-top: 0;
  border-radius: 0 0 10px 10px;
  background: var(--choice-soft);
}

.choice-content .insights-article-list {
  display: grid;
  gap: 0;
  margin: 30px 0 42px;
  padding: 0;
  border-top: 1px solid var(--choice-line);
  list-style: none;
}

.choice-content .insights-article-list li {
  position: relative;
  margin: 0;
  padding: 20px 14px 20px 48px;
  border-bottom: 1px solid var(--choice-line);
}

.choice-content .insights-article-list li::before {
  position: absolute;
  top: 25px;
  left: 12px;
  width: 18px;
  height: 18px;
  border: 2px solid #fdba74;
  border-radius: 50%;
  color: var(--choice-orange-dark);
  background: #fff7ed;
  content: "";
}

.choice-content .insights-article-list li::after {
  position: absolute;
  top: 29px;
  left: 18px;
  width: 5px;
  height: 8px;
  border-right: 2px solid var(--choice-orange-dark);
  border-bottom: 2px solid var(--choice-orange-dark);
  content: "";
  transform: rotate(45deg);
}

.choice-content strong {
  color: var(--choice-navy);
  font-weight: 760;
}

.choice-compare {
  width: calc(100% + 100px);
  margin: 46px -50px 74px;
  padding: 34px;
  border: 1px solid #d9dee6;
  border-radius: 16px;
  background: var(--choice-paper);
}

.choice-compare-grid {
  display: grid;
  align-items: stretch;
  grid-template-columns: minmax(0, 1fr) 54px minmax(0, 1fr);
}

.choice-compare-path {
  min-width: 0;
  padding: 10px 16px 8px;
}

.choice-compare-label {
  margin-bottom: 26px;
  color: var(--choice-navy);
  font-size: 16px;
  font-weight: 800;
}

.choice-compare-path ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.choice-compare-path li {
  padding: 6px 9px;
  border: 1px solid #d7dde5;
  border-radius: 6px;
  color: #475569;
  background: rgba(255, 255, 255, .72);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.choice-landing-frame {
  position: relative;
  display: grid;
  width: min(100%, 250px);
  min-height: 162px;
  align-content: start;
  gap: 10px;
  margin-inline: auto;
  padding: 28px 21px 20px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 12px 26px rgba(15, 23, 42, .08);
}

.choice-landing-frame::before,
.choice-site-map::before {
  position: absolute;
  top: 10px;
  left: 12px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #94a3b8;
  box-shadow: 9px 0 #cbd5e1, 18px 0 #cbd5e1;
  content: "";
}

.choice-landing-frame span {
  display: block;
  height: 10px;
  border-radius: 2px;
  background: #e2e8f0;
}

.choice-landing-frame span:first-child {
  width: 72%;
  height: 16px;
  background: var(--choice-navy-soft);
}

.choice-landing-frame span:nth-child(3) {
  width: 84%;
}

.choice-landing-frame b {
  display: block;
  width: 46%;
  height: 25px;
  margin-top: 12px;
  border-radius: 4px;
  background: var(--choice-orange);
}

.choice-compare-divider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.choice-compare-divider::before {
  width: 1px;
  height: 100%;
  background: #cbd5e1;
  content: "";
}

.choice-compare-divider span {
  position: absolute;
  width: 10px;
  height: 10px;
  border: 2px solid var(--choice-orange);
  border-radius: 50%;
  background: var(--choice-paper);
}

.choice-site-map {
  position: relative;
  display: grid;
  width: min(100%, 278px);
  min-height: 162px;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 10px;
  margin-inline: auto;
  padding: 28px 13px 13px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 12px 26px rgba(15, 23, 42, .08);
}

.choice-site-map span {
  display: block;
  min-height: 48px;
  border: 1px solid #dbe3ec;
  border-radius: 5px;
  background: linear-gradient(180deg, #dbeafe 0 38%, #f8fafc 38%);
}

.choice-site-map span:first-child {
  grid-column: span 2;
  border-color: #bfdbfe;
}

.choice-site-map span:nth-child(4) {
  grid-column: span 2;
}

.choice-mid-cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 60px 0 72px;
  padding: 30px 32px;
  overflow: hidden;
  border-radius: 12px;
  color: #fff;
  background: var(--choice-navy);
}

.choice-mid-cta::after {
  position: absolute;
  right: -46px;
  bottom: -62px;
  width: 160px;
  height: 160px;
  border: 26px solid rgba(37, 99, 235, .18);
  border-radius: 50%;
  content: "";
}

.choice-mid-cta > * {
  position: relative;
  z-index: 1;
}

.choice-content.insights-article-content .choice-mid-cta h2 {
  margin: 0;
  padding: 0;
  border: 0;
  color: #fff;
  font-size: 25px;
  line-height: 1.2;
}

.choice-content.insights-article-content .choice-mid-cta h2::before {
  display: none;
}

.choice-mid-cta p {
  margin: 7px 0 0;
  color: #cbd5e1;
  font-size: 15px;
}

.choice-content .insights-table-wrap {
  width: calc(100% + 100px);
  max-width: none;
  margin: 34px -50px 64px;
  overflow: hidden;
  border: 1px solid #d8dee7;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, .07);
}

.choice-content .insights-table-wrap table {
  display: block;
  width: 100%;
  min-width: 0;
  color: #475569;
  font-size: 15px;
}

.choice-content .insights-table-wrap thead,
.choice-content .insights-table-wrap tbody {
  display: block;
}

.choice-content .insights-table-wrap tr {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(160px, .34fr);
}

.choice-content .insights-table-wrap th,
.choice-content .insights-table-wrap td {
  min-width: 0;
  padding: 15px 18px;
  border-right: 1px solid var(--choice-line);
  border-bottom: 1px solid var(--choice-line);
}

.choice-content .insights-table-wrap th {
  color: #fff;
  background: var(--choice-navy-soft);
}

.choice-content .insights-table-wrap th:last-child,
.choice-content .insights-table-wrap td:last-child {
  border-right: 0;
  color: var(--choice-orange-dark);
  background: #fffaf5;
  font-weight: 800;
}

.choice-content .insights-table-wrap thead th:last-child {
  color: #fff;
  background: #293750;
}

.choice-content .insights-table-wrap tbody tr:last-child td {
  border-bottom: 0;
}

.choice-content .insights-table-wrap tbody tr:nth-child(even) td:first-child {
  background: var(--choice-soft);
}

#reikia-abieju {
  margin-top: 82px;
}

#reikia-abieju + p {
  color: #334155;
  font-size: 20px;
  font-weight: 550;
  line-height: 1.7;
}

.choice-final-cta {
  position: relative;
  padding: 68px 0;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
  color: var(--choice-navy);
  background: var(--choice-paper);
}

.choice-final-cta::before {
  position: absolute;
  right: max(20px, calc((100vw - 1180px) / 2));
  bottom: -130px;
  width: 330px;
  height: 330px;
  border: 60px solid rgba(37, 99, 235, .08);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.choice-final-cta-inner {
  position: relative;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 720px) auto;
  justify-content: space-between;
  gap: 40px;
}

.choice-final-cta h2 {
  margin: 0;
  color: var(--choice-navy);
  font-size: clamp(31px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.03em;
}

.choice-final-cta p {
  max-width: 690px;
  margin: 16px 0 0;
  color: var(--choice-copy);
  font-size: 17px;
  line-height: 1.65;
}

@keyframes choice-reveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1040px) {
  .choice-hero-grid {
    grid-template-columns: minmax(0, .95fr) minmax(380px, 1.05fr);
    gap: 36px;
  }

  .choice-body-grid {
    width: min(100%, 820px);
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .choice-toc {
    position: static;
    display: grid;
    max-width: 100%;
    grid-auto-flow: column;
    grid-auto-columns: minmax(220px, 1fr);
    gap: 0;
    padding: 18px;
    overflow-x: auto;
    border: 1px solid var(--choice-line);
    border-radius: 10px;
    background: var(--choice-soft);
    overscroll-behavior-inline: contain;
  }

  .choice-toc-title {
    display: none;
  }

  .choice-toc a {
    display: flex;
    min-height: 58px;
    align-items: center;
    padding: 8px 16px;
    border-right: 1px solid var(--choice-line);
  }
}

@media (max-width: 820px) {
  .choice-hero {
    padding-bottom: 58px;
  }

  .choice-hero-grid {
    grid-template-columns: 1fr;
  }

  .choice-hero-copy {
    max-width: 720px;
  }

  .choice-hero-visual {
    width: min(100%, 720px);
    margin-top: 8px;
  }

  .choice-compare,
  .choice-content .insights-table-wrap {
    width: 100%;
    margin-inline: 0;
  }
}

@media (max-width: 640px) {
  .choice-wide {
    width: min(100% - 32px, 1180px);
  }

  .choice-reading-progress {
    top: 80px;
  }

  .choice-hero {
    padding: 28px 0 48px;
  }

  .choice-hero .insights-breadcrumb {
    margin-bottom: 28px;
    font-size: 12px;
  }

  .choice-hero h1 {
    font-size: clamp(36px, 10.5vw, 44px);
    line-height: 1.04;
  }

  .choice-hero .insights-article-deck {
    font-size: 17px;
    line-height: 1.6;
  }

  .choice-hero-actions,
  .choice-primary-action {
    width: 100%;
  }

  .choice-secondary-action {
    justify-content: center;
    margin-inline: auto;
  }

  .choice-hero-visual::before {
    display: none;
  }

  .choice-hero-visual img {
    border-radius: 12px;
  }

  .choice-article-body {
    padding: 44px 0 60px;
  }

  .choice-body-grid {
    gap: 30px;
  }

  .choice-toc {
    grid-auto-columns: minmax(205px, 1fr);
    padding: 10px;
  }

  .choice-toc a {
    min-height: 64px;
    font-size: 12px;
  }

  .choice-content.insights-article-content {
    font-size: 17px;
    line-height: 1.76;
  }

  .choice-content .choice-opening {
    font-size: 20px;
    line-height: 1.65;
  }

  .choice-content .choice-opening-note {
    margin-bottom: 50px;
    padding: 22px 20px;
    font-size: 16px;
  }

  .choice-content.insights-article-content > h2 {
    scroll-margin-top: 100px;
    margin-top: 54px;
    padding-top: 19px;
    font-size: 29px;
  }

  .choice-content .insights-article-list li {
    padding: 18px 4px 18px 42px;
  }

  .choice-content .insights-article-list li::before {
    top: 23px;
    left: 7px;
  }

  .choice-content .insights-article-list li::after {
    top: 27px;
    left: 13px;
  }

  .choice-compare {
    margin-block: 38px 58px;
    padding: 22px 18px;
  }

  .choice-compare-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .choice-compare-divider {
    height: 34px;
  }

  .choice-compare-divider::before {
    width: 100%;
    height: 1px;
  }

  .choice-compare-path {
    padding-inline: 4px;
  }

  .choice-compare-label {
    margin-bottom: 18px;
  }

  .choice-mid-cta {
    align-items: stretch;
    flex-direction: column;
    margin: 48px 0 56px;
    padding: 26px 22px;
  }

  .choice-content .insights-table-wrap {
    margin-block: 28px 52px;
    overflow: visible;
    border-radius: 9px;
  }

  .choice-content .insights-table-wrap table {
    font-size: 13px;
    line-height: 1.45;
  }

  .choice-content .insights-table-wrap tr {
    grid-template-columns: minmax(0, 1fr) minmax(105px, .43fr);
  }

  .choice-content .insights-table-wrap th,
  .choice-content .insights-table-wrap td {
    padding: 12px 10px;
    overflow-wrap: anywhere;
  }

  .choice-content.insights-article-content > h3 {
    padding: 18px;
    font-size: 18px;
  }

  .choice-content.insights-article-content > h3 + p {
    padding: 0 18px 20px;
  }

  .choice-final-cta {
    padding: 54px 0;
  }

  .choice-final-cta-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .choice-final-cta h2 {
    font-size: 34px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .choice-hero-visual {
    animation: none;
  }

  .choice-primary-action,
  .choice-secondary-action,
  .choice-toc a,
  .choice-reading-progress span {
    transition: none;
  }
}
