:root {
  --bg: #090a0f;
  --panel: #11141c;
  --panel-2: #181c26;
  --row: #1a1f2a;
  --row-alt: #151923;
  --text: #f4f6fb;
  --muted: #a9b2c1;
  --line: rgba(255, 255, 255, .11);
  --red: #ef3e5f;
  --orange: #f3a51c;
  --cta-bg: #c9482f;
  --cta-bg-hover: #ce4a32;
  --cta-bg-active: #a93a27;
  --cta-border: rgba(239, 104, 67, .42);
  --cta-border-hover: rgba(242, 111, 70, .62);
  --cta-border-active: rgba(169, 58, 39, .78);
  --cta-text: #fff;
  --green: #23c479;
  --blue: #4aa9ff;
  --shadow: 0 18px 48px rgba(0, 0, 0, .34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 50% -180px, rgba(239, 62, 95, .18), transparent 42%),
    linear-gradient(180deg, #090a0f 0%, #10131a 46%, #08090d 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.42;
}

a {
  color: inherit;
}

.age-bar {
  display: flex;
  justify-content: center;
  gap: 18px;
  padding: 6px 12px;
  color: #d8deea;
  background: #151923;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.age-bar span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.age-bar span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--orange);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 58px;
  padding: 8px max(18px, calc((100vw - 1160px) / 2));
  background: rgba(5, 6, 10, .96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand,
.header-nav a,
.site-footer a,
.review-link {
  text-decoration: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 19px;
  font-weight: 950;
  letter-spacing: 0;
}

.brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.brand span {
  white-space: nowrap;
}

.header-nav {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.header-nav a:hover,
.site-footer a:hover,
.review-link:hover {
  color: var(--orange);
}

.header-cta,
.primary-cta,
.visit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid var(--cta-border);
  border-radius: 6px;
  padding: 10px 16px;
  color: var(--cta-text);
  background: var(--cta-bg);
  box-shadow: 0 1px 2px rgba(0, 0, 0, .22);
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  transition: background .15s ease, border-color .15s ease, box-shadow .15s ease;
}

.header-cta:hover,
.primary-cta:hover,
.visit-button:hover,
.mobile-sticky a:hover {
  border-color: var(--cta-border-hover);
  background: var(--cta-bg-hover);
  box-shadow: 0 2px 5px rgba(0, 0, 0, .24);
}

.header-cta:active,
.primary-cta:active,
.visit-button:active,
.mobile-sticky a:active {
  border-color: var(--cta-border-active);
  background: var(--cta-bg-active);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, .22);
}

.toplist {
  max-width: 1160px;
  margin: 0 auto;
  padding: 16px 18px 26px;
}

.toplist-hero {
  position: relative;
  min-height: 226px;
  margin: 0 0 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, #090a0f 0%, #11141c 54%, #151923 100%);
  box-shadow: var(--shadow);
}

.toplist-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9, 10, 15, .98) 0%, rgba(9, 10, 15, .9) 44%, rgba(9, 10, 15, .08) 70%);
  pointer-events: none;
}

.toplist-hero-img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 66%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.toplist-title {
  position: relative;
  z-index: 2;
  max-width: 520px;
  margin: 0;
  padding: 28px 26px 12px;
  text-align: left;
}

.eyebrow,
.section-kicker {
  margin: 0 0 6px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.toplist-title h1 {
  margin: 0;
  font-size: 40px;
  line-height: 1.04;
  letter-spacing: 0;
}

.toplist-title p:not(.eyebrow) {
  max-width: 470px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.trust-row {
  display: flex;
  position: relative;
  z-index: 2;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 520px;
  margin: 0;
  padding: 0 26px 24px;
}

.trust-row span,
.updated-pill {
  padding: 5px 10px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  color: #dfe5f1;
  background: rgba(255, 255, 255, .055);
  font-size: 12px;
  font-weight: 850;
}

.toplist-card,
.compare-table-wrap,
.faq-grid article,
.conversion-strip {
  border: 1px solid var(--line);
  background: rgba(17, 20, 28, .96);
  box-shadow: var(--shadow);
}

.toplist-card {
  overflow: hidden;
  border-radius: 8px;
}

.toplist-head {
  display: grid;
  grid-template-columns: 70px 184px minmax(350px, 1fr) 120px 142px 134px;
  gap: 0;
  padding: 0;
  color: #cfd6e3;
  background: #0f1219;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.toplist-head span {
  padding: 10px 14px;
  border-right: 1px solid rgba(255, 255, 255, .07);
}

.toplist-head span:last-child {
  border-right: 0;
}

.picker-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 10px 12px;
  background: #121620;
  border-bottom: 1px solid var(--line);
}

.filter-pill {
  min-height: 31px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 10px;
  color: #dce3ee;
  background: rgba(255, 255, 255, .045);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
}

.filter-pill.active {
  color: #10131a;
  background: var(--cta-bg);
  border-color: var(--cta-border-hover);
}

.offer-list {
  display: grid;
}

.offer-card {
  position: relative;
  display: grid;
  grid-template-columns: 70px 184px minmax(350px, 1fr) 120px 142px 134px;
  align-items: stretch;
  min-height: 128px;
  background: var(--row);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.offer-card:nth-child(even) {
  background: var(--row-alt);
}

.offer-card.is-featured {
  background:
    linear-gradient(90deg, rgba(243, 165, 28, .12), transparent 34%),
    var(--row);
}

.offer-card:hover,
.offer-card:nth-child(even):hover {
  background:
    linear-gradient(90deg, rgba(243, 165, 28, .08), transparent 32%),
    #202533;
}

.offer-card.is-featured:hover {
  background:
    linear-gradient(90deg, rgba(243, 165, 28, .16), transparent 34%),
    #202533;
}

.offer-card.is-featured::before {
  content: "Editor's pick";
  position: absolute;
  top: 0;
  left: 0;
  padding: 4px 10px;
  color: #fff;
  background: #d33d56;
  border-radius: 0 0 8px 0;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.rank-badge,
.site-cell,
.feature-cell,
.score-box,
.promo-box,
.offer-actions {
  padding: 16px 12px;
  border-right: 1px solid rgba(255, 255, 255, .09);
}

.rank-badge {
  display: grid;
  place-items: center;
  color: #dfe5f0;
  font-size: 28px;
  font-weight: 900;
}

.site-cell {
  display: grid;
  align-content: center;
  gap: 8px;
}

.site-logo {
  display: grid;
  place-items: center;
  min-height: 54px;
  padding: 6px 0;
  border-radius: 0;
  color: #fff;
  background: transparent;
  border: 0;
  box-shadow: none;
  font-size: 21px;
  font-weight: 900;
  text-decoration: none;
}

.site-logo img {
  display: block;
  max-width: 142px;
  max-height: 36px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.site-logo span {
  display: block;
}

.site-tag {
  justify-self: center;
  text-align: center;
  padding: 4px 8px;
  border-radius: 999px;
  color: #d9f7e8;
  background: rgba(35, 196, 121, .16);
  border: 1px solid rgba(35, 196, 121, .34);
  font-size: 11px;
  font-weight: 850;
}

.feature-cell {
  display: grid;
  align-content: center;
  gap: 8px;
}

.feature-cell h3 {
  margin: 0;
  color: #fff;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 850;
}

.feature-list {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  color: #e7ecf4;
  font-size: 13px;
  font-weight: 650;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 18px;
}

.feature-list li::before {
  content: "";
  position: absolute;
  top: .58em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #37c982;
}

.score-box,
.promo-box,
.offer-actions {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 5px;
  text-align: center;
}

.score-box > * {
  align-self: center;
  justify-self: center;
}

.score-box strong {
  color: #fff;
  font-size: 31px;
  line-height: 1;
}

.star-rating {
  display: flex;
  justify-content: center;
  gap: 2px;
  min-height: 17px;
}

.star-icon {
  width: 15px;
  height: 15px;
  fill: var(--orange);
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, .35));
}

.star-icon.is-half {
  fill: #ffc966;
}

.star-icon.is-empty {
  fill: rgba(255, 255, 255, .2);
}

.score-box span,
.promo-box span,
.review-link {
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
}

.promo-box strong {
  color: #fff;
  font-size: 14px;
  line-height: 1.25;
}

.offer-actions {
  border-right: 0;
}

.visit-button {
  width: 100%;
  min-height: 46px;
  font-size: 13px;
}

.compare,
.faq,
.conversion-strip {
  max-width: 1160px;
  margin: 0 auto;
  padding: 24px 18px;
}

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

.section-heading h2,
.conversion-strip h2 {
  margin: 0;
  font-size: 26px;
  line-height: 1.1;
}

.section-heading p:last-child,
.conversion-strip p:not(.section-kicker) {
  color: var(--muted);
  font-size: 15px;
}

.compare-table-wrap {
  overflow-x: auto;
  border-radius: 9px;
}

.compare-table {
  width: 100%;
  min-width: 840px;
  border-collapse: collapse;
}

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

.compare-table th {
  color: #fff;
  background: #202430;
  font-size: 12px;
  text-transform: uppercase;
}

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

.compare-site {
  display: flex;
  align-items: center;
  min-width: 156px;
  color: inherit;
  text-decoration: none;
}

.compare-site img {
  display: block;
  max-width: 112px;
  max-height: 28px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.compare-visit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  min-height: 34px;
  border: 1px solid var(--cta-border);
  border-radius: 6px;
  padding: 8px 12px;
  color: var(--cta-text);
  background: var(--cta-bg);
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .18);
  transition: background .15s ease, border-color .15s ease, box-shadow .15s ease;
}

.compare-visit:hover {
  border-color: var(--cta-border-hover);
  background: var(--cta-bg-hover);
  box-shadow: 0 2px 5px rgba(0, 0, 0, .22);
}

.conversion-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: calc(100% - 36px);
  max-width: 1124px;
  margin-top: 6px;
  margin-bottom: 6px;
  border-radius: 9px;
  background: linear-gradient(135deg, rgba(255, 49, 93, .2), rgba(17, 19, 27, .96) 48%, rgba(255, 173, 25, .14));
}

.conversion-strip p:not(.section-kicker) {
  max-width: 620px;
  margin: 8px 0 0;
}

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

.faq-grid article {
  padding: 16px;
  border-radius: 9px;
}

.faq-grid h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.faq-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.site-footer {
  max-width: 1160px;
  margin: 0 auto;
  padding: 18px 18px 28px;
  color: var(--muted);
  font-size: 12px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 10px;
}

.page-hero {
  max-width: 920px;
  margin: 0 auto;
  padding: 34px 18px 18px;
  text-align: center;
}

.page-hero h1 {
  margin: 0;
  color: #fff;
  font-size: 38px;
  line-height: 1.08;
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 10px auto 0;
  color: var(--muted);
  font-size: 16px;
}

.content-page,
.document-page,
.review-layout,
.contact-layout {
  max-width: 1160px;
  margin: 0 auto;
  padding: 16px 18px 32px;
}

.content-page {
  display: grid;
  gap: 14px;
}

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

.content-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: rgba(17, 20, 28, .96);
  box-shadow: var(--shadow);
}

.content-card h2 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 21px;
  line-height: 1.18;
}

.content-card p {
  margin: 0 0 10px;
  color: var(--muted);
}

.content-card p:last-child {
  margin-bottom: 0;
}

.document-page {
  max-width: 920px;
}

.document-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background: rgba(17, 20, 28, .96);
  box-shadow: var(--shadow);
}

.document-section {
  padding: 0 0 20px;
  margin: 0 0 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .09);
}

.document-section:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.document-section h2 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 20px;
  line-height: 1.2;
}

.document-section p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
}

.document-section p:last-child {
  margin-bottom: 0;
}

.document-list {
  margin-top: 10px;
}

.content-list {
  display: grid;
  gap: 8px;
  margin: 10px 0 0;
  padding: 0;
  color: #dfe5f0;
  list-style: none;
}

.content-list li {
  position: relative;
  padding-left: 18px;
}

.content-list li::before {
  content: "";
  position: absolute;
  top: .62em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--orange);
}

.review-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 16px;
  align-items: start;
}

.review-score-row {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.review-logo {
  display: grid;
  place-items: center;
  min-height: 76px;
}

.review-logo img {
  max-width: 170px;
  max-height: 48px;
  object-fit: contain;
}

.review-logo a,
.review-index-logo a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  text-decoration: none;
}

.review-score {
  display: block;
  color: #fff;
  font-size: 38px;
  line-height: 1;
}

.review-side {
  display: grid;
  gap: 16px;
}

.review-index-card {
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  align-content: start;
  gap: 8px;
}

.review-index-logo {
  display: grid;
  place-items: center;
  min-height: 54px;
  margin-bottom: 6px;
}

.review-index-logo img {
  max-width: 150px;
  max-height: 38px;
  object-fit: contain;
}

.review-index-summary {
  align-self: start;
}

.review-link-inline {
  justify-self: start;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.review-card-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  align-self: end;
  margin-top: 10px;
}

.review-visit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border: 1px solid var(--cta-border);
  border-radius: 6px;
  padding: 9px 14px;
  color: var(--cta-text);
  background: var(--cta-bg);
  font-size: 12px;
  font-weight: 950;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .18);
  transition: background .15s ease, border-color .15s ease, box-shadow .15s ease;
}

.review-visit-button:hover {
  border-color: var(--cta-border-hover);
  background: var(--cta-bg-hover);
  box-shadow: 0 2px 5px rgba(0, 0, 0, .22);
}

.review-bottom-action {
  display: flex;
  justify-content: center;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.review-bottom-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: 190px;
  min-height: 46px;
  border: 1px solid var(--cta-border);
  border-radius: 6px;
  padding: 11px 22px;
  color: var(--cta-text);
  background: var(--cta-bg);
  font-size: 13px;
  font-weight: 950;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .18);
  transition: background .15s ease, border-color .15s ease, box-shadow .15s ease;
}

.review-bottom-button:hover {
  border-color: var(--cta-border-hover);
  background: var(--cta-bg-hover);
  box-shadow: 0 2px 5px rgba(0, 0, 0, .22);
}

.contact-form {
  display: grid;
  gap: 14px;
  margin-top: 14px;
}

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

.contact-field {
  display: grid;
  gap: 6px;
  color: #dfe5f0;
  font-size: 13px;
  font-weight: 800;
}

.contact-input {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px 12px;
  color: #fff;
  background: #0d1017;
  font: inherit;
}

.contact-input:focus {
  outline: 2px solid rgba(243, 165, 28, .28);
  border-color: rgba(243, 165, 28, .6);
}

.contact-textarea {
  min-height: 154px;
  resize: vertical;
}

.contact-turnstile {
  min-height: 65px;
}

.contact-submit {
  justify-self: start;
  min-height: 44px;
  border: 1px solid var(--cta-border);
  border-radius: 6px;
  padding: 10px 18px;
  color: var(--cta-text);
  background: var(--cta-bg);
  box-shadow: 0 1px 2px rgba(0, 0, 0, .22);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  text-transform: uppercase;
  transition: background .15s ease, border-color .15s ease, box-shadow .15s ease;
}

.contact-submit:hover {
  border-color: var(--cta-border-hover);
  background: var(--cta-bg-hover);
  box-shadow: 0 2px 5px rgba(0, 0, 0, .24);
}

.contact-submit:active {
  border-color: var(--cta-border-active);
  background: var(--cta-bg-active);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, .22);
}

.contact-status {
  margin-top: 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px 12px;
  color: #fff;
  background: rgba(255, 255, 255, .06);
  font-weight: 800;
}

.contact-status.is-error {
  border-color: rgba(239, 62, 95, .45);
  background: rgba(239, 62, 95, .16);
}

.contact-status.is-success {
  border-color: rgba(35, 196, 121, .45);
  background: rgba(35, 196, 121, .14);
}

.mobile-sticky {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 30;
  display: none;
  padding: 10px;
  background: rgba(8, 9, 13, .95);
  border-top: 1px solid var(--line);
}

.mobile-sticky a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid var(--cta-border);
  border-radius: 7px;
  color: var(--cta-text);
  background: var(--cta-bg);
  box-shadow: 0 1px 2px rgba(0, 0, 0, .22);
  font-weight: 950;
  text-decoration: none;
  text-transform: uppercase;
  transition: background .15s ease, border-color .15s ease, box-shadow .15s ease;
}

@media (max-width: 1040px) {
  .toplist-head {
    display: none;
  }

  .offer-card {
    grid-template-columns: 62px 168px minmax(0, 1fr) 112px 128px;
  }

  .promo-box {
    display: none;
  }
}

@media (max-width: 780px) {
  .age-bar {
    justify-content: flex-start;
    gap: 8px;
    overflow-x: auto;
  }

  .site-header {
    min-height: 54px;
    padding: 8px 12px;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .brand span {
    font-size: 18px;
  }

  .header-nav,
  .header-cta {
    display: none;
  }

  .toplist {
    padding: 12px 10px 18px;
  }

  .toplist-hero {
    min-height: 184px;
    margin-bottom: 10px;
  }

  .toplist-hero::after {
    background: linear-gradient(90deg, rgba(9, 10, 15, .98) 0%, rgba(9, 10, 15, .88) 58%, rgba(9, 10, 15, .46) 100%);
  }

  .toplist-hero-img {
    width: 72%;
    object-position: center right;
  }

  .toplist-title {
    max-width: 360px;
    padding: 18px 14px 12px;
  }

  .toplist-title h1 {
    font-size: 30px;
  }

  .toplist-title p:not(.eyebrow) {
    font-size: 14px;
  }

  .trust-row {
    justify-content: flex-start;
    max-width: 360px;
    padding: 0 14px 16px;
  }

  .trust-row span {
    font-size: 11px;
  }

  .picker-buttons {
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .filter-pill {
    flex: 0 0 auto;
  }

  .offer-card {
    grid-template-columns: 48px minmax(0, 1fr) 82px;
    min-height: 126px;
  }

  .rank-badge,
  .site-cell,
  .feature-cell,
  .score-box,
  .promo-box,
  .offer-actions {
    padding: 10px;
  }

  .rank-badge {
    font-size: 22px;
  }

  .site-logo {
    min-height: 44px;
    font-size: 18px;
  }

  .site-logo img {
    max-width: 118px;
    max-height: 30px;
  }

  .site-tag {
    font-size: 10px;
  }

  .feature-cell {
    grid-column: 1 / -1;
    grid-row: 2;
    padding-top: 0;
    border-top: 1px solid rgba(255, 255, 255, .09);
    border-right: 0;
  }

  .feature-cell h3 {
    font-size: 14px;
  }

  .feature-list {
    font-size: 13px;
  }

  .feature-list li:nth-child(3) {
    display: none;
  }

  .score-box {
    border-right: 0;
    padding-right: 14px;
    padding-left: 14px;
  }

  .score-box strong {
    font-size: 23px;
  }

  .star-rating {
    align-items: center;
    justify-content: center;
    gap: 1px;
    margin-right: auto;
    margin-left: auto;
  }

  .star-icon {
    width: 11.5px;
    height: 11.5px;
  }

  .score-box span {
    font-size: 10px;
  }

  .promo-box {
    display: flex;
    grid-column: 1 / -1;
    grid-row: 3;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    border-top: 1px solid rgba(255, 255, 255, .09);
    border-right: 0;
    background: rgba(243, 165, 28, .08);
    text-align: left;
  }

  .promo-box span {
    color: var(--orange);
    font-size: 11px;
    font-weight: 950;
  }

  .promo-box strong {
    font-size: 13px;
    text-align: left;
  }

  .offer-actions {
    grid-column: 1 / -1;
    grid-row: 4;
    border-top: 1px solid rgba(255, 255, 255, .09);
  }

  .review-link {
    display: none;
  }

  .compare,
  .faq,
  .conversion-strip {
    padding: 20px 10px;
  }

  .conversion-strip {
    align-items: stretch;
    flex-direction: column;
    width: calc(100% - 20px);
    border-radius: 0;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 26px 12px 12px;
  }

  .page-hero h1 {
    font-size: 30px;
  }

  .content-page,
  .document-page,
  .review-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    padding: 12px 10px 24px;
  }

  .document-card {
    padding: 18px;
  }

  .review-score-row,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .review-bottom-button {
    width: 100%;
  }

  .contact-submit {
    width: 100%;
  }

  .mobile-sticky {
    display: block;
  }

  .site-footer {
    padding-bottom: 82px;
  }
}

@media (min-width: 1280px) {
  .toplist,
  .compare,
  .faq,
  .site-footer {
    max-width: 1180px;
  }

  .conversion-strip {
    max-width: 1144px;
  }
}
