@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --bg: #f4f7fb;
  --surface: #ffffff;
  --surface-2: #eef4fb;
  --ink: #101828;
  --muted: #667085;
  --line: #d8e1ee;
  --brand: #0f766e;
  --brand-2: #2563eb;
  --accent: #f59e0b;
  --danger-soft: #fff4ed;
  --success-soft: #ecfdf5;
  --soft: #edf6ff;
  --radius: 8px;
  --shadow: 0 14px 34px rgba(16, 24, 40, .09);
  --shadow-sm: 0 5px 18px rgba(16, 24, 40, .07);
}

* { box-sizing: border-box; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}
body::before { display: none; }
a { text-decoration: none; }
h1, h2, h3 { letter-spacing: 0; }
p { color: var(--muted); }

.container { width: min(1200px, calc(100% - 32px)); }
.site-header {
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid rgba(216,225,238,.85);
  box-shadow: 0 8px 28px rgba(16,24,40,.06);
}
.header-wrap { min-height: 68px; }
.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: none;
  box-shadow: none;
  overflow: hidden;
}
.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
}
.brand strong { font-size: 16px; font-weight: 900; }
.brand small { color: var(--muted); }
.primary-nav {
  display: flex;
  align-items: center;
}
.primary-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.primary-nav > ul,
.primary-nav .menu {
  display: flex;
  align-items: center;
  gap: 3px;
}
.primary-nav li {
  position: relative;
}
.primary-nav a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #344054;
  font-size: 13px;
  font-weight: 800;
  border-radius: 7px;
}
.primary-nav a:hover { background: var(--soft); color: var(--brand-2); }
.primary-nav .menu-item-has-children > a::after {
  content: "";
  width: 6px;
  height: 6px;
  margin-top: -3px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  opacity: .62;
}
.primary-nav .sub-menu {
  position: absolute;
  top: calc(100% + 9px);
  left: 0;
  z-index: 40;
  display: grid;
  min-width: 230px;
  gap: 2px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.98);
  box-shadow: 0 18px 38px rgba(16,24,40,.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .15s ease, transform .15s ease, visibility .15s ease;
}
.primary-nav li:hover > .sub-menu,
.primary-nav li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.primary-nav .sub-menu a {
  min-height: 36px;
  padding: 8px 10px;
  color: #344054;
  font-size: 13px;
  font-weight: 750;
  white-space: nowrap;
}
.primary-nav .sub-menu a:hover {
  background: #e7f8f5;
  color: var(--brand);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }
  .primary-nav {
    display: none;
    position: absolute;
    inset: 68px 16px auto;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255,255,255,.98);
    box-shadow: var(--shadow);
  }
  .primary-nav.is-open {
    display: block;
  }
  .primary-nav > ul,
  .primary-nav .menu {
    display: grid;
    align-items: stretch;
    gap: 3px;
  }
  .primary-nav a {
    min-height: 40px;
    justify-content: space-between;
  }
  .primary-nav .sub-menu {
    position: static;
    min-width: 0;
    margin: 2px 0 8px 12px;
    padding: 6px;
    border: 0;
    background: #f8fbff;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .primary-nav .sub-menu a {
    min-height: 34px;
    white-space: normal;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  background: #e7f8f5;
  color: var(--brand);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}
.button, button {
  border-radius: 8px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: none;
  font-weight: 900;
}
.button--ghost {
  background: #fff !important;
  color: var(--brand-2) !important;
  border: 1px solid var(--line) !important;
}
input, select {
  border-radius: 8px;
  border-color: var(--line);
  background: #fff;
}
input:focus, select:focus {
  outline: 3px solid rgba(37, 99, 235, .14);
  border-color: var(--brand-2);
}

.hero {
  position: relative;
  z-index: 2;
  overflow: visible;
  padding: 64px 0 52px;
  background:
    linear-gradient(115deg, rgba(10,22,40,.96), rgba(15,118,110,.88) 52%, rgba(37,99,235,.74)),
    url("../images/light-premium-phones.png") right center / contain no-repeat !important;
  border-bottom: 0;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 96px;
  background: linear-gradient(to bottom, transparent, rgba(244,247,251,.94));
  pointer-events: none;
}
.hero-grid { position: relative; z-index: 1; gap: 38px; }
.hero-copy {
  position: relative;
  z-index: 3;
}
.hero h1 {
  max-width: 720px;
  color: #fff;
  font-size: clamp(36px, 5vw, 66px);
  line-height: 1.02;
  font-weight: 950;
}
.hero p {
  max-width: 620px;
  color: rgba(255,255,255,.78);
  font-size: 18px;
}
.hero .eyebrow {
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,.18);
}
.hero-search {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  max-width: 560px;
  padding: 7px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 18px 44px rgba(0,0,0,.22);
}
.hero-search-field {
  position: relative;
  min-width: 0;
}
.hero-search-field::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 14px;
  width: 18px;
  height: 18px;
  border: 3px solid #667085;
  border-radius: 50%;
  transform: translateY(-58%);
  pointer-events: none;
}
.hero-search-field::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 30px;
  left: 30px;
  width: 9px;
  height: 3px;
  border-radius: 999px;
  background: #667085;
  transform: rotate(45deg);
  pointer-events: none;
}
.hero-search input {
  width: 100%;
  min-height: 44px;
  border: 0;
  padding-left: 44px;
  font-size: 18px;
}
.hero-search button {
  min-width: 58px;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 7px;
}
.live-search-panel {
  position: absolute;
  z-index: 30;
  top: calc(100% + 12px);
  left: 0;
  right: 0;
  display: grid;
  gap: 0;
  max-height: 450px;
  overflow: auto;
  padding: 0;
  background: #fff;
  border: 1px solid rgba(216,225,238,.96);
  border-radius: 10px;
  box-shadow: 0 22px 52px rgba(16,24,40,.22);
}
.live-search-panel[hidden] { display: none; }
.live-search-item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  min-height: 88px;
  padding: 10px 18px;
  border-bottom: 1px solid #edf1f6;
  border-radius: 0;
  color: var(--ink);
}
.live-search-item:hover,
.live-search-item.is-active {
  background: #f2f4f7;
}
.live-search-thumb {
  display: grid;
  place-items: center;
  width: 52px;
  height: 68px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, #e7f8f5, #edf6ff);
  color: var(--brand);
  font-size: 12px;
  font-weight: 950;
}
.live-search-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.live-search-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}
.live-search-copy strong {
  overflow: hidden;
  color: var(--ink);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.live-search-copy small {
  display: none;
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.live-search-item em {
  display: none;
}
.live-search-empty {
  padding: 16px 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}
.live-search-all {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-top: 1px solid var(--line);
  color: var(--brand-2);
  font-size: 13px;
  font-weight: 950;
}
.quick-links a {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  border-radius: 999px;
}
.hero-panel {
  padding: 22px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.96);
  box-shadow: 0 20px 55px rgba(0,0,0,.22);
  backdrop-filter: blur(16px);
}
.finder-panel { padding: 0; background: transparent; border: 0; box-shadow: none; }
.finder-panel h2 { font-size: 18px; margin-bottom: 16px; }
.finder-form { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.finder-form button { grid-column: 1 / -1; }

.section { padding: 58px 0; }
.section--tight {
  padding: 24px 0;
  background: #fff;
  border-block: 1px solid var(--line);
}
.section--muted {
  background: #eef4fb;
  border-block: 1px solid var(--line);
}
.section-head { align-items: center; margin-bottom: 22px; }
.section-head h2 { font-size: clamp(24px, 2.4vw, 34px); font-weight: 950; }
.text-link { color: var(--brand-2); font-weight: 900; }

.intent-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.intent-grid a,
.phone-card,
.brand-tile,
.comparison-card,
.price-grid a,
.content-card,
.seo-copy,
.faq-item,
.mini-panel,
.spec-card,
.overview-panel,
.compare-selector,
.compare-table-wrap,
.winner-grid div,
.listing-sidebar,
.listing-toolbar,
.filter-shortcuts {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}
.intent-grid a {
  padding: 18px;
  min-height: 130px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.intent-grid span,
.comparison-card span,
.winner-grid span,
.listing-toolbar span {
  color: var(--brand);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.intent-grid strong {
  color: var(--ink);
  font-size: 20px;
  font-weight: 950;
}
.intent-grid em {
  color: var(--muted);
  font-style: normal;
  font-size: 13px;
}

.phone-grid { gap: 16px; }
.phone-card {
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.phone-card:hover {
  transform: translateY(-4px);
  border-color: rgba(37,99,235,.35);
  box-shadow: var(--shadow);
}
.phone-card__media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 190px;
  padding: 12px;
  background: linear-gradient(180deg, #f8fbff, #e8f0fb);
}
.phone-card__media img {
  max-height: 180px;
  width: auto;
  object-fit: contain;
  margin-inline: auto;
}
.phone-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--line);
  color: var(--brand);
  font-size: 11px;
  font-weight: 900;
}
.phone-card__body {
  display: grid;
  gap: 11px;
  padding: 17px;
}
.phone-card__body h3 {
  min-height: 0;
  margin: 0;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.18;
}
.phone-card__price {
  display: grid;
  gap: 2px;
  padding: 12px 0 4px;
  border-top: 1px solid #edf2f7;
}
.phone-card__price span {
  color: #667085;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.phone-card__price strong {
  color: var(--ink);
  font-size: 24px;
  font-weight: 950;
  line-height: 1.05;
}
.phone-card__price.is-pending {
  padding: 10px 12px;
  border: 1px solid #d7e4f5;
  border-radius: 8px;
  background: linear-gradient(180deg, #f8fbff, #eef5ff);
}
.phone-card__price.is-pending strong {
  color: #315173;
  font-size: 16px;
  line-height: 1.25;
}
.phone-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
}
.phone-card__meta span {
  padding: 5px 8px;
  border-radius: 8px;
  background: #f3f7fc;
  color: #475467;
  font-size: 11px;
  font-weight: 800;
}
.phone-card .phone-card__specs {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.phone-card .phone-card__specs li {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
  padding: 8px 0;
  border-bottom: 1px solid #edf2f7;
  border-radius: 0;
  background: transparent;
}
.phone-card .phone-card__specs li:last-child {
  border-bottom: 0;
}
.phone-card .phone-card__specs span {
  color: #667085;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.phone-card .phone-card__specs strong {
  color: #101828;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.3;
}
.phone-card__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 2px;
}
.phone-card__actions .button {
  width: 100%;
  min-height: 42px;
  padding: 0 12px;
  font-size: 13px;
}

.price-grid a {
  position: relative;
  min-height: 132px;
  padding: 20px;
  box-shadow: none;
}
.price-grid a::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
}
.price-grid strong { font-size: 18px; font-weight: 950; }
.price-grid span { color: var(--muted); }
.brand-budget-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.brand-budget-card {
  position: relative;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 22px;
  gap: 12px;
  align-items: center;
  min-height: 96px;
  padding: 14px;
  overflow: hidden;
  border: 1px solid #dce7f5;
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #f8fbff);
  box-shadow: 0 8px 22px rgba(15, 23, 42, .05);
}
.brand-budget-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, var(--brand), var(--brand-2));
}
.brand-budget-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #e7f8f5;
  color: var(--brand);
}
.brand-budget-card--network .brand-budget-icon {
  background: #eef5ff;
  color: #1d4ed8;
}
.brand-budget-icon svg,
.brand-budget-arrow svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.brand-budget-copy strong {
  display: block;
  color: #172033;
  font-size: 16px;
  font-weight: 850;
  line-height: 1.2;
}
.brand-budget-copy span {
  display: inline-flex;
  gap: 5px;
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.25;
}
.brand-budget-copy b {
  color: var(--brand);
  font-weight: 950;
}
.brand-budget-arrow {
  display: grid;
  place-items: center;
  color: #94a3b8;
}
.brand-directory { gap: 14px; }
.brand-tile {
  min-height: 172px;
  padding: 18px;
  box-shadow: none;
}
.brand-logo {
  background: #f2f7fc;
  border: 1px solid var(--line);
  color: var(--brand-2);
}
.brand-logo img {
  display: block;
  max-width: 120px;
  max-height: 42px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.brand-logo--large img {
  max-width: 180px;
  max-height: 70px;
  margin-inline: auto;
}

.compare-band {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 28px;
  align-items: start;
}
.compare-band__copy h2 { font-size: clamp(28px, 3vw, 44px); font-weight: 950; }
.compare-selector {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 10px;
  padding: 14px;
  margin-bottom: 18px;
  box-shadow: none;
}
.comparison-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.comparison-card {
  min-height: 126px;
  padding: 16px;
  box-shadow: none;
}
.comparison-card.comparison-card--vs {
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  min-height: 224px;
  padding: 18px 20px 20px;
  border-radius: 8px;
  text-align: center;
  overflow: hidden;
}
.comparison-card--vs::after { content: none; }
.comparison-card__visuals,
.comparison-card span.comparison-card__visuals {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 56px minmax(0, 1fr);
  align-items: center;
  flex: 0 0 128px;
  height: 128px;
  min-width: 0;
  overflow: hidden;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: 0;
  text-transform: none;
}
.comparison-card__phone,
.comparison-card span.comparison-card__phone {
  display: flex !important;
  align-items: center;
  justify-content: center;
  height: 128px;
  min-width: 0;
  overflow: hidden;
  color: var(--ink);
  text-transform: none;
  letter-spacing: 0;
}
.comparison-card__thumb {
  display: grid !important;
  place-items: center;
  width: 126px;
  height: 126px;
  overflow: hidden;
}
.comparison-card__thumb img {
  width: 100% !important;
  height: 100% !important;
  max-width: 126px !important;
  max-height: 126px !important;
  object-fit: contain !important;
}
.comparison-card__device {
  display: block;
  width: 52px;
  aspect-ratio: 9 / 18;
  border: 5px solid #111827;
  border-radius: 14px;
  background: linear-gradient(160deg, #dbeafe, #64748b);
}
.comparison-card__names,
.comparison-card span.comparison-card__names {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
  flex: 0 0 auto;
  min-width: 0;
  margin-top: 14px;
  padding: 0;
  overflow: visible;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: 0;
  text-transform: none;
}
.comparison-card__names strong {
  display: -webkit-box;
  min-height: 42px;
  margin: 0;
  overflow: hidden;
  color: #344054;
  font-size: 17px;
  font-weight: 650;
  line-height: 1.25;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.comparison-card__divider {
  position: relative;
  display: grid !important;
  place-items: center;
  align-self: stretch;
  height: 128px;
  min-width: 56px;
}
.comparison-card__divider::before {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 50%;
  border-left: 2px dashed #344054;
  transform: translateX(-50%);
}
.comparison-card__divider span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #344054;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}
.comparison-card small { color: var(--muted); }

.archive-hero {
  padding: 50px 0;
  background:
    linear-gradient(115deg, rgba(10,22,40,.95), rgba(15,118,110,.86), rgba(37,99,235,.72)),
    url("../images/light-premium-phones.png") right center / contain no-repeat !important;
}
.archive-hero h1 {
  color: #fff;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 950;
}
.archive-hero p { color: rgba(255,255,255,.78); }
.archive-hero .eyebrow { background: rgba(255,255,255,.12); color: #fff; }
.mini-panel {
  padding: 22px;
  text-align: center;
  box-shadow: 0 18px 44px rgba(0,0,0,.18);
}
.mini-panel strong { color: var(--brand-2); font-size: 46px; }
.comparison-hero-image {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 8px;
  background: rgba(255,255,255,.12);
  box-shadow: 0 18px 44px rgba(0,0,0,.16);
}
.comparison-hero-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.listing-shell {
  width: min(1240px, calc(100% - 32px));
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 24px;
}
.listing-sidebar {
  position: sticky;
  top: 88px;
  align-self: start;
  padding: 18px;
}
.listing-sidebar .finder-form { grid-template-columns: 1fr; }
.filter-shortcuts {
  margin-top: 14px;
  padding: 16px;
  box-shadow: none;
}
.filter-shortcuts h2 { font-size: 16px; }
.filter-shortcuts a {
  display: block;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  color: var(--brand-2);
  font-weight: 800;
}
.listing-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 16px;
  margin-bottom: 16px;
  box-shadow: none;
}
.listing-results .archive-grid {
  grid-template-columns: repeat(3, minmax(230px, 1fr));
  gap: 18px;
}
.listing-toolbar h2 { margin: 0; font-size: 24px; }

.mobile-archive-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  gap: 16px;
  align-items: stretch;
  padding-top: 28px;
}

.mobile-quick-answer,
.mobile-archive-stats,
.mobile-source-block,
.mobile-price-table-section {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.mobile-quick-answer {
  padding: 20px;
}

.mobile-quick-answer h2 {
  margin-bottom: 10px;
  font-size: 26px;
}

.mobile-quick-answer p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 16px;
}

.mobile-quick-answer p span {
  display: inline;
}

.mobile-quick-answer strong {
  display: inline-flex;
  color: var(--ink);
  font-size: 15px;
}

.mobile-archive-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: var(--line);
}

.mobile-archive-stats div {
  min-width: 0;
  padding: 14px;
  background: #fff;
}

.mobile-archive-stats div:first-child {
  grid-column: 1 / -1;
}

.mobile-archive-stats span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.mobile-archive-stats strong {
  display: block;
  margin-top: 4px;
  color: var(--brand);
  font-size: 24px;
  line-height: 1.1;
}

.mobile-price-table-section,
.mobile-source-block {
  margin-bottom: 18px;
  padding: 18px;
}

.listing-results .archive-grid + .mobile-source-block {
  margin-top: 22px;
}

.mobile-price-table-section .section-head {
  margin-bottom: 14px;
}

.mobile-price-table-wrap {
  box-shadow: none;
}

.mobile-price-table {
  min-width: 1040px;
}

.mobile-price-table th,
.mobile-price-table td {
  font-size: 14px;
}

.mobile-price-table a {
  color: var(--brand);
  font-weight: 900;
}

.mobile-source-block p {
  margin: 0 0 10px;
  color: var(--muted);
}

.mobile-source-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.mobile-source-links a {
  border: 1px solid #c8d8f3;
  border-radius: var(--radius);
  background: #eef5ff;
  color: var(--brand);
  padding: 9px 12px;
  font-weight: 900;
}

.mobile-archive-faqs {
  margin-top: 24px;
}
.active-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.active-filters span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}
.active-filters strong {
  padding: 6px 10px;
  border-radius: 999px;
  background: #e7f8f5;
  color: var(--brand);
  font-size: 12px;
}
.active-filters a {
  margin-left: auto;
  color: var(--brand-2);
  font-size: 12px;
  font-weight: 900;
}
.empty-state { padding: 24px; grid-column: 1 / -1; }

.phone-hero {
  background:
    linear-gradient(115deg, rgba(10,22,40,.95), rgba(15,118,110,.86), rgba(37,99,235,.72)),
    url("../images/light-premium-phones.png") right center / contain no-repeat !important;
}
.phone-hero h1,
.phone-hero .price { color: #fff; }
.phone-hero .eyebrow { background: rgba(255,255,255,.12); color: #fff; }
.phone-visual {
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.1);
  box-shadow: 0 18px 44px rgba(0,0,0,.14);
}
.phone-visual img {
  max-height: 380px;
  width: auto;
  object-fit: contain;
}
.price-trust span {
  box-shadow: none;
  background: rgba(255,255,255,.94);
}
.buying-snapshot {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0;
}
.buying-snapshot div {
  min-height: 92px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 8px;
  background: rgba(255,255,255,.94);
}
.buying-snapshot span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.buying-snapshot strong {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.25;
}
.product-nav {
  position: sticky;
  top: 68px;
  z-index: 12;
  display: flex;
  gap: 8px;
  margin-top: 12px;
  padding: 12px;
  overflow-x: auto;
  border: 1px solid #d7e4f5;
  border-radius: 8px;
  background: linear-gradient(135deg, #eaf3ff, #f8fbff);
  box-shadow: 0 14px 34px rgba(15, 23, 42, .08);
  backdrop-filter: blur(16px);
}
body.admin-bar .product-nav {
  top: 100px;
}
.product-nav a {
  flex: 0 0 auto;
  padding: 10px 14px;
  border: 1px solid #c8d8f3;
  border-radius: 999px;
  background: #fff;
  color: #1d4ed8;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(15, 23, 42, .04);
}
.phone-quick-answer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  margin-top: 16px;
  padding: 16px 18px;
  border: 1px solid #d7e4f5;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.phone-quick-answer p {
  margin: 8px 0 0;
  color: #344054;
  font-size: 15px;
  font-weight: 750;
  line-height: 1.6;
}
.phone-quick-answer .button {
  white-space: nowrap;
}
.section-anchor,
#quick-specs,
#price,
#price-history,
#verdict,
#reviews,
#faqs {
  scroll-margin-top: 168px;
}
.score-card {
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,.94);
  border-color: rgba(255,255,255,.32);
}
.score-card .sc-icon { display: block; font-size: 18px; }
.score-card .sc-ring {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
}
.score-card .sc-ring circle {
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
  transition: stroke-dashoffset .9s ease;
}
.score-card .sc-ring .bg { stroke: #d8e1ee; }
.score-card .sc-ring .fg { stroke: var(--brand-2); }
.spec-card, .overview-panel { box-shadow: none; }
.spec-card {
  padding: 24px;
  border-color: #d7e4f5;
}
.spec-section h2 {
  margin-bottom: 14px;
}
.spec-section th,
.spec-section td {
  padding: 15px 12px;
}
.overview-panel {
  top: 88px;
  padding: 26px;
}
.overview-panel .buyer-fit,
.overview-panel .pros-cons {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 18px 0;
}
.overview-panel .buyer-fit > div,
.overview-panel .pros-box,
.overview-panel .cons-box {
  padding: 18px 20px;
  border-radius: 8px;
  box-shadow: none;
}
.overview-panel .buyer-fit h3,
.overview-panel .pros-cons h3 {
  margin: 0 0 10px;
  font-size: 18px;
}
.overview-panel .buyer-fit ul,
.overview-panel .pros-cons ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 20px;
}
.overview-panel .buyer-fit li,
.overview-panel .pros-cons li {
  padding-left: 3px;
  line-height: 1.45;
  font-size: 15px;
  overflow-wrap: anywhere;
}
.pros-box { background: var(--success-soft); border-color: #bbf7d0; box-shadow: none; }
.cons-box, .notice { background: var(--danger-soft); border-color: #fed7aa; box-shadow: none; }
.author-box, .source-note { box-shadow: none; }
.author-avatar {
  overflow: hidden;
  border-radius: 50%;
  flex: 0 0 54px;
}
.author-avatar img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.author-profile-page {
  padding: 44px 0 64px;
}
.author-profile-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 28px;
  align-items: stretch;
}
.author-profile-copy,
.author-profile-card,
.author-profile-panel {
  background: #fff;
  border: 1px solid #dbe5f2;
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(15, 23, 42, .07);
}
.author-profile-copy {
  padding: 34px;
}
.author-profile-copy h1 {
  font-size: clamp(34px, 4vw, 54px);
  margin-bottom: 12px;
}
.author-profile-copy p {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
}
.author-profile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.author-profile-card {
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 28px 22px;
  text-align: center;
}
.author-profile-card img {
  width: 156px;
  height: 156px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  border: 4px solid #e7f7f7;
  box-shadow: 0 16px 32px rgba(15, 23, 42, .12);
}
.author-profile-card strong {
  margin-top: 16px;
  color: var(--ink);
  font-size: 22px;
}
.author-profile-card span {
  color: var(--muted);
  font-weight: 800;
}
.author-profile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 22px;
}
.author-profile-panel {
  padding: 24px;
}
.author-profile-panel h2 {
  font-size: 24px;
}
.author-profile-panel p,
.author-check-list {
  color: var(--muted);
}
.author-check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 12px 0 0;
  list-style: none;
}
.author-check-list li {
  position: relative;
  padding-left: 26px;
}
.author-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #0891b2;
}
.author-contact-panel {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
}
.author-contact-panel h2,
.author-contact-panel .eyebrow {
  flex-basis: 100%;
}
.author-contact-panel a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 13px;
  border: 1px solid #cfe0f4;
  border-radius: 8px;
  background: #f8fbff;
  color: var(--brand);
  font-weight: 900;
}

@media (max-width: 760px) {
  .author-profile-page {
    padding: 18px 0 38px;
  }
  .author-profile-hero,
  .author-profile-grid {
    grid-template-columns: 1fr;
  }
  .author-profile-copy,
  .author-profile-card,
  .author-profile-panel {
    padding: 18px;
  }
  .author-profile-card {
    grid-template-columns: 82px minmax(0, 1fr);
    justify-items: start;
    text-align: left;
    gap: 14px;
  }
  .author-profile-card img {
    grid-row: 1 / span 2;
    width: 82px;
    height: 82px;
  }
  .author-profile-card strong {
    margin-top: 0;
  }
  .author-profile-copy p {
    font-size: 16px;
  }
  .author-profile-actions .button {
    width: 100%;
  }
}
.verdict-facts {
  display: grid;
  gap: 0;
  margin: 16px 0;
  overflow: hidden;
  border: 1px solid #dbe5f2;
  border-radius: 8px;
  background: #fff;
}
.verdict-facts div {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 10px 12px;
  border-top: 1px solid #edf2f7;
}
.verdict-facts div:first-child {
  border-top: 0;
}
.verdict-facts span {
  color: #667085;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}
.verdict-facts strong {
  color: #101828;
  font-size: 14px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}
.verdict-facts a {
  color: #1d4ed8;
  text-decoration: none;
}

.winner-grid div {
  padding: 16px;
  box-shadow: none;
}
.winner-grid strong { color: var(--ink); font-size: 16px; }
.versus-badge {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--brand-2));
}
.compare-table thead th {
  background: #102033;
  color: #fff;
}
.comparison-page {
  display: grid;
  gap: 28px;
}
.comparison-page .seo-copy {
  padding: 28px 30px;
  box-shadow: none;
}
.comparison-page .seo-copy > .eyebrow {
  margin-bottom: 14px;
}
.comparison-page .seo-copy h2 {
  margin: 0 0 18px;
  line-height: 1.16;
}
.comparison-page .seo-copy > p {
  margin-top: 0;
}
.comparison-intro {
  margin-top: 8px;
}
.compare-table-wrap--full {
  border-radius: 8px;
  box-shadow: none;
}
.compare-table--full {
  min-width: 900px;
}
.compare-table--full th,
.compare-table--full td {
  font-size: 15px;
  line-height: 1.55;
}
.compare-table--full td {
  width: 31%;
}
.compare-table--full .compare-group-row th {
  padding: 12px 14px;
  background: #e7f8f5;
  color: var(--brand);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}
.comparison-winners {
  margin: 0;
}
.compare-winner-badges {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.compare-winner-badge {
  display: grid;
  gap: 8px;
  min-height: 170px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.compare-winner-badge--value { border-color: #facc15; background: #fffbeb; }
.compare-winner-badge--performance { border-color: #bfdbfe; background: #eff6ff; }
.compare-winner-badge--camera { border-color: #c4b5fd; background: #f5f3ff; }
.compare-winner-badge--battery { border-color: #99f6e4; background: #f0fdfa; }
.compare-winner-badge span {
  color: #475467;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}
.compare-winner-badge strong {
  color: var(--ink);
  font-size: 21px;
  line-height: 1.12;
}
.compare-winner-badge p {
  margin: 0;
  color: #475467;
  font-size: 13px;
  line-height: 1.5;
}
.compare-winner-badge small {
  align-self: end;
  color: #667085;
  font-size: 11px;
  font-weight: 800;
}
.comparison-verdict h2,
.comparison-buyer-context h2,
.comparison-faqs h2 {
  font-size: clamp(24px, 2.3vw, 34px);
}
.compare-recommendation {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 18px 0;
}
.compare-recommendation div {
  padding: 20px;
  border: 1px solid #bfdbfe;
  border-radius: 8px;
  background: linear-gradient(180deg, #eff6ff, #fff);
}
.compare-recommendation div:first-child {
  border-color: #99f6e4;
  background: linear-gradient(180deg, #f0fdfa, #fff);
}
.compare-recommendation span {
  display: block;
  color: #475467;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}
.compare-recommendation strong {
  display: block;
  margin-top: 7px;
  color: var(--ink);
  font-size: 26px;
  line-height: 1.1;
}
.compare-recommendation p {
  margin: 8px 0 0;
  color: var(--muted);
}
.compare-verdict-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 22px 0;
}
.compare-verdict-grid div {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbff;
}
.compare-verdict-grid strong {
  display: block;
  color: var(--ink);
  font-size: 14px;
}
.compare-verdict-grid span {
  display: block;
  margin: 6px 0;
  color: var(--brand);
  font-weight: 950;
}
.compare-verdict-grid p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
}
.related-comparisons {
  margin-top: 10px;
}
.related-comparisons .section-head p {
  max-width: 760px;
  margin: 8px 0 0;
  color: var(--muted);
}
.related-comparisons .comparison-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.comparison-editorial-notes {
  padding: 18px;
}

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

.compare-hub {
  background:
    linear-gradient(180deg, #f4f7fb 0%, #edf6ff 42%, #f4f7fb 100%);
}
.compare-hero {
  padding: 54px 0 34px;
  background:
    linear-gradient(115deg, rgba(16, 24, 40, .96), rgba(15, 118, 110, .88), rgba(37, 99, 235, .74)),
    url("../images/light-premium-phones.png") right center / contain no-repeat;
  color: #fff;
}
.compare-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  gap: 30px;
  align-items: center;
}
.compare-hero__copy h1 {
  max-width: 720px;
  margin: 14px 0 16px;
  color: #fff;
  font-size: clamp(38px, 5vw, 66px);
  line-height: .98;
  font-weight: 950;
}
.compare-hero__copy p {
  max-width: 690px;
  color: rgba(255,255,255,.8);
  font-size: 18px;
}
.compare-hero .eyebrow {
  background: rgba(255,255,255,.14);
  color: #fff;
}
.compare-hero__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.compare-hero__links a {
  padding: 10px 13px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 8px;
  background: rgba(255,255,255,.09);
  color: #fff;
  font-size: 13px;
  font-weight: 850;
}
.compare-tool-card {
  padding: 18px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 8px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 24px 70px rgba(0,0,0,.22);
  color: var(--ink);
}
.compare-tool-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.compare-tool-card__head span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}
.compare-tool-card__head strong {
  color: var(--brand);
  font-size: 18px;
}
.compare-tool-card .compare-selector {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}
.compare-hub__body {
  display: grid;
  gap: 34px;
  padding-top: 36px;
}
.compare-hub-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}
.compare-hub-stats div {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbff;
}
.compare-hub-stats strong {
  display: block;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.1;
}
.compare-hub-stats span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}
.compare-picker {
  position: relative;
  min-width: 0;
}
.compare-picker__input {
  width: 100%;
  min-height: 52px;
  border-color: #c6d3e3;
  background: #fff;
  font-weight: 750;
}
.compare-picker__list {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 35;
  display: grid;
  gap: 6px;
  max-height: 360px;
  padding: 8px;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(16,24,40,.16);
}
.compare-picker__list[hidden] {
  display: none;
}
.compare-picker__list button {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 58px;
  padding: 8px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  box-shadow: none;
  text-align: left;
}
.compare-picker__list button[hidden] {
  display: none;
}
.compare-picker__empty {
  padding: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}
.compare-picker__empty[hidden] {
  display: none;
}
.compare-picker__list button:hover,
.compare-picker__list button.is-active {
  border-color: #b8d5ff;
  background: #f0f7ff;
}
.compare-picker__list img,
.compare-picker__mock {
  width: 42px;
  height: 42px;
  object-fit: contain;
}
.compare-picker__mock {
  display: block;
  border: 4px solid #111827;
  border-radius: 10px;
  background: linear-gradient(160deg, #dbeafe, #94a3b8);
}
.compare-picker__list strong {
  display: block;
  overflow: hidden;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.22;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.compare-picker__list small {
  display: block;
  overflow: hidden;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.compare-empty-live,
.compare-discovery,
.compare-intent-grid a {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.compare-empty-live {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 20px;
  align-items: center;
  padding: 24px;
}
.compare-empty-live h2 {
  max-width: 680px;
  font-size: clamp(26px, 3vw, 40px);
}
.compare-empty-live p {
  max-width: 760px;
  margin-bottom: 0;
}
.compare-empty-live__steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}
.compare-empty-live__steps span {
  display: grid;
  place-items: center;
  min-height: 74px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbff;
  color: var(--brand);
  font-weight: 900;
}
.compare-discovery {
  padding: 20px;
}
.compare-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.compare-filter-bar button {
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid var(--line);
  background: #fff;
  color: #344054;
  box-shadow: none;
  font-size: 13px;
}
.compare-filter-bar button.is-active,
.compare-filter-bar button:hover {
  border-color: var(--brand);
  background: #e7f8f5;
  color: var(--brand);
}
.compare-hub .comparison-grid {
  margin-top: -14px;
}
.compare-hub .comparison-card[hidden] {
  display: none !important;
}
.compare-filter-empty {
  padding: 18px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--muted);
  font-weight: 750;
}
.compare-intent-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.compare-intent-grid a {
  display: grid;
  gap: 8px;
  min-height: 160px;
  padding: 20px;
}
.compare-intent-grid span {
  width: fit-content;
  padding: 4px 9px;
  border-radius: 999px;
  background: #fff7ed;
  color: #b45309;
  font-size: 12px;
  font-weight: 900;
}
.compare-intent-grid strong {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.18;
}
.compare-intent-grid em {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
}
.compare-guide-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.compare-guide-grid .seo-copy,
.compare-hub-faqs {
  box-shadow: var(--shadow-sm);
}
.compare-hub-faqs {
  margin-bottom: 14px;
}

.pta-page {
  background: linear-gradient(180deg, #f7fafc 0%, #eff8fb 48%, #f8fafc 100%);
}
.pta-hero {
  padding: 56px 0 38px;
  background:
    linear-gradient(115deg, rgba(10, 37, 64, .96), rgba(15, 118, 110, .88), rgba(37, 99, 235, .72)),
    url("../images/light-premium-phones.png") right center / contain no-repeat;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.pta-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 28px;
  align-items: center;
}
.pta-hero .eyebrow {
  background: rgba(255,255,255,.14);
  color: #fff;
}
.pta-hero__copy h1 {
  max-width: 760px;
  margin: 14px 0 16px;
  color: #fff;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1;
  font-weight: 950;
}
.pta-hero__copy p {
  max-width: 760px;
  color: rgba(255,255,255,.82);
  font-size: 18px;
}
.pta-hero__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.pta-hero__links a {
  padding: 10px 13px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 8px;
  background: rgba(255,255,255,.1);
  color: #fff;
  font-size: 13px;
  font-weight: 850;
}
.pta-hero-panel {
  padding: 22px;
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 8px;
  background: rgba(255,255,255,.95);
  color: var(--ink);
  box-shadow: 0 24px 70px rgba(0,0,0,.22);
}
.pta-hero-panel strong {
  display: block;
  font-size: 28px;
  line-height: 1.05;
}
.pta-hero-panel span {
  display: block;
  margin-top: 6px;
  color: var(--brand-2);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}
.pta-hero-panel p {
  margin: 14px 0 0;
  color: var(--muted);
}
.pta-page__body {
  display: grid;
  gap: 38px;
  padding: 42px 0 56px;
}
.pta-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
  gap: 28px;
  align-items: start;
}
.pta-calculator-shell > p,
.pta-section-head p {
  max-width: 760px;
  color: var(--muted);
  font-size: 16px;
}
.pta-calculator--advanced {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.pta-calculator--advanced .pta-field {
  display: grid;
  gap: 7px;
}
.pta-calculator--advanced label {
  color: #344054;
  font-size: 13px;
  font-weight: 850;
}
.pta-calculator--advanced input,
.pta-calculator--advanced select {
  width: 100%;
  min-width: 0;
  border-color: #c6d3e3;
  background: #fff;
  font-weight: 750;
}
.pta-money-input {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 8px;
}
.pta-actions,
.pta-result--advanced,
.pta-calculator--advanced .helper-note {
  grid-column: 1 / -1;
}
.pta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 2px;
}
.pta-actions button {
  flex: 1 1 180px;
}
.pta-result--advanced {
  display: grid;
  gap: 12px;
  padding: 0;
  background: transparent;
  color: inherit;
  font-weight: 400;
}
.pta-result-placeholder,
.pta-result-summary,
.pta-saving,
.pta-result-note {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbff;
}
.pta-result-placeholder {
  display: grid;
  gap: 4px;
  padding: 16px;
}
.pta-result-placeholder strong {
  color: var(--ink);
}
.pta-result-placeholder span,
.pta-result-note {
  color: var(--muted);
  font-size: 13px;
}
.pta-result-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
}
.pta-result-summary span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}
.pta-result-summary strong {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.2;
}
.pta-result-summary small {
  display: block;
  margin-top: 4px;
  color: var(--brand-2);
  font-weight: 800;
}
.pta-model-pill {
  padding: 7px 10px;
  border-radius: 999px;
  background: #eef8f4;
  color: #047857 !important;
  text-transform: none !important;
}
.pta-result-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.pta-result-card {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.pta-result-card.is-highlight {
  border-color: #99d5c6;
  background: #f1fbf8;
}
.pta-result-card > span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.pta-result-card > strong {
  color: var(--ink);
  font-size: 28px;
  line-height: 1.05;
}
.pta-breakdown {
  display: grid;
  gap: 8px;
}
.pta-breakdown div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 8px;
  border-top: 1px solid #e6edf6;
}
.pta-breakdown small {
  color: var(--muted);
  font-size: 12px;
}
.pta-breakdown b {
  color: var(--ink);
  text-align: right;
}
.pta-saving {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 13px;
  background: #fff8eb;
  border-color: #fed7aa;
}
.pta-saving b {
  color: #9a3412;
}
.pta-saving span {
  color: #7c2d12;
  font-size: 13px;
  font-weight: 750;
  text-align: right;
}
.pta-result-note {
  margin: 0;
  padding: 12px;
}
.pta-calculator--advanced .helper-note {
  color: var(--muted);
  font-size: 13px;
}
.pta-context-card {
  position: sticky;
  top: 100px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.pta-context-card h2 {
  font-size: 26px;
}
.pta-context-card ul {
  display: grid;
  gap: 12px;
  margin: 16px 0 20px;
  padding: 0;
  list-style: none;
}
.pta-context-card li {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbff;
  color: var(--muted);
}
.pta-context-card li strong {
  color: var(--ink);
}
.pta-rates-section,
.pta-process-section,
.pta-faqs {
  display: grid;
  gap: 18px;
}
.pta-section-head {
  display: grid;
  gap: 6px;
}
.pta-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.pta-rates-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}
.pta-rates-table th,
.pta-rates-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}
.pta-rates-table th {
  background: #eef8f4;
  color: #065f46;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.pta-rates-table td {
  color: #344054;
  font-weight: 750;
}
.pta-rates-table tr:last-child td {
  border-bottom: 0;
}
.pta-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.pta-process-grid div {
  min-height: 142px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.pta-process-grid strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
}
.pta-process-grid span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
}
.pta-faqs .faq-item {
  margin: 0;
  box-shadow: var(--shadow-sm);
}

.mpp-contact-form-wrap {
  margin-top: 24px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.mpp-contact-form {
  display: grid;
  gap: 14px;
}
.mpp-contact-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.mpp-contact-form label {
  display: grid;
  gap: 7px;
  color: #344054;
  font-weight: 850;
}
.mpp-contact-form label span {
  font-size: 13px;
}
.mpp-contact-form input,
.mpp-contact-form select,
.mpp-contact-form textarea {
  width: 100%;
  border-color: #d8e1ee;
  box-shadow: none;
}
.mpp-contact-form textarea {
  min-height: 150px;
  padding: 12px 13px;
  resize: vertical;
}
.mpp-contact-form button {
  width: fit-content;
  min-width: 160px;
}
.mpp-consent {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: flex-start;
  gap: 10px !important;
  padding: 12px;
  border: 1px solid #dce7f5;
  border-radius: 8px;
  background: #f8fbff;
}
.mpp-consent input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 2px;
}
.mpp-hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.mpp-form-message {
  margin-bottom: 16px;
  padding: 13px 14px;
  border-radius: 8px;
  font-weight: 800;
}
.mpp-form-message ul {
  margin: 8px 0 0;
  padding-left: 18px;
}
.mpp-form-message.is-success {
  border: 1px solid #bbf7d0;
  background: #ecfdf5;
  color: #047857;
}
.mpp-form-message.is-error {
  border: 1px solid #fed7aa;
  background: #fff7ed;
  color: #9a3412;
}

.site-footer { background: #101828; }
.site-footer a, .site-footer p, .footer-bottom { color: rgba(255,255,255,.72); }
.footer-grid {
  grid-template-columns: minmax(280px, 1.05fr) repeat(3, minmax(180px, .8fr));
  align-items: start;
  gap: 34px;
}
.site-footer h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
}
.site-footer a {
  width: fit-content;
  margin: 9px 0;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.35;
}
.site-footer a:hover {
  color: #fff;
}
.footer-about-head {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}
.footer-logo {
  display: grid !important;
  place-items: center;
  width: 44px !important;
  height: 44px;
  margin: 0 !important;
  border-radius: 8px;
  overflow: hidden;
}
.footer-logo img {
  display: block;
  width: 44px;
  height: 44px;
}
.footer-about-head h2 {
  margin: 0 0 4px;
  color: #fff;
  font-size: 15px;
}
.footer-about-head span {
  display: block;
  color: rgba(255,255,255,.56);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.25;
}
.footer-about p {
  max-width: 360px;
  margin: 18px 0 12px;
  font-size: 14px;
  line-height: 1.6;
}
.footer-mini-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 16px;
}
.footer-mini-links a {
  margin: 0;
  color: rgba(255,255,255,.82);
  font-size: 12px;
  font-weight: 850;
}
.footer-mini-links a:hover {
  color: #fff;
}
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.footer-social a,
.footer-social span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin: 0;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.86);
}
.footer-social a:hover {
  background: rgba(255,255,255,.12);
  color: #fff;
}
.footer-social .is-disabled {
  opacity: .72;
}
.footer-social svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-breadcrumbs {
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.site-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
  margin: 0;
  padding: 11px 0;
  list-style: none;
}
.site-breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}
.site-breadcrumbs li:not(:last-child)::after {
  content: "/";
  color: #98a2b3;
  font-weight: 700;
}
.site-breadcrumbs a {
  color: var(--brand-2);
}
.site-breadcrumbs span {
  color: #475467;
}

.brands-directory-hero {
  padding: 50px 0;
  background:
    linear-gradient(115deg, rgba(248,251,255,.98), rgba(238,247,255,.94)),
    radial-gradient(circle at 92% 18%, rgba(15,118,110,.12), transparent 34%);
  border-bottom: 1px solid var(--line);
}
.brands-directory-hero__grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 24px;
  align-items: center;
}
.brands-directory-hero h1 {
  max-width: 760px;
  margin-bottom: 12px;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 950;
}
.brands-directory-hero p {
  max-width: 760px;
  font-size: 18px;
}
.brands-trust-panel {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.brands-trust-panel strong {
  display: block;
  color: var(--brand-2);
  font-size: 48px;
  line-height: 1;
}
.brands-trust-panel span {
  display: block;
  margin: 6px 0;
  color: var(--ink);
  font-weight: 950;
}
.brands-trust-panel p {
  margin: 0;
  font-size: 13px;
}
.brands-page-shell {
  display: grid;
  gap: 24px;
}
.brands-answer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, .88fr);
  gap: 14px;
  align-items: stretch;
}
.brands-quick-answer,
.brands-stats-grid,
.brands-source-block,
.brands-table-section {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.brands-quick-answer {
  padding: 20px;
}
.brands-quick-answer h2 {
  margin-bottom: 10px;
  font-size: 28px;
  font-weight: 950;
}
.brands-quick-answer p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 16px;
}
.brands-quick-answer strong {
  color: var(--ink);
  font-size: 15px;
}
.brands-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: var(--line);
}
.brands-stats-grid div {
  min-width: 0;
  padding: 15px;
  background: #fff;
}
.brands-stats-grid span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.brands-stats-grid strong {
  display: block;
  margin-top: 5px;
  color: var(--brand-2);
  font-size: 26px;
  line-height: 1.15;
}
.brands-stats-grid div:last-child strong {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.35;
}
.brands-eeat-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.brands-eeat-strip div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.brands-eeat-strip strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
}
.brands-eeat-strip span {
  color: var(--muted);
  font-size: 13px;
}
.brands-section-head {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 460px);
  gap: 18px;
  align-items: end;
}
.brands-section-head h2 {
  margin: 0;
  font-size: 34px;
  font-weight: 950;
}
.brands-section-head p {
  margin: 0;
}
.brand-directory--premium {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.brand-tile--premium {
  min-height: 184px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.brand-tile--premium:hover {
  transform: translateY(-3px);
  border-color: rgba(37,99,235,.32);
  box-shadow: var(--shadow);
}
.brand-tile--empty {
  background: linear-gradient(180deg, #fff, #fbfcff);
}
.brand-logo--tile {
  width: 100%;
  min-height: 58px;
  justify-content: flex-start;
  padding: 10px 12px;
  margin: 0;
  background: #f8fbff;
}
.brand-logo--tile img {
  max-width: 150px;
  max-height: 42px;
}
.brand-logo--tile b {
  color: var(--brand-2);
  font-size: 19px;
  font-weight: 950;
}
.brand-tile__content strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 950;
}
.brand-tile__content em {
  display: block;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-style: normal;
  line-height: 1.45;
}
.brand-tile__footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.brand-tile__footer small {
  color: #475467;
  font-weight: 900;
}
.brand-tile__footer i {
  color: var(--brand-2);
  font-size: 13px;
  font-style: normal;
  font-weight: 950;
}
.brands-guide-copy {
  box-shadow: var(--shadow-sm);
}
.brands-source-block,
.brands-table-section {
  padding: 18px;
}
.brands-source-block p {
  margin: 0 0 10px;
  color: var(--muted);
}
.brands-table-section .section-head {
  margin-bottom: 14px;
}
.brands-table-wrap {
  box-shadow: none;
}
.brands-table {
  min-width: 920px;
}
.brands-table a {
  color: var(--brand);
  font-weight: 900;
}
.brands-faqs {
  margin-top: 0;
}

.pb-section {
  padding: 46px 0;
  background: #fff;
}
.pb-section.pb-gray {
  background: #f3f3f3;
}
.pb-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.pb-section-head h2 {
  margin: 0;
  color: #2f343b;
  font-size: 20px;
  font-weight: 900;
}
.pb-icon-title h2::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 8px;
  border-radius: 3px;
  background: var(--brand-2);
  vertical-align: -1px;
}
.pb-tabs {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 16px;
}
.pb-tabs button {
  min-height: 36px;
  padding: 0 0 10px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #6b7280;
  font-size: 12px;
  font-weight: 900;
}
.pb-tabs button.is-active {
  color: #111827;
  border-bottom: 3px solid var(--brand-2);
}
.pb-tab-panel {
  display: none;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}
.pb-tab-panel.is-active {
  display: grid;
}
.pb-tab-panel--carousel {
  position: relative;
  display: none;
}
.pb-tab-panel--carousel.is-active {
  display: block;
}
.pb-category-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(2, 126px);
  grid-auto-columns: minmax(146px, calc((100% - 56px) / 5));
  gap: 12px;
  overflow-x: auto;
  padding: 12px 6px 12px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}
.pb-category-carousel::-webkit-scrollbar {
  height: 8px;
}
.pb-category-carousel::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 999px;
}
.pb-category-logo-card {
  scroll-snap-align: start;
  display: grid;
  grid-template-rows: 1fr 38px;
  min-width: 146px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #fff;
  color: #111827;
  text-align: center;
  box-shadow: 0 8px 20px rgba(15, 23, 42, .05);
}
.pb-category-logo {
  min-height: 88px;
  display: grid;
  place-items: center;
  padding: 12px;
}
.pb-category-logo img {
  display: block;
  max-width: 108px;
  max-height: 38px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.pb-category-logo strong {
  color: #2563eb;
  font-size: 16px;
  font-weight: 950;
}
.pb-category-name {
  display: grid;
  place-items: center;
  min-height: 38px;
  border-top: 1px solid #e5e7eb;
  color: #111827;
  font-size: 13px;
  font-weight: 800;
}
.pb-cat-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  background: #fff;
  color: #94a3b8;
  box-shadow: 0 10px 24px rgba(15, 23, 42, .14);
  font-size: 28px;
  font-weight: 800;
  line-height: 28px;
  transform: translateY(-50%);
}
.pb-cat-arrow--prev {
  left: -7px;
}
.pb-cat-arrow--next {
  right: -7px;
}
.pb-tab-panel--links {
  min-height: 130px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px 24px;
  align-content: start;
  padding-top: 18px;
}
.pb-category-link {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #fff;
  color: #111827;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
}
.pb-category-link:hover {
  color: var(--brand-2);
}
.pb-tab-panel--processor {
  grid-template-columns: repeat(5, minmax(146px, 1fr));
  gap: 12px;
  overflow-x: auto;
  padding: 12px 6px 12px;
}
.pb-processor-card {
  min-height: 126px;
}
.pb-processor-mark {
  min-height: 88px;
  display: grid;
  place-items: center;
  padding: 12px;
  color: #111827;
  font-size: 16px;
  font-weight: 950;
}
.pb-processor-mediatek .pb-processor-mark {
  color: #f7941d;
  text-transform: uppercase;
}
.pb-processor-snapdragon .pb-processor-mark {
  color: #c91f2d;
}
.pb-processor-apple .pb-processor-mark {
  color: #111827;
}
.pb-processor-unisoc .pb-processor-mark {
  color: #8a2a8f;
}
.pb-processor-exynos .pb-processor-mark {
  color: #111827;
  font-size: 18px;
}
.pb-processor-hisilicon .pb-processor-mark {
  color: #111827;
  font-size: 20px;
}
.pb-category-card {
  min-height: 92px;
  display: grid;
  place-items: center;
  gap: 6px;
  padding: 14px 10px;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  background: #fff;
  text-align: center;
}
.pb-category-card strong {
  color: #111827;
  font-size: 18px;
  font-weight: 950;
}
.pb-category-card img {
  display: block;
  max-width: 118px;
  max-height: 34px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.pb-category-card span {
  color: #6b7280;
  font-size: 12px;
  font-weight: 700;
}
.pb-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 186px;
  gap: 14px;
  overflow-x: auto;
  padding: 2px 4px 12px;
  scroll-snap-type: x mandatory;
}
.pb-scroll::-webkit-scrollbar,
.pb-shorts::-webkit-scrollbar {
  height: 8px;
}
.pb-scroll::-webkit-scrollbar-thumb,
.pb-shorts::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 999px;
}
.pb-phone-card {
  scroll-snap-align: start;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #fff;
  text-align: center;
  box-shadow: 0 8px 18px rgba(15, 23, 42, .04);
}
.pb-phone-media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 142px;
  padding: 12px 10px;
  background: #fff;
}
.pb-phone-media img {
  max-height: 112px;
  width: auto;
  object-fit: contain;
}
.pb-device {
  display: block;
  width: 58px;
  aspect-ratio: 9 / 18;
  border: 5px solid #111827;
  border-radius: 14px;
  background: linear-gradient(160deg, #dbeafe, #111827);
}
.pb-phone-body {
  display: grid;
  gap: 8px;
  padding: 0 12px 12px;
}
.pb-phone-body h3 {
  min-height: 36px;
  margin: 0;
  color: #1f2937;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.25;
}
.pb-phone-price {
  display: flex;
  min-height: 24px;
  justify-content: center;
  gap: 5px;
  align-items: center;
  margin: 0;
  color: var(--brand-2);
}
.pb-phone-price span {
  display: inline-flex;
  align-items: center;
  min-height: 17px;
  padding: 0 4px;
  background: var(--brand);
  color: #fff;
  font-size: 9px;
  font-weight: 950;
  line-height: 1;
}
.pb-phone-updated {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 9px;
  border-radius: 999px;
  background: #eef5ff;
  color: #475467;
  font-size: 10px;
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
}
.pb-phone-price strong {
  display: block;
  color: inherit;
  font-size: 14px;
  font-weight: 950;
}
.pb-empty-strip {
  grid-column: 1;
  width: 260px;
  padding: 20px;
  border: 1px dashed #cbd5e1;
  border-radius: 6px;
  background: #fff;
  color: #667085;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}
.pb-compare {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  width: 92px;
  margin: 0 auto;
  padding: 0 10px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  font-size: 11px;
  font-weight: 900;
}
.pb-carousel-frame {
  position: relative;
}
.pb-strip-arrow--prev {
  left: -16px;
}
.pb-strip-arrow--next {
  right: -16px;
}
.pb-shorts {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 174px;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 12px;
}
.pb-short-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border-radius: 8px;
  background: #1f2937;
}
.pb-short-card img,
.pb-short-bg {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  opacity: .86;
}
.pb-short-bg {
  display: block;
  background: linear-gradient(160deg, #c7d2fe, #111827);
}
.pb-play,
.pb-video-thumb span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  width: 58px;
  height: 44px;
  border-radius: 10px;
  background: #e50914;
  color: #fff;
  font-size: 0;
}
.pb-play::before,
.pb-video-thumb span::before {
  content: "";
  border-left: 17px solid #fff;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  margin-left: 4px;
}
.pb-news-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 22px;
}
.pb-news-card {
  display: grid;
  grid-template-columns: 116px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 78px;
  padding: 8px;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  background: #fff;
}
.pb-news-card span {
  display: block;
  overflow: hidden;
  height: 62px;
  border-radius: 3px;
  background: linear-gradient(135deg, #e5e7eb, #c7d2fe 55%, #111827);
}
.pb-news-card span img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pb-news-card strong {
  color: #1f2937;
  font-size: 13px;
  line-height: 1.28;
}
.pb-section .comparison-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 340px;
  grid-template-columns: none;
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 12px;
}
.pb-section .comparison-card {
  min-height: 184px;
  border-radius: 8px;
}
.pb-home-trust .container {
  display: grid;
  gap: 18px;
}
.home-seo-intro,
.home-price-verification,
.home-ai-summary {
  padding: 22px;
}
.home-seo-intro h2,
.home-price-verification h2 {
  margin-bottom: 10px;
  color: #1f2937;
  font-size: 24px;
  font-weight: 950;
}
.home-seo-intro p,
.home-ai-summary p,
.home-faqs p {
  margin: 0;
  color: var(--muted);
}
.home-trust-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  align-items: stretch;
}
.home-price-verification ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}
.home-ai-summary {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(135deg, #ffffff, #eef8f7);
}
.home-ai-summary .eyebrow {
  margin-bottom: 12px;
}
.home-ai-summary p {
  color: #1f2937;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.55;
}
.home-guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.home-guide-grid a {
  display: flex;
  align-items: center;
  min-height: 72px;
  padding: 16px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #fff;
  color: #1f2937;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(15, 23, 42, .05);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.home-guide-grid a:hover {
  transform: translateY(-3px);
  border-color: rgba(37,99,235,.35);
  box-shadow: var(--shadow-sm);
}
.home-faqs .faq-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.home-faqs .faq-item {
  box-shadow: var(--shadow-sm);
}
.home-faqs .faq-item h3 {
  margin-bottom: 8px;
  color: #1f2937;
  font-size: 16px;
  font-weight: 950;
}
.pb-video-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.pb-video-card {
  overflow: hidden;
  border: 1px solid #e5e7eb;
  border-radius: 5px;
  background: #fff;
}
.pb-video-thumb {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 130px;
  background: #f3f4f6;
}
.pb-video-thumb img {
  max-height: 128px;
  width: 100%;
  object-fit: cover;
}
.pb-video-card strong {
  display: block;
  padding: 10px;
  color: #1f2937;
  font-size: 13px;
  line-height: 1.3;
}
.brand-seo-shell {
  display: grid;
  gap: 28px;
}
.brand-seo-hero .archive-hero-grid {
  align-items: stretch;
}
.brand-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.brand-summary-card,
.brand-section-block,
.brand-seo-copy {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.brand-summary-card {
  min-height: 108px;
  padding: 16px;
}
.brand-summary-card span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.brand-summary-card strong {
  color: var(--ink);
  font-size: 22px;
  line-height: 1.15;
}
.range-insight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}
.range-insight-card {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: start;
  min-height: 88px;
  padding: 14px;
  border: 1px solid #dce7f5;
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #f8fbff);
  box-shadow: 0 8px 22px rgba(15, 23, 42, .05);
}
.range-insight-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: #e7f8f5;
  color: var(--brand);
}
.range-insight-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.range-insight-card span:not(.range-insight-icon) {
  display: block;
  margin: 1px 0 5px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}
.range-insight-card p {
  margin: 0;
  color: #172033;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.35;
}
.brand-section-block {
  padding: 20px;
}
.brand-section-block .section-head {
  margin-bottom: 16px;
}
.brand-chip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.brand-chip-grid a {
  min-height: 86px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbff;
}
.brand-chip-grid strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
}
.brand-chip-grid span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}
.budget-chip-carousel {
  position: relative;
  margin: 0 0 18px;
  padding: 0 50px;
  box-sizing: border-box;
  max-width: 100%;
}
.budget-chip-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 42px;
  height: 42px;
  color: #0f766e;
  transform: translateY(-50%);
}
.budget-chip-arrow--prev {
  left: 0;
}
.budget-chip-arrow--next {
  right: 0;
}
.budget-chip-grid {
  display: flex;
  gap: 12px;
  max-width: 100%;
  margin: 0;
  overflow-x: auto;
  padding: 2px 2px 12px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.budget-chip-grid a {
  flex: 0 0 245px;
  min-height: 88px;
  scroll-snap-align: start;
}
.budget-chip-grid strong,
.budget-chip-grid span {
  overflow-wrap: anywhere;
}
.brand-seo-copy {
  padding: 24px;
}
.brand-seo-copy h2 {
  margin-top: 0;
  font-size: 28px;
}
.brand-seo-copy p {
  color: #475467;
  font-size: 16px;
}
.brand-price-table a {
  color: var(--brand-2);
  font-weight: 900;
}
.brand-note-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}
.brand-note-grid div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbff;
}
.brand-note-grid strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
}
.brand-note-grid p {
  margin: 0;
  font-size: 14px;
}
.brand-section-block.faq-list {
  margin-top: 0;
}
.need-hero {
  background:
    linear-gradient(115deg, rgba(10,22,40,.95), rgba(15,118,110,.86), rgba(37,99,235,.72)),
    url("../images/light-premium-phones.png") right center / contain no-repeat !important;
}
.budget-hero {
  background:
    linear-gradient(115deg, rgba(10,22,40,.95), rgba(37,99,235,.82), rgba(245,158,11,.62)),
    url("../images/light-premium-phones.png") right center / contain no-repeat !important;
}
.need-guide-copy {
  margin-top: 22px;
}
.budget-guide-copy {
  margin-top: 22px;
}

.phone-hero--product {
  padding: 34px 0 46px;
  background: #f6f8fb !important;
  color: var(--ink);
}
.phone-hero--product h1,
.phone-hero--product .price {
  color: var(--ink);
}
.phone-hero-product {
  display: grid;
  grid-template-columns: minmax(320px, .95fr) minmax(360px, 1fr);
  gap: 24px;
  align-items: start;
}
.phone-gallery {
  display: grid;
  gap: 10px;
}
.phone-gallery__main {
  display: grid;
  place-items: center;
  min-height: 500px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.phone-gallery__main img {
  max-height: 430px;
  width: auto;
  object-fit: contain;
}
.phone-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}
.phone-gallery__thumbs button {
  display: grid;
  place-items: center;
  min-height: 110px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: none;
}
.phone-gallery__thumbs button.is-active {
  border-color: var(--brand);
  box-shadow: inset 0 0 0 1px var(--brand);
}
.phone-gallery__thumbs img {
  max-height: 82px;
  width: auto;
  object-fit: contain;
}
.phone-summary--product {
  padding: 0;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}
.hero-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  background: #eef2f7;
  color: #344054;
  font-size: 12px;
  font-weight: 950;
}
.hero-badges .is-status {
  background: #147ef5;
  color: #fff;
}
.hero-badges .is-network {
  background: #12b981;
  color: #fff;
}
.phone-summary--product h1 {
  max-width: 760px;
  margin-bottom: 6px;
  font-size: clamp(32px, 3.4vw, 48px);
}
.hero-price-block {
  margin: 0 0 10px;
}
.hero-price-block > span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}
.hero-price-block .price {
  margin: 0;
  color: #147ef5;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.1;
}
.hero-price-block p {
  margin: 6px 0 0;
  color: #667085;
  font-size: 14px;
  font-weight: 700;
}
.hero-rating-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  margin: 9px 0 18px;
}
.expert-score {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 9px;
  border-radius: 999px;
  background: #147ef5;
  color: #fff;
  font-size: 12px;
  font-weight: 950;
}
.star-rating {
  position: relative;
  display: inline-block;
  color: #d0d5dd;
  font-size: 17px;
  line-height: 1;
  letter-spacing: 0;
}
.star-rating::before {
  content: "\2605\2605\2605\2605\2605";
}
.star-rating span {
  position: absolute;
  inset: 0 auto 0 0;
  overflow: hidden;
  color: #f59e0b;
  white-space: nowrap;
}
.star-rating span::before {
  content: "\2605\2605\2605\2605\2605";
}
.review-count {
  color: #667085;
  font-size: 13px;
  font-weight: 800;
}
.hero-spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0 14px;
}
.hero-spec-card {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 66px;
  padding: 12px;
  border: 1px solid #dbe5f2;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, .045);
}
.hero-spec-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: #eaf3ff;
  color: #147ef5;
}
.hero-spec-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero-spec-copy span {
  display: block;
  color: #667085;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.hero-spec-copy strong {
  display: block;
  margin-top: 2px;
  color: #0f172a;
  font-size: 14px;
  line-height: 1.25;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0;
}
.phone-trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.phone-trust-strip div,
.phone-trust-strip a {
  display: block;
  min-height: 96px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #f8fbff);
  box-shadow: 0 10px 24px rgba(15, 23, 42, .04);
  text-decoration: none;
}
.phone-trust-strip a {
  border-color: #bcd7ff;
}
.phone-trust-strip span {
  display: block;
  margin-bottom: 5px;
  color: #5b6b84;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}
.phone-trust-strip strong {
  display: block;
  color: #101828;
  font-size: 13px;
  line-height: 1.3;
}
.phone-trust-strip em {
  display: block;
  margin-top: 8px;
  color: #667085;
  font-size: 12px;
  font-style: normal;
  font-weight: 750;
}
.reviews-panel {
  margin-top: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: none;
}
.reviews-panel h2 {
  margin-bottom: 8px;
  font-size: 22px;
}
.reviews-panel p {
  margin: 0 0 8px;
  color: #475467;
}

.phone-decision-panels {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
  gap: 18px;
  margin-top: 18px;
  margin-bottom: 18px;
}
.phone-market-card,
.phone-score-panel,
.phone-price-history,
.phone-ai-summary {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.phone-market-card h2,
.phone-score-panel h2,
.phone-price-history h2,
.phone-ai-summary h2 {
  margin-bottom: 10px;
}
.phone-market-card p,
.phone-score-panel p,
.phone-price-history p {
  color: var(--muted);
}
.phone-ai-summary {
  margin-bottom: 24px;
}
.phone-ai-summary__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}
.phone-ai-summary__grid div {
  min-height: 76px;
  padding: 12px;
  border: 1px solid #e3ebf6;
  border-radius: 8px;
  background: #f8fbff;
}
.phone-ai-summary__grid span {
  display: block;
  margin-bottom: 6px;
  color: #667085;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}
.phone-ai-summary__grid strong {
  display: block;
  color: #101828;
  font-size: 14px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}
.phone-ai-summary__grid a {
  color: #1d4ed8;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.phone-price-matrix {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}
.phone-price-matrix div {
  min-height: 86px;
  padding: 12px;
  border: 1px solid #e3ebf6;
  border-radius: 8px;
  background: #f8fbff;
}
.phone-price-matrix span,
.phone-strength-pills span {
  display: block;
  color: #667085;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.phone-price-matrix strong {
  display: block;
  margin-top: 7px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.28;
}
.phone-score-panel .score-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 14px 0;
}
.phone-strength-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 18px;
}
.phone-strength-pills span {
  padding: 8px 10px;
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  background: #eff6ff;
  color: #1d4ed8;
}
.phone-price-history {
  display: grid;
  grid-template-columns: minmax(0, .45fr) minmax(0, .55fr);
  gap: 22px;
  align-items: end;
  margin-bottom: 24px;
}
.price-history-chart {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  min-height: 220px;
  align-items: end;
}
.price-history-bar {
  display: grid;
  grid-template-rows: 150px auto auto;
  gap: 7px;
  align-items: end;
  text-align: center;
}
.price-history-bar span {
  display: block;
  width: 100%;
  min-height: 18px;
  border-radius: 8px 8px 2px 2px;
  background: linear-gradient(180deg, #0ea5e9, #14b8a6);
}
.price-history-bar strong {
  color: var(--ink);
  font-size: 12px;
  line-height: 1.2;
}
.price-history-bar small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
}
.price-history-empty {
  padding: 16px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  background: #f8fbff;
}
.price-history-empty strong,
.price-history-empty span {
  display: block;
}
.price-history-empty span {
  margin-top: 4px;
  color: var(--muted);
}

.smart-finder-page {
  background: linear-gradient(180deg, #f7fafc 0%, #eff8fb 50%, #f8fafc 100%);
}
.smart-finder-hero {
  padding: 54px 0 38px;
  background:
    linear-gradient(115deg, rgba(10, 37, 64, .96), rgba(15, 118, 110, .88), rgba(37, 99, 235, .72)),
    url("../images/light-premium-phones.png") right center / contain no-repeat;
  color: #fff;
}
.smart-finder-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 28px;
  align-items: center;
}
.smart-finder-hero .eyebrow {
  background: rgba(255,255,255,.14);
  color: #fff;
}
.smart-finder-hero h1 {
  max-width: 780px;
  margin: 14px 0 16px;
  color: #fff;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1;
  font-weight: 950;
}
.smart-finder-hero p {
  max-width: 760px;
  color: rgba(255,255,255,.82);
  font-size: 18px;
}
.smart-finder-hero-panel {
  padding: 22px;
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 8px;
  background: rgba(255,255,255,.95);
  color: var(--ink);
  box-shadow: 0 24px 70px rgba(0,0,0,.22);
}
.smart-finder-hero-panel strong {
  display: block;
  font-size: 32px;
  line-height: 1.05;
}
.smart-finder-hero-panel span {
  display: block;
  margin-top: 6px;
  color: var(--brand-2);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.smart-finder-hero-panel p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
}
.smart-hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.smart-hero-links a {
  padding: 10px 13px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 8px;
  background: rgba(255,255,255,.1);
  color: #fff;
  font-size: 13px;
  font-weight: 850;
}
.smart-finder-page__body {
  display: grid;
  gap: 34px;
  padding: 38px 0 56px;
}
.smart-finder {
  display: grid;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.smart-finder__head p {
  max-width: 820px;
  color: var(--muted);
}
.smart-finder-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbff;
}
.smart-finder-form label {
  display: grid;
  gap: 6px;
  min-width: 0;
}
.smart-finder-form label span {
  color: #344054;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.smart-finder-check {
  grid-template-columns: auto 1fr;
  align-items: center;
  padding: 0 10px;
  border: 1px solid #cfe0f5;
  border-radius: 8px;
  background: #fff;
}
.smart-finder-check input {
  min-height: 0;
}
.smart-finder-form button {
  align-self: end;
}
.smart-results {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.smart-result-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.smart-result-media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 210px;
  padding: 18px;
  background: #f8fbff;
}
.smart-result-media img {
  max-height: 178px;
  width: auto;
  object-fit: contain;
}
.smart-result-media small {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 9px;
  border-radius: 999px;
  background: #0f766e;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}
.smart-result-body {
  display: grid;
  gap: 10px;
  padding: 16px;
}
.smart-result-body > span {
  color: var(--brand-2);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.smart-result-body h3 {
  min-height: 44px;
  margin: 0;
  font-size: 19px;
}
.smart-result-body > strong {
  color: var(--ink);
  font-size: 20px;
}
.smart-match {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px;
  border-radius: 8px;
  background: #eef8f4;
}
.smart-match b {
  color: #047857;
  font-size: 20px;
}
.smart-match span {
  color: #065f46;
  font-size: 12px;
  font-weight: 850;
}
.smart-reasons {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.smart-reasons em {
  padding: 6px 8px;
  border-radius: 999px;
  background: #fff7ed;
  color: #9a3412;
  font-size: 12px;
  font-style: normal;
  font-weight: 850;
}
.smart-result-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.smart-guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.smart-guide-grid div {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.smart-guide-grid h2 {
  font-size: 22px;
}
.smart-guide-grid p {
  color: var(--muted);
}

@media (max-width: 980px) {
  .intent-grid,
  .compare-band,
  .compare-hero__grid,
  .compare-empty-live,
  .listing-shell,
  .hero-grid,
  .guide-grid,
  .phone-hero-grid,
  .phone-content,
  .brands-directory-hero__grid,
  .brands-section-head,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .listing-sidebar,
  .overview-panel {
    position: static;
  }
  .phone-grid,
  .price-grid,
  .brand-directory,
  .comparison-grid,
  .winner-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .pb-tab-panel { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .phone-hero-product {
    grid-template-columns: 1fr;
  }
  .phone-quick-answer,
  .phone-decision-panels,
  .phone-price-history,
  .smart-finder-hero__grid {
    grid-template-columns: 1fr;
  }
  .phone-price-matrix,
  .phone-ai-summary__grid,
  .smart-results,
  .smart-guide-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .smart-finder-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .phone-gallery__main {
    min-height: 420px;
  }
  .pb-video-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-trust-grid,
  .home-faqs .faq-list {
    grid-template-columns: 1fr;
  }
  .home-guide-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .brand-summary-grid,
  .range-insight-grid,
  .brand-chip-grid,
  .brand-budget-grid,
  .brands-eeat-strip,
  .brand-directory--premium { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .compare-selector { grid-template-columns: 1fr; }
  .listing-results .archive-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .compare-winner-badges,
  .compare-recommendation,
  .compare-verdict-grid,
  .related-comparisons .comparison-grid,
  .compare-guide-grid,
  .compare-intent-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .compare-hero__grid {
    gap: 24px;
  }
  .compare-hero__copy h1 {
    font-size: 46px;
  }
  .pta-hero__grid,
  .pta-page-grid {
    grid-template-columns: 1fr;
  }
  .pta-context-card {
    position: static;
  }
  .pta-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .container { width: min(100% - 22px, 1200px); }
  .hero { padding: 44px 0 36px; }
  .hero h1 { font-size: 38px; }
  .hero-search,
  .finder-form,
  .phone-grid,
  .price-grid,
  .brand-directory,
  .comparison-grid,
  .intent-grid,
  .compare-guide-grid,
  .compare-intent-grid,
  .winner-grid,
  .score-grid,
  .price-trust,
  .pros-cons,
  .buyer-fit,
  .phone-ai-summary__grid {
    grid-template-columns: 1fr;
  }
  .phone-quick-answer {
    padding: 14px;
  }
  .phone-quick-answer .button {
    width: 100%;
  }
  .verdict-facts div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .live-search-panel {
    left: 0;
    right: 0;
  }
  .live-search-item {
    grid-template-columns: 42px minmax(0, 1fr);
  }
  .live-search-item em {
    display: none;
  }
  .compare-verdict-grid,
  .compare-winner-badges,
  .compare-recommendation,
  .related-comparisons .comparison-grid {
    grid-template-columns: 1fr;
  }
  .compare-hero {
    padding: 38px 0 28px;
    background:
      linear-gradient(135deg, rgba(16,24,40,.97), rgba(15,118,110,.9));
  }
  .compare-hero__grid,
  .compare-empty-live,
  .compare-hub-stats,
  .compare-empty-live__steps {
    grid-template-columns: 1fr;
  }
  .compare-hero__copy h1 {
    font-size: 38px;
  }
  .pta-hero {
    padding: 40px 0 30px;
    background: linear-gradient(135deg, rgba(10,37,64,.97), rgba(15,118,110,.9));
  }
  .pta-hero__copy h1 {
    font-size: 38px;
  }
  .pta-calculator--advanced,
  .pta-result-grid,
  .pta-process-grid,
  .mpp-contact-form__grid {
    grid-template-columns: 1fr;
  }
  .pta-result-summary,
  .pta-saving {
    align-items: flex-start;
    flex-direction: column;
  }
  .pta-saving span {
    text-align: left;
  }
  .pta-money-input {
    grid-template-columns: 92px minmax(0, 1fr);
  }
  .pta-actions button {
    width: 100%;
  }
  .compare-tool-card {
    padding: 14px;
  }
  .compare-tool-card__head {
    align-items: flex-start;
    flex-direction: column;
  }
  .compare-picker__list {
    position: fixed;
    top: auto;
    right: 12px;
    bottom: 12px;
    left: 12px;
    max-height: 58vh;
  }
  .compare-empty-live,
  .compare-discovery {
    padding: 16px;
  }
  .comparison-page {
    gap: 18px;
  }
  .comparison-page .seo-copy {
    padding: 20px;
  }
  .comparison-page .seo-copy > .eyebrow {
    margin-bottom: 10px;
  }
  .compare-verdict-grid div {
    padding: 16px;
  }
  .brand-budget-grid {
    grid-template-columns: 1fr;
  }
  .phone-card__media { min-height: 170px; }
  .phone-card__body h3 { min-height: 0; }
  .listing-results .archive-grid { grid-template-columns: 1fr; }
  .listing-toolbar { align-items: flex-start; flex-direction: column; }
  .mobile-archive-intro { grid-template-columns: 1fr; }
  .mobile-archive-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mobile-archive-stats div:first-child { grid-column: auto; }
  .mobile-archive-stats div {
    padding: 12px;
  }
  .mobile-archive-stats span {
    font-size: 10px;
    line-height: 1.25;
  }
  .mobile-archive-stats strong {
    font-size: 26px;
  }
  .archive-hero,
  .archive-hero-grid,
  .archive-hero-grid > *,
  .mobile-archive-intro,
  .listing-shell,
  .listing-results,
  .mobile-quick-answer,
  .mobile-source-block,
  .mobile-price-table-section {
    min-width: 0;
    max-width: 100%;
  }
  .archive-hero .container,
  .mobile-archive-intro,
  .listing-shell {
    width: calc(100vw - 22px) !important;
    max-width: calc(100vw - 22px) !important;
  }
  .archive-hero {
    overflow: hidden;
  }
  .archive-hero h1 {
    max-width: 100%;
    font-size: 30px;
    overflow-wrap: anywhere;
    word-break: normal;
  }
  .archive-hero p,
  .mobile-quick-answer p,
  .mobile-source-block p {
    max-width: calc(100vw - 54px);
    white-space: normal !important;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .mobile-quick-answer h2 {
    font-size: 24px;
  }
  .mobile-quick-answer p {
    font-size: 15px;
    line-height: 1.55;
  }
  .mobile-quick-answer p span {
    display: block;
  }
  .mobile-price-table-wrap {
    max-width: 100%;
    overflow-x: auto;
  }
  .buying-snapshot { grid-template-columns: 1fr 1fr; }
  .active-filters a { width: 100%; margin-left: 0; }
  .pb-section { padding: 34px 0; }
  .phone-hero--product {
    padding: 22px 0 34px;
  }
  .phone-summary--product h1 {
    font-size: 30px;
  }
  .range-insight-grid,
  .phone-price-matrix,
  .phone-score-panel .score-grid,
  .smart-finder-form,
  .smart-results,
  .smart-guide-grid {
    grid-template-columns: 1fr;
  }
  .price-history-chart {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    min-height: 260px;
  }
  .smart-result-actions {
    grid-template-columns: 1fr;
  }
  .smart-finder-hero {
    padding: 40px 0 30px;
    background: linear-gradient(135deg, rgba(10,37,64,.97), rgba(15,118,110,.9));
  }
  .smart-finder-hero h1 {
    font-size: 38px;
  }
  .phone-gallery__main {
    min-height: 340px;
    padding: 18px;
  }
  .phone-gallery__main img {
    max-height: 290px;
  }
  .phone-gallery__thumbs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .phone-gallery__thumbs button {
    min-height: 82px;
  }
  .hero-spec-grid,
  .phone-trust-strip {
    grid-template-columns: 1fr;
  }
  .hero-actions .button {
    width: 100%;
  }
  .pb-tab-panel,
  .pb-news-grid,
  .pb-video-grid,
  .home-guide-grid { grid-template-columns: 1fr; }
  .brand-summary-grid,
  .brand-chip-grid,
  .brand-note-grid,
  .brands-eeat-strip,
  .brand-directory--premium { grid-template-columns: 1fr; }
  .pb-scroll { grid-auto-columns: 145px; gap: 10px; }
  .pb-news-card { grid-template-columns: 92px 1fr; }
  .pb-section .comparison-grid {
    grid-auto-columns: 300px;
  }
  .comparison-card.comparison-card--vs {
    min-height: 188px;
    padding: 14px;
  }
  .comparison-card__visuals,
  .comparison-card span.comparison-card__visuals {
    grid-template-columns: minmax(0, 1fr) 46px minmax(0, 1fr);
    flex-basis: 102px;
    height: 102px;
  }
  .comparison-card__phone,
  .comparison-card span.comparison-card__phone {
    height: 102px;
  }
  .comparison-card__thumb {
    width: 96px;
    height: 96px;
  }
  .comparison-card__thumb img {
    max-width: 96px !important;
    max-height: 96px !important;
  }
  .comparison-card__names,
  .comparison-card span.comparison-card__names {
    gap: 46px;
    margin-top: 10px;
  }
  .comparison-card__names strong {
    font-size: 14px;
    min-height: 36px;
  }
  .comparison-card__divider {
    height: 102px;
    min-width: 46px;
  }
  .comparison-card__divider span {
    width: 36px;
    height: 36px;
    font-size: 12px;
  }
}

@media (max-width: 980px) {
  .pb-category-carousel {
    grid-auto-columns: 180px;
  }
  .pb-tab-panel--links.is-active {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px 42px;
  }
  .pb-tab-panel--processor.is-active {
    grid-template-columns: repeat(3, minmax(180px, 1fr));
  }
}

@media (max-width: 640px) {
  .pb-category-carousel {
    grid-auto-columns: 150px;
    grid-template-rows: repeat(2, 142px);
    gap: 10px;
    padding-left: 4px;
    padding-right: 4px;
  }
  .pb-category-logo-card {
    min-width: 150px;
    grid-template-rows: 1fr 45px;
  }
  .pb-category-logo {
    min-height: 96px;
    padding: 12px;
  }
  .pb-category-logo img {
    max-width: 112px;
    max-height: 38px;
  }
  .pb-category-name {
    min-height: 45px;
    font-size: 14px;
  }
  .pb-cat-arrow {
    width: 36px;
    height: 36px;
    font-size: 30px;
  }
  .pb-tab-panel--links.is-active {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 150px;
    gap: 24px 20px;
    padding-top: 26px;
  }
  .pb-category-link {
    font-size: 20px;
  }
  .pb-tab-panel--processor.is-active {
    grid-template-columns: repeat(2, minmax(145px, 1fr));
  }
  .pb-processor-card {
    min-height: 142px;
  }
  .pb-processor-mark {
    min-height: 96px;
    font-size: 18px;
  }
}

/* Homepage authority, trust and guide sections */
.mpp-home-authority {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
}
.mpp-home-authority .container,
.mpp-home-guides .container,
.mpp-home-faqs .container {
  display: grid;
  gap: 22px;
}
.mpp-section-kicker {
  display: grid;
  gap: 8px;
  max-width: 760px;
}
.mpp-section-kicker h2 {
  margin: 0;
  color: #101828;
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 950;
  letter-spacing: 0;
}
.mpp-authority-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
  gap: 18px;
  align-items: stretch;
}
.mpp-authority-copy,
.mpp-summary-card,
.mpp-trust-card,
.mpp-guide-card,
.mpp-faq-item {
  border: 1px solid #d8e1ee;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(16, 24, 40, .07);
}
.mpp-authority-copy {
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.mpp-authority-copy::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(15,118,110,.12), transparent 68%);
  pointer-events: none;
}
.mpp-authority-copy h2 {
  max-width: 820px;
  margin: 12px 0 12px;
  color: #101828;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.08;
  font-weight: 950;
}
.mpp-authority-copy p,
.mpp-summary-card p,
.mpp-trust-card p,
.mpp-faq-item p {
  margin: 0;
  color: #5f6f85;
  font-size: 15px;
  line-height: 1.72;
}
.mpp-summary-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(15,118,110,.08), rgba(37,99,235,.08)),
    #fff;
}
.mpp-summary-card strong {
  margin: 14px 0 8px;
  color: #101828;
  font-size: 20px;
  font-weight: 950;
}
.mpp-card-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: linear-gradient(135deg, #0f766e, #2563eb);
  color: #fff;
  box-shadow: 0 12px 24px rgba(37, 99, 235, .18);
}
.mpp-card-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.mpp-verification-panel {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid #d8e1ee;
  border-radius: 8px;
  background: #f8fbff;
}
.mpp-trust-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.mpp-trust-card {
  display: grid;
  gap: 12px;
  min-height: 210px;
  padding: 20px;
}
.mpp-trust-card strong {
  color: #101828;
  font-size: 18px;
  font-weight: 950;
}
.mpp-home-guides {
  background: #f3f6fa;
}
.mpp-guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.mpp-guide-card {
  position: relative;
  display: grid;
  gap: 8px;
  min-height: 150px;
  padding: 20px 56px 20px 20px;
  overflow: hidden;
  color: #101828;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.mpp-guide-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, #0f766e, #2563eb);
}
.mpp-guide-card span {
  width: fit-content;
  padding: 5px 9px;
  border-radius: 999px;
  background: #e7f8f5;
  color: #0f766e;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}
.mpp-guide-card strong {
  color: #101828;
  font-size: 18px;
  font-weight: 950;
  line-height: 1.22;
}
.mpp-guide-card small {
  color: #667085;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.45;
}
.mpp-guide-card b {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: #edf6ff;
  color: #2563eb;
  font-size: 26px;
  line-height: 1;
}
.mpp-guide-card:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 99, 235, .34);
  box-shadow: 0 18px 42px rgba(16, 24, 40, .12);
}
.mpp-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.mpp-faq-item {
  position: relative;
  min-height: 158px;
  padding: 22px 22px 22px 76px;
}
.mpp-faq-item--wide {
  grid-column: 1 / -1;
}
.mpp-faq-number {
  position: absolute;
  left: 20px;
  top: 22px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: #101828;
  color: #fff;
  font-size: 12px;
  font-weight: 950;
}
.mpp-faq-item h3 {
  margin: 0 0 8px;
  color: #101828;
  font-size: 18px;
  font-weight: 950;
}
@media (max-width: 980px) {
  .mpp-authority-panel,
  .mpp-trust-cards,
  .mpp-guide-grid,
  .mpp-faq-grid {
    grid-template-columns: 1fr;
  }
  .mpp-faq-item--wide {
    grid-column: auto;
  }
}
@media (max-width: 640px) {
  .mpp-authority-copy,
  .mpp-summary-card,
  .mpp-verification-panel {
    padding: 18px;
  }
  .mpp-authority-copy h2 {
    font-size: 28px;
  }
  .mpp-trust-card,
  .mpp-guide-card {
    min-height: 0;
  }
  .mpp-faq-item {
    padding: 18px;
  }
  .mpp-faq-number {
    position: static;
    margin-bottom: 12px;
  }
}

/* Mobile header drawer */
.nav-toggle {
  align-items: center;
  gap: 8px;
}
.nav-toggle__bars {
  display: grid;
  gap: 4px;
  width: 18px;
}
.nav-toggle__bars i {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}
@media (max-width: 900px) {
  body.nav-is-open {
    overflow: hidden;
  }
  .site-header {
    z-index: 100;
  }
  .header-wrap {
    min-height: 72px;
    gap: 12px;
  }
  .brand {
    min-width: 0;
    flex: 1;
  }
  .brand-mark {
    flex: 0 0 40px;
  }
  .brand span:last-child {
    min-width: 0;
  }
  .brand strong,
  .brand small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .brand strong {
    font-size: 18px;
    line-height: 1.18;
  }
  .brand small {
    font-size: 12px;
  }
  .nav-toggle {
    display: inline-flex;
    flex: 0 0 auto;
    min-width: 46px;
    min-height: 42px;
    padding: 0 12px;
    border: 1px solid #d8e1ee;
    border-radius: 8px;
    background: #fff;
    color: #101828;
    box-shadow: none;
  }
  .nav-toggle[aria-expanded="true"] {
    background: #0f766e;
    color: #fff;
    border-color: #0f766e;
  }
  .primary-nav {
    position: fixed;
    top: 82px;
    right: 12px;
    left: 12px;
    display: none;
    max-height: calc(100dvh - 96px);
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 10px;
    border: 1px solid #d8e1ee;
    border-radius: 12px;
    background: rgba(255,255,255,.98);
    box-shadow: 0 24px 70px rgba(16,24,40,.22);
  }
  .primary-nav.is-open {
    display: block;
  }
  .primary-nav > ul,
  .primary-nav .menu {
    display: grid;
    gap: 4px;
  }
  .primary-nav li {
    position: static;
  }
  .primary-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 44px;
    padding: 10px 12px;
    border-radius: 8px;
    color: #344054;
    font-size: 15px;
    font-weight: 900;
  }
  .primary-nav a:hover {
    background: #edf6ff;
  }
  .primary-nav .menu-item-has-children > a::after {
    width: 8px;
    height: 8px;
    margin: 0 4px 2px 12px;
    transition: transform .18s ease;
  }
  .primary-nav .menu-item-has-children.is-submenu-open > a::after {
    transform: rotate(225deg);
  }
  .primary-nav .sub-menu {
    position: static;
    display: none;
    min-width: 0;
    margin: 2px 0 8px;
    padding: 6px 0 6px 10px;
    border: 0;
    border-left: 2px solid #d8e1ee;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .primary-nav .is-submenu-open > .sub-menu {
    display: grid;
  }
  .primary-nav .sub-menu a {
    min-height: 40px;
    padding: 8px 12px;
    color: #475467;
    font-size: 14px;
    font-weight: 800;
    white-space: normal;
  }
  .primary-nav .sub-menu a:hover {
    background: #e7f8f5;
    color: #0f766e;
  }
}
@media (max-width: 420px) {
  .nav-toggle__label {
    display: none;
  }
  .brand strong {
    font-size: 16px;
  }
  .brand small {
    font-size: 11px;
  }
}

/* Brand archive mobile containment */
.brand-seo-shell,
.brand-seo-shell *,
.brand-seo-hero,
.brand-seo-hero * {
  max-width: 100%;
}
@media (max-width: 900px) {
  .brand-seo-hero {
    padding: 34px 0 30px;
    overflow: hidden;
    background:
      linear-gradient(135deg, rgba(10,22,40,.96), rgba(15,118,110,.9)) !important;
  }
  .brand-seo-hero .archive-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }
  .brand-seo-hero h1 {
    max-width: 100%;
    font-size: 34px;
    line-height: 1.05;
    overflow-wrap: anywhere;
  }
  .brand-seo-hero p {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.65;
    overflow-wrap: anywhere;
  }
  .brand-hero-card {
    width: 100%;
    min-height: 0;
    padding: 16px;
  }
  .brand-logo--large {
    width: 100%;
    min-height: 56px;
    padding: 10px;
  }
  .brand-logo--large img {
    max-width: 150px;
    max-height: 46px;
  }
  .brand-seo-shell {
    width: min(100% - 22px, 1200px);
    padding-top: 28px;
    padding-bottom: 38px;
    gap: 20px;
    overflow: hidden;
  }
  .brand-nav-links {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    max-width: 100%;
    overflow-x: auto;
    margin: 0;
    padding: 2px 2px 10px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .brand-nav-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    min-width: 118px;
    min-height: 38px;
    padding: 8px 12px;
    border-radius: 999px;
    scroll-snap-align: start;
    text-align: center;
    white-space: nowrap;
    font-size: 13px;
    line-height: 1;
  }
  .brand-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .brand-summary-card {
    min-width: 0;
    min-height: 92px;
    padding: 12px;
  }
  .brand-summary-card span {
    margin-bottom: 6px;
    font-size: 11px;
    line-height: 1.2;
  }
  .brand-summary-card strong {
    display: block;
    font-size: 20px;
    line-height: 1.12;
    overflow-wrap: anywhere;
  }
  .brand-section-block,
  .brand-seo-copy {
    min-width: 0;
    padding: 16px;
    overflow: hidden;
  }
  .brand-section-block .section-head {
    display: block;
  }
  .brand-section-block .section-head h2,
  .brand-seo-copy h2,
  .brand-section-block.faq-list h2 {
    font-size: 22px;
    line-height: 1.15;
    overflow-wrap: anywhere;
  }
  .brand-section-block .phone-grid.archive-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .brand-section-block .phone-card {
    min-width: 0;
  }
  .compare-table-wrap {
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .brand-price-table {
    min-width: 680px;
  }
  .brand-chip-grid,
  .brand-budget-grid,
  .brand-note-grid {
    grid-template-columns: 1fr;
  }
  .brand-budget-card {
    grid-template-columns: 38px minmax(0, 1fr) 22px;
    min-width: 0;
    padding: 13px;
  }
  .brand-budget-copy,
  .brand-budget-copy span {
    min-width: 0;
  }
  .brand-budget-copy strong,
  .brand-chip-grid strong,
  .brand-seo-copy p,
  .brand-section-block.faq-list p {
    overflow-wrap: anywhere;
  }
}
@media (max-width: 560px) {
  .brand-seo-hero {
    padding: 28px 0 24px;
  }
  .brand-seo-hero h1 {
    font-size: 30px;
  }
  .brand-section-block .phone-grid.archive-grid {
    grid-template-columns: 1fr;
  }
  .brand-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .brand-summary-card {
    min-height: 82px;
    padding: 11px;
  }
  .brand-summary-card strong {
    font-size: 18px;
  }
  .brand-section-block .phone-card__media {
    min-height: 180px;
  }
  .brand-section-block .phone-card__actions {
    grid-template-columns: 1fr;
  }
  .brand-price-table {
    min-width: 620px;
  }
}

/* Budget archive mobile layout */
.mobile-filter-toggle {
  display: none;
}
@media (max-width: 900px) {
  .budget-hero,
  .need-hero {
    padding: 34px 0 28px;
    overflow: hidden;
    background:
      linear-gradient(135deg, rgba(10,22,40,.96), rgba(37,99,235,.88)) !important;
  }
  .budget-hero .archive-hero-grid,
  .need-hero .archive-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }
  .budget-hero h1,
  .need-hero h1 {
    font-size: 34px;
    line-height: 1.05;
    overflow-wrap: anywhere;
  }
  .budget-hero p,
  .need-hero p {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.62;
    overflow-wrap: anywhere;
  }
  .budget-hero .mini-panel,
  .need-hero .mini-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 0;
    padding: 14px 16px;
    text-align: left;
  }
  .budget-hero .mini-panel strong,
  .need-hero .mini-panel strong {
    margin: 0;
    font-size: 34px;
  }
  .listing-shell {
    display: grid;
    grid-template-columns: 1fr;
    width: min(100% - 22px, 1200px);
    gap: 14px;
    padding-top: 24px;
    overflow: hidden;
  }
  .mobile-filter-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 100%;
    min-height: 46px;
    border: 1px solid #d8e1ee;
    border-radius: 8px;
    background: #fff;
    color: #101828;
    font-weight: 950;
    box-shadow: 0 8px 22px rgba(15, 23, 42, .06);
  }
  .mobile-filter-toggle span {
    display: grid;
    place-items: center;
  }
  .mobile-filter-toggle svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
  }
  .mobile-filter-toggle[aria-expanded="true"] {
    background: #0f766e;
    color: #fff;
    border-color: #0f766e;
  }
  .listing-sidebar {
    display: none;
    position: static;
    width: 100%;
    min-width: 0;
    padding: 14px;
    overflow: hidden;
  }
  .listing-sidebar.is-mobile-open {
    display: grid;
    gap: 14px;
  }
  .listing-sidebar .finder-form {
    grid-template-columns: 1fr;
  }
  .filter-shortcuts {
    padding: 14px;
  }
  .filter-shortcuts a {
    min-height: 40px;
  }
  .listing-results {
    min-width: 0;
    overflow: hidden;
  }
  .range-insight-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .range-insight-card {
    grid-template-columns: 38px minmax(0, 1fr);
    min-width: 0;
    min-height: 0;
    padding: 13px;
  }
  .range-insight-card p {
    overflow-wrap: anywhere;
  }
  .listing-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px;
    margin-bottom: 12px;
  }
  .listing-toolbar h2 {
    font-size: 22px;
    line-height: 1.15;
    overflow-wrap: anywhere;
  }
  .listing-toolbar > span {
    flex: 0 0 auto;
    padding: 6px 9px;
    border-radius: 999px;
    background: #eef5ff;
    color: #1d4ed8;
    font-size: 12px;
    font-weight: 950;
  }
  .budget-chip-grid {
    display: flex;
    gap: 10px;
    max-width: 100%;
    margin-bottom: 0;
    overflow-x: auto;
    padding: 2px 2px 10px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .budget-chip-carousel {
    padding: 0 40px;
    margin-bottom: 14px;
  }
  .budget-chip-arrow {
    width: 34px;
    height: 34px;
    font-size: 28px;
    line-height: 28px;
  }
  .budget-chip-arrow--next {
    right: auto;
    left: calc(100vw - 48px);
  }
  .budget-chip-grid a {
    flex: 0 0 178px;
    min-height: 72px;
    scroll-snap-align: start;
  }
  .budget-chip-grid strong,
  .budget-chip-grid span {
    overflow-wrap: anywhere;
  }
  .listing-results .phone-grid.archive-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .listing-results .phone-card {
    min-width: 0;
  }
  .listing-results .phone-card__actions {
    grid-template-columns: 1fr;
  }
  .budget-guide-copy,
  .need-guide-copy,
  .listing-results > .brand-section-block.faq-list {
    min-width: 0;
    padding: 16px;
    overflow: hidden;
  }
  .budget-guide-copy h2,
  .need-guide-copy h2,
  .listing-results > .brand-section-block.faq-list h2 {
    font-size: 22px;
    line-height: 1.15;
    overflow-wrap: anywhere;
  }
  .budget-guide-copy p,
  .need-guide-copy p,
  .listing-results > .brand-section-block.faq-list p {
    font-size: 15px;
    line-height: 1.68;
    overflow-wrap: anywhere;
  }
}
@media (max-width: 560px) {
  .budget-hero,
  .need-hero {
    padding: 28px 0 24px;
  }
  .budget-hero h1,
  .need-hero h1 {
    font-size: 30px;
  }
  .budget-hero .mini-panel strong,
  .need-hero .mini-panel strong {
    font-size: 30px;
  }
  .listing-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }
  .listing-results .phone-grid.archive-grid {
    grid-template-columns: 1fr;
  }
  .listing-results .phone-card__media {
    min-height: 180px;
  }
}

/* Brands directory mobile containment */
.brands-page-shell,
.brands-page-shell *,
.brands-directory-hero,
.brands-directory-hero * {
  max-width: 100%;
}
@media (max-width: 900px) {
  body.page-id-8,
  body.page-id-8 main {
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }
  body.page-id-8 .container {
    width: min(100% - 22px, 1200px) !important;
    max-width: min(100% - 22px, 1200px) !important;
    margin-inline: auto !important;
  }
  body.page-id-8 .brands-directory-hero,
  body.page-id-8 .brands-page-shell,
  body.page-id-8 .brands-answer-grid,
  body.page-id-8 .brands-eeat-strip,
  body.page-id-8 .brands-section-head,
  body.page-id-8 .brand-directory--premium {
    max-width: 100% !important;
    overflow: hidden;
  }
  .brands-directory-hero {
    padding: 34px 0 28px;
    overflow: hidden;
  }
  .brands-directory-hero .container,
  .brands-page-shell {
    width: min(100% - 22px, 1200px) !important;
    max-width: min(100% - 22px, 1200px) !important;
  }
  .brands-directory-hero__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }
  .brands-directory-hero h1 {
    max-width: calc(100vw - 44px);
    font-size: 30px;
    line-height: 1.05;
    overflow-wrap: anywhere !important;
    word-break: break-word;
    white-space: normal !important;
  }
  .brands-directory-hero p {
    max-width: calc(100vw - 44px);
    font-size: 15px;
    line-height: 1.65;
    overflow-wrap: anywhere;
    white-space: normal !important;
  }
  .brands-trust-panel {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 4px 14px;
    align-items: center;
    padding: 16px;
  }
  .brands-trust-panel strong {
    grid-row: span 2;
    font-size: 40px;
  }
  .brands-trust-panel p {
    grid-column: 1 / -1;
    margin-top: 4px;
  }
  .brands-page-shell {
    width: min(100% - 22px, 1200px);
    gap: 18px;
    padding-top: 28px;
    padding-bottom: 40px;
    overflow: hidden;
  }
  .brands-answer-grid {
    grid-template-columns: 1fr;
  }
  .brands-quick-answer,
  .brands-source-block,
  .brands-table-section,
  .brands-faqs {
    min-width: 0;
    padding: 16px;
    overflow: hidden;
  }
  .brands-quick-answer h2,
  .brands-source-block h2,
  .brands-table-section h2,
  .brands-faqs h2 {
    max-width: calc(100vw - 62px);
    font-size: 23px;
    line-height: 1.15;
    overflow-wrap: anywhere;
  }
  .brands-quick-answer p,
  .brands-source-block p,
  .brands-faqs p {
    max-width: calc(100vw - 62px);
    font-size: 15px;
    line-height: 1.62;
    overflow-wrap: anywhere;
    white-space: normal !important;
  }
  .brands-quick-answer p span {
    display: block;
  }
  .brands-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .brands-stats-grid div {
    padding: 12px;
  }
  .brands-stats-grid span {
    font-size: 10px;
    line-height: 1.25;
  }
  .brands-stats-grid strong {
    font-size: 24px;
  }
  .brands-stats-grid div:last-child strong {
    font-size: 13px;
  }
  .brands-table-wrap {
    max-width: 100%;
    overflow-x: auto;
  }
  .brands-eeat-strip {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .brands-eeat-strip div {
    min-width: 0;
    padding: 14px;
  }
  .brands-section-head {
    grid-template-columns: 1fr;
    gap: 10px;
    align-items: start;
  }
  .brands-section-head h2 {
    font-size: 28px;
  }
  .brands-section-head p,
  .brands-eeat-strip span {
    max-width: calc(100vw - 62px);
    overflow-wrap: anywhere;
    white-space: normal !important;
  }
  .brand-directory--premium {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .brand-tile--premium {
    min-width: 0;
    min-height: 0;
    padding: 14px;
    gap: 10px;
  }
  .brand-logo--tile {
    min-height: 50px;
    padding: 8px 10px;
  }
  .brand-logo--tile img {
    max-width: 120px;
    max-height: 36px;
  }
  .brand-logo--tile b {
    font-size: 16px;
    overflow-wrap: anywhere;
  }
  .brand-tile__content strong {
    font-size: 17px;
    overflow-wrap: anywhere;
  }
  .brand-tile__content em {
    display: -webkit-box;
    overflow: hidden;
    font-size: 13px;
    line-height: 1.45;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }
  .brand-tile__footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
  .brands-guide-copy {
    min-width: 0;
    padding: 18px;
    overflow: hidden;
  }
  .brands-guide-copy h2 {
    font-size: 24px;
    overflow-wrap: anywhere;
  }
  .brands-guide-copy p {
    font-size: 15px;
    line-height: 1.68;
    overflow-wrap: anywhere;
  }
}
@media (max-width: 560px) {
  .brands-directory-hero {
    padding: 28px 0 24px;
  }
  body.page-id-8 .brands-directory-hero .container,
  body.page-id-8 .brands-page-shell {
    width: calc(100% - 22px) !important;
    max-width: calc(100% - 22px) !important;
  }
  .brands-directory-hero h1 {
    display: block;
    width: 320px !important;
    max-width: calc(100vw - 44px) !important;
    font-size: 30px;
  }
  .brands-directory-hero p {
    width: 320px !important;
    max-width: calc(100vw - 44px) !important;
  }
  .brands-directory-hero p,
  .brands-trust-panel,
  .brands-quick-answer,
  .brands-eeat-strip div,
  .brands-section-head,
  .brand-tile--premium,
  .brands-source-block,
  .brands-table-section,
  .brands-guide-copy,
  .brands-faqs {
    width: 100%;
    max-width: 100%;
  }
  .brands-trust-panel,
  .brands-quick-answer,
  .brands-eeat-strip div,
  .brand-tile--premium,
  .brands-source-block,
  .brands-guide-copy,
  .brands-faqs {
    padding-right: 24px;
  }
  .brands-directory-hero p,
  .brands-trust-panel p,
  .brands-trust-panel span,
  .brand-tile__content em {
    max-width: calc(100vw - 62px);
    white-space: normal !important;
    overflow-wrap: anywhere;
  }
  .brands-quick-answer h2,
  .brands-source-block h2,
  .brands-table-section h2,
  .brands-faqs h2,
  .brands-section-head h2 {
    max-width: calc(100vw - 62px);
  }
  .brands-quick-answer p,
  .brands-source-block p,
  .brands-faqs p,
  .brands-section-head p,
  .brands-eeat-strip span {
    max-width: calc(100vw - 62px);
  }
  .brand-directory--premium {
    grid-template-columns: 1fr;
  }
  .brand-tile--premium {
    grid-template-rows: auto auto auto;
  }
  .brand-tile__content em {
    -webkit-line-clamp: 4;
  }
}

/* Comparison detail mobile polish */
.compare-mobile-lane {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 58px minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.compare-compact-phone {
  display: grid;
  grid-template-rows: auto 190px auto auto auto;
  gap: 10px;
  min-width: 0;
  text-align: center;
}
.compare-compact-phone__brand {
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
  padding: 5px 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #e7f8f5;
  color: var(--brand);
  font-size: 11px;
  font-weight: 950;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}
.compare-compact-phone__media {
  display: grid;
  place-items: center;
  min-height: 190px;
  overflow: hidden;
  border-radius: 8px;
  background: #f3f8ff;
}
.compare-compact-phone__media img {
  width: auto;
  max-width: 100%;
  max-height: 178px;
  object-fit: contain;
}
.compare-compact-phone strong {
  color: var(--ink);
  font-size: 22px;
  line-height: 1.18;
}
.compare-compact-phone em {
  color: var(--brand);
  font-size: 20px;
  font-style: normal;
  font-weight: 950;
}
.compare-compact-phone small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.4;
}
.compare-mobile-vs {
  align-self: center;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-weight: 950;
  box-shadow: 0 10px 24px rgba(15,118,110,.24);
}
.comparison-mobile-table-note {
  display: none;
}
@media (max-width: 900px) {
  .comparison-hero {
    padding: 34px 0 28px;
    overflow: hidden;
    background:
      linear-gradient(135deg, rgba(16,24,40,.96), rgba(15,118,110,.9)) !important;
  }
  .comparison-hero .archive-hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }
  .comparison-hero h1 {
    font-size: 34px;
    line-height: 1.05;
    overflow-wrap: anywhere;
  }
  .comparison-hero p {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.62;
  }
  .comparison-hero .mini-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 0;
    padding: 14px 16px;
    text-align: left;
  }
  .comparison-hero .mini-panel strong {
    margin: 0;
    font-size: 34px;
  }
  .comparison-page {
    width: min(100% - 22px, 1200px);
    gap: 18px;
    padding-top: 24px;
    overflow: hidden;
  }
  .compare-mobile-lane {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 42px minmax(0, 1fr);
    gap: 8px;
    align-items: stretch;
    margin: 0;
  }
  .compare-compact-phone {
    position: relative;
    display: grid;
    grid-template-rows: auto 118px auto auto auto;
    gap: 7px;
    min-width: 0;
    padding: 10px;
    border: 1px solid #d8e1ee;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .06);
    text-align: center;
  }
  .compare-compact-phone__brand {
    display: block;
    width: fit-content;
    max-width: 100%;
    margin: 0 auto;
    padding: 4px 8px;
    overflow: hidden;
    border-radius: 999px;
    background: #e7f8f5;
    color: #0f766e;
    font-size: 10px;
    font-weight: 950;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .compare-compact-phone__media {
    display: grid;
    place-items: center;
    min-width: 0;
    min-height: 118px;
    overflow: hidden;
    border-radius: 8px;
    background: linear-gradient(180deg, #f8fbff, #eef5ff);
  }
  .compare-compact-phone__media img {
    width: auto;
    max-width: 100%;
    max-height: 108px;
    object-fit: contain;
  }
  .compare-compact-phone .phone-card__mockup {
    width: 52px;
    border-width: 5px;
    border-radius: 14px;
  }
  .compare-compact-phone strong {
    display: -webkit-box;
    min-height: 36px;
    overflow: hidden;
    color: #101828;
    font-size: 14px;
    font-weight: 950;
    line-height: 1.25;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  .compare-compact-phone em {
    color: #0f766e;
    font-size: 13px;
    font-style: normal;
    font-weight: 950;
    line-height: 1.2;
  }
  .compare-compact-phone small {
    display: -webkit-box;
    min-height: 30px;
    overflow: hidden;
    color: #667085;
    font-size: 11px;
    font-weight: 750;
    line-height: 1.35;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  .compare-mobile-vs {
    align-self: center;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f59e0b, #2563eb);
    color: #fff;
    font-size: 12px;
    font-weight: 950;
    box-shadow: 0 10px 24px rgba(37, 99, 235, .18);
  }
  .compare-phone-head {
    display: none;
  }
  .comparison-winners {
    max-width: 100%;
    overflow: hidden;
  }
  .compare-winner-badges {
    display: flex;
    gap: 10px;
    max-width: 100%;
    overflow-x: auto;
    padding: 2px 2px 10px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .compare-winner-badge {
    flex: 0 0 250px;
    min-height: 152px;
    padding: 14px;
    scroll-snap-align: start;
  }
  .compare-winner-badge strong {
    font-size: 18px;
    overflow-wrap: anywhere;
  }
  .comparison-page .seo-copy {
    min-width: 0;
    padding: 18px;
    overflow: hidden;
  }
  .comparison-page .seo-copy h2 {
    font-size: 23px;
    overflow-wrap: anywhere;
  }
  .comparison-page .seo-copy > p,
  .comparison-page .seo-copy p {
    font-size: 15px;
    line-height: 1.68;
    overflow-wrap: anywhere;
  }
  .comparison-mobile-table-note {
    display: none;
  }
  .comparison-page .compare-table-wrap,
  .compare-table-wrap--full {
    max-width: 100%;
    overflow: visible;
  }
  .compare-table--full {
    width: 100%;
    min-width: 0;
    table-layout: fixed;
    border-collapse: collapse;
  }
  .compare-table--full th,
  .compare-table--full td {
    padding: 10px 6px;
    font-size: 13px;
    line-height: 1.45;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: normal;
    vertical-align: top;
  }
  .compare-table--full thead th {
    font-size: 11px;
    line-height: 1.25;
  }
  .compare-table--full thead th:first-child,
  .compare-table--full tbody tr:not(.compare-group-row) th {
    width: 23%;
  }
  .compare-table--full td {
    width: 38.5%;
  }
  .compare-table--full tbody tr:not(.compare-group-row) th {
    color: #4b5563;
    font-size: 12px;
    font-weight: 900;
  }
  .compare-table--full .compare-group-row th {
    padding: 16px 4px 8px;
    background: #fff;
    color: #b00000;
    font-size: 20px;
    line-height: 1.15;
    text-align: left;
  }
  .compare-table--full tr {
    border-bottom: 1px solid #e5e7eb;
  }
  .compare-recommendation,
  .compare-verdict-grid,
  .winner-grid,
  .buyer-fit {
    grid-template-columns: 1fr;
  }
  .compare-recommendation div,
  .compare-verdict-grid div {
    min-width: 0;
    padding: 16px;
  }
  .related-comparisons .section-head {
    display: block;
  }
  .related-comparisons .comparison-grid {
    display: flex;
    gap: 12px;
    max-width: 100%;
    overflow-x: auto;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
  }
  .related-comparisons .comparison-card {
    flex: 0 0 280px;
  }
  .comparison-faqs .faq-item,
  .comparison-page .faq-item {
    min-width: 0;
    overflow: hidden;
  }
}
@media (max-width: 560px) {
  .comparison-hero {
    padding: 28px 0 24px;
  }
  .comparison-hero h1 {
    font-size: 30px;
  }
  .comparison-hero .mini-panel strong {
    font-size: 30px;
  }
  .compare-winner-badge {
    flex-basis: 228px;
  }
  .compare-mobile-lane {
    grid-template-columns: minmax(0, 1fr) 34px minmax(0, 1fr);
    gap: 6px;
  }
  .compare-mobile-vs {
    width: 34px;
    height: 34px;
    font-size: 11px;
  }
  .compare-compact-phone {
    grid-template-rows: auto 104px auto auto auto;
    padding: 8px;
  }
  .compare-compact-phone__media {
    min-height: 104px;
  }
  .compare-compact-phone__media img {
    max-height: 94px;
  }
  .compare-compact-phone strong {
    font-size: 13px;
  }
  .compare-compact-phone em {
    font-size: 12px;
  }
  .compare-table--full {
    min-width: 0;
  }
}

/* Final mobile comparison reset */
@media (max-width: 900px) {
  .single-comparison .comparison-page {
    width: min(100% - 20px, 1200px);
    gap: 14px;
    padding-top: 18px;
  }
  .single-comparison .compare-phone-head {
    display: none !important;
  }
  .single-comparison .compare-mobile-lane {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 36px minmax(0, 1fr);
    gap: 8px;
    align-items: stretch;
    padding: 12px;
    border: 1px solid #d8e1ee;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(16, 24, 40, .06);
  }
  .single-comparison .compare-compact-phone {
    display: grid;
    grid-template-rows: 24px 112px auto auto;
    gap: 7px;
    min-width: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    text-align: center;
  }
  .single-comparison .compare-compact-phone__brand {
    max-width: 100%;
    margin: 0 auto;
    padding: 4px 8px;
    overflow: hidden;
    border-radius: 999px;
    background: #e7f8f5;
    color: #0f766e;
    font-size: 10px;
    font-weight: 950;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .single-comparison .compare-compact-phone__media {
    display: grid;
    place-items: center;
    min-height: 112px;
    overflow: hidden;
    border-radius: 9px;
    background: #f3f8ff;
  }
  .single-comparison .compare-compact-phone__media img {
    width: auto;
    max-width: 100%;
    max-height: 104px;
    object-fit: contain;
  }
  .single-comparison .compare-compact-phone .phone-card__mockup {
    width: 54px;
    border-width: 5px;
    border-radius: 14px;
  }
  .single-comparison .compare-compact-phone strong {
    display: -webkit-box;
    min-height: 34px;
    overflow: hidden;
    color: #101828;
    font-size: 14px;
    font-weight: 950;
    line-height: 1.22;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  .single-comparison .compare-compact-phone em {
    color: #0f766e;
    font-size: 14px;
    font-style: normal;
    font-weight: 950;
    line-height: 1.1;
  }
  .single-comparison .compare-compact-phone small {
    display: none;
  }
  .single-comparison .compare-mobile-vs {
    align-self: center;
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #0f766e;
    color: #fff;
    font-size: 11px;
    font-weight: 950;
    box-shadow: 0 8px 18px rgba(15, 118, 110, .25);
  }
  .single-comparison .compare-winner-badges {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    overflow: visible;
    padding: 0;
  }
  .single-comparison .compare-winner-badge {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
    padding: 14px;
    border-color: #d8e1ee;
    background: #fff;
    box-shadow: 0 8px 20px rgba(16, 24, 40, .05);
  }
  .single-comparison .compare-winner-badge span {
    color: #0f766e;
    font-size: 11px;
  }
  .single-comparison .compare-winner-badge strong {
    color: #101828;
    font-size: 18px;
  }
  .single-comparison .compare-winner-badge p {
    font-size: 13px;
    line-height: 1.45;
  }
  .single-comparison .compare-table-wrap--full {
    overflow: visible !important;
    border: 0;
    box-shadow: none;
  }
  .single-comparison .compare-table--full {
    width: 100%;
    min-width: 0 !important;
    table-layout: fixed;
    border-collapse: collapse;
  }
  .single-comparison .compare-table--full thead {
    display: none;
  }
  .single-comparison .compare-table--full th,
  .single-comparison .compare-table--full td {
    padding: 10px 6px;
    border-bottom: 1px solid #e5e7eb;
    white-space: normal;
    overflow-wrap: anywhere;
    vertical-align: top;
  }
  .single-comparison .compare-table--full tbody tr:not(.compare-group-row) th {
    width: 24%;
    color: #4b5563;
    font-size: 12px;
    font-weight: 900;
    line-height: 1.35;
  }
  .single-comparison .compare-table--full td {
    width: 38%;
    color: #101828;
    font-size: 13px;
    line-height: 1.5;
  }
  .single-comparison .compare-table--full .compare-group-row th {
    padding: 20px 0 8px;
    border-bottom: 0;
    background: #fff;
    color: #0f766e;
    font-size: 20px;
    font-weight: 950;
    text-align: left;
    text-transform: uppercase;
  }
}
@media (max-width: 420px) {
  .single-comparison .compare-mobile-lane {
    grid-template-columns: minmax(0, 1fr) 30px minmax(0, 1fr);
    gap: 6px;
    padding: 10px;
  }
  .single-comparison .compare-mobile-vs {
    width: 30px;
    height: 30px;
    font-size: 10px;
  }
  .single-comparison .compare-compact-phone {
    grid-template-rows: 22px 98px auto auto;
  }
  .single-comparison .compare-compact-phone__media {
    min-height: 98px;
  }
  .single-comparison .compare-compact-phone__media img {
    max-height: 90px;
  }
  .single-comparison .compare-compact-phone strong {
    font-size: 13px;
  }
  .single-comparison .compare-compact-phone em {
    font-size: 12px;
  }
  .single-comparison .compare-table--full tbody tr:not(.compare-group-row) th {
    width: 25%;
    font-size: 11px;
  }
  .single-comparison .compare-table--full td {
    width: 37.5%;
    font-size: 12px;
  }
}

/* Comparison detail clarity pass */
.compare-table-sticky-head {
  display: none;
}
.compare-compact-phone__chips {
  display: grid;
  gap: 6px;
  min-width: 0;
}
.compare-compact-phone__chips small {
  display: block;
  min-width: 0;
  overflow: hidden;
  padding: 6px 8px;
  border: 1px solid #dbeafe;
  border-radius: 8px;
  background: #f8fbff;
  color: #475467;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (max-width: 900px) {
  .single-comparison .comparison-hero {
    background:
      linear-gradient(135deg, #101828 0%, #0f766e 56%, #2563eb 100%) !important;
  }
  .single-comparison .comparison-hero h1 {
    max-width: 680px;
    margin-bottom: 10px;
    color: #fff;
    font-size: clamp(30px, 8vw, 42px);
    line-height: 1.05;
  }
  .single-comparison .comparison-hero p {
    max-width: 620px;
    color: rgba(255,255,255,.82);
  }
  .single-comparison .compare-mobile-lane {
    position: relative;
    grid-template-columns: minmax(0, 1fr) 38px minmax(0, 1fr);
    gap: 9px;
    padding: 12px;
    border: 1px solid #c7d2fe;
    border-radius: 8px;
    background: linear-gradient(180deg, #ffffff, #f8fbff);
    box-shadow: 0 14px 34px rgba(16,24,40,.08);
  }
  .single-comparison .compare-compact-phone {
    grid-template-rows: 24px 108px minmax(34px, auto) auto auto;
    gap: 8px;
  }
  .single-comparison .compare-compact-phone__media {
    min-height: 108px;
    border: 1px solid #e2e8f0;
    background: radial-gradient(circle at 50% 12%, #e0f2fe 0, #f8fbff 52%, #eef5ff 100%);
  }
  .single-comparison .compare-compact-phone__media img {
    max-height: 100px;
  }
  .single-comparison .compare-compact-phone strong {
    min-height: 36px;
    color: #101828;
    font-size: 14px;
    letter-spacing: 0;
  }
  .single-comparison .compare-compact-phone em {
    display: block;
    color: #0f766e;
    font-size: 13px;
  }
  .single-comparison .compare-compact-phone__chips {
    gap: 5px;
  }
  .single-comparison .compare-compact-phone__chips small {
    display: block;
    padding: 5px 6px;
    font-size: 10.5px;
  }
  .single-comparison .compare-mobile-vs {
    width: 38px;
    height: 38px;
    border: 3px solid #fff;
    background: linear-gradient(135deg, #f59e0b, #0f766e);
    box-shadow: 0 10px 22px rgba(15,118,110,.28);
  }
  .single-comparison .compare-winner-badges {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .single-comparison .compare-winner-badge {
    gap: 6px;
    padding: 13px;
    border-radius: 8px;
  }
  .single-comparison .compare-winner-badge strong {
    font-size: 16px;
    line-height: 1.15;
  }
  .single-comparison .compare-winner-badge p {
    font-size: 12px;
  }
  .single-comparison .compare-winner-badge small {
    font-size: 10.5px;
  }
  .compare-table-sticky-head {
    position: sticky;
    top: 76px;
    z-index: 12;
    display: grid;
    grid-template-columns: 24% 38% 38%;
    align-items: stretch;
    overflow: hidden;
    border: 1px solid #cbd5e1;
    border-radius: 8px 8px 0 0;
    background: #102033;
    color: #fff;
    box-shadow: 0 10px 24px rgba(16,24,40,.12);
  }
  .compare-table-sticky-head span,
  .compare-table-sticky-head strong {
    display: grid;
    align-content: center;
    min-width: 0;
    padding: 9px 7px;
    border-right: 1px solid rgba(255,255,255,.12);
    font-size: 11px;
    font-weight: 950;
    line-height: 1.2;
    overflow-wrap: anywhere;
  }
  .compare-table-sticky-head strong small {
    display: block;
    margin-top: 3px;
    color: #99f6e4;
    font-size: 10px;
    font-weight: 900;
  }
  .single-comparison .compare-table-wrap--full {
    border: 1px solid #cbd5e1;
    border-top: 0;
    border-radius: 0 0 8px 8px;
    background: #fff;
  }
  .single-comparison .compare-table--full tbody tr:not(.compare-group-row) th {
    background: #f8fafc;
  }
  .single-comparison .compare-table--full tbody tr:not(.compare-group-row) td:nth-child(2) {
    background: #ffffff;
  }
  .single-comparison .compare-table--full tbody tr:not(.compare-group-row) td:nth-child(3) {
    background: #fbfdff;
  }
  .single-comparison .compare-table--full .compare-group-row th {
    padding: 18px 8px 9px;
    color: #0f766e;
    font-size: 16px;
    letter-spacing: 0;
    text-transform: none;
  }
  .single-comparison .compare-recommendation,
  .single-comparison .compare-verdict-grid {
    gap: 10px;
  }
  .single-comparison .compare-recommendation div,
  .single-comparison .compare-verdict-grid div,
  .single-comparison .comparison-page .faq-item {
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(16,24,40,.045);
  }
}
@media (max-width: 560px) {
  .single-comparison .comparison-page {
    width: min(100% - 16px, 1200px);
    gap: 16px;
  }
  .single-comparison .compare-mobile-lane {
    grid-template-columns: minmax(0, 1fr) 32px minmax(0, 1fr);
    gap: 6px;
    padding: 9px;
  }
  .single-comparison .compare-compact-phone {
    grid-template-rows: 22px 96px minmax(32px, auto) auto auto;
    gap: 6px;
  }
  .single-comparison .compare-compact-phone__brand {
    padding: 4px 6px;
    font-size: 9.5px;
  }
  .single-comparison .compare-compact-phone__media {
    min-height: 96px;
  }
  .single-comparison .compare-compact-phone__media img {
    max-height: 88px;
  }
  .single-comparison .compare-mobile-vs {
    width: 32px;
    height: 32px;
  }
  .single-comparison .compare-winner-badges {
    grid-template-columns: 1fr;
  }
  .compare-table-sticky-head {
    top: 68px;
  }
  .compare-table-sticky-head span,
  .compare-table-sticky-head strong {
    padding: 8px 5px;
    font-size: 10px;
  }
  .compare-table-sticky-head strong small {
    font-size: 9px;
  }
  .single-comparison .compare-table--full th,
  .single-comparison .compare-table--full td {
    padding: 9px 5px;
  }
}

/* Mobile compare cards: simple, visual, no sticky clutter */
@media (max-width: 900px) {
  .single-comparison .comparison-mobile-table-note {
    display: block;
    margin: 2px 0 -8px;
    color: #667085;
    font-size: 12px;
    font-weight: 800;
    text-align: center;
  }
  .single-comparison .compare-table-sticky-head {
    display: none !important;
    position: static !important;
  }
  .single-comparison .compare-mobile-lane {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 46px minmax(0, 1fr);
    gap: 0;
    align-items: start;
    margin: 4px 0 8px;
    padding: 18px 0 8px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }
  .single-comparison .compare-compact-phone {
    display: grid;
    grid-template-rows: 154px auto auto;
    gap: 8px;
    min-width: 0;
    padding: 0 8px;
    border: 0;
    background: transparent;
    box-shadow: none;
    text-align: center;
  }
  .single-comparison .compare-compact-phone__brand,
  .single-comparison .compare-compact-phone__chips {
    display: none !important;
  }
  .single-comparison .compare-compact-phone__media {
    display: grid;
    place-items: end center;
    min-height: 154px;
    border: 0;
    border-radius: 0;
    background: transparent;
    overflow: visible;
  }
  .single-comparison .compare-compact-phone__media img {
    width: auto !important;
    max-width: 100% !important;
    max-height: 148px !important;
    object-fit: contain !important;
  }
  .single-comparison .compare-compact-phone .phone-card__mockup {
    width: 74px;
    border-width: 6px;
    border-radius: 18px;
  }
  .single-comparison .compare-compact-phone strong {
    display: block;
    min-height: 42px;
    margin: 0;
    overflow: hidden;
    color: #101828;
    font-size: 18px;
    font-weight: 650;
    line-height: 1.18;
    text-align: center;
    -webkit-line-clamp: unset;
  }
  .single-comparison .compare-compact-phone em {
    display: block;
    margin: 0;
    color: #0aa344;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.2;
  }
  .single-comparison .compare-mobile-vs {
    position: relative;
    align-self: stretch;
    display: grid;
    place-items: center;
    width: 46px;
    height: auto;
    min-height: 238px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: #fff;
    font-size: 13px;
    font-weight: 900;
  }
  .single-comparison .compare-mobile-vs::before {
    content: "";
    position: absolute;
    top: 6px;
    bottom: 6px;
    left: 50%;
    border-left: 3px dashed #344054;
    transform: translateX(-50%);
  }
  .single-comparison .compare-mobile-vs::after {
    content: "VS";
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 43px;
    height: 43px;
    border-radius: 50%;
    background: #293241;
    color: #fff;
    box-shadow: 0 8px 18px rgba(16,24,40,.18);
  }
  .single-comparison .compare-mobile-vs {
    font-size: 0;
  }
  .single-comparison .compare-table-wrap--full {
    overflow-x: auto !important;
    border: 1px solid #dbe5f2;
    border-radius: 8px;
    box-shadow: none;
    -webkit-overflow-scrolling: touch;
  }
  .single-comparison .compare-table--full {
    min-width: 680px !important;
    table-layout: auto;
  }
  .single-comparison .compare-table--full thead {
    display: table-header-group;
  }
  .single-comparison .compare-table--full thead th {
    background: #102033;
    color: #fff;
    font-size: 12px;
  }
  .single-comparison .compare-table--full tbody tr:not(.compare-group-row) th {
    width: 26%;
    background: #f8fafc;
    font-size: 12px;
  }
  .single-comparison .compare-table--full td {
    width: 37%;
    font-size: 13px;
  }
}
@media (max-width: 420px) {
  .single-comparison .compare-mobile-lane {
    grid-template-columns: minmax(0, 1fr) 38px minmax(0, 1fr);
    padding-top: 14px;
  }
  .single-comparison .compare-compact-phone {
    grid-template-rows: 132px auto auto;
    padding: 0 5px;
  }
  .single-comparison .compare-compact-phone__media {
    min-height: 132px;
  }
  .single-comparison .compare-compact-phone__media img {
    max-height: 126px !important;
  }
  .single-comparison .compare-compact-phone strong {
    min-height: 38px;
    font-size: 16px;
  }
  .single-comparison .compare-compact-phone em {
    font-size: 16px;
  }
  .single-comparison .compare-mobile-vs {
    width: 38px;
    min-height: 214px;
  }
  .single-comparison .compare-mobile-vs::after {
    width: 38px;
    height: 38px;
  }
}

/* Hard reset for the actual mobile phone pair */
@media (max-width: 900px) {
  body.single-comparison .mpp-mobile-compare-pair {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 48px minmax(0, 1fr) !important;
    gap: 0 !important;
    align-items: start !important;
    width: 100% !important;
    margin: 8px 0 12px !important;
    padding: 10px 0 4px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: #fff !important;
    box-shadow: none !important;
    overflow: visible !important;
  }
  body.single-comparison .mpp-mobile-compare-card {
    display: grid !important;
    grid-template-rows: 150px auto auto !important;
    gap: 8px !important;
    min-width: 0 !important;
    padding: 0 8px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    text-align: center !important;
    text-decoration: none !important;
  }
  body.single-comparison .mpp-mobile-compare-card__brand,
  body.single-comparison .mpp-mobile-compare-card__chips {
    display: none !important;
  }
  body.single-comparison .mpp-mobile-compare-card__media {
    display: grid !important;
    place-items: end center !important;
    min-height: 150px !important;
    height: 150px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    overflow: visible !important;
  }
  body.single-comparison .mpp-mobile-compare-card__media img {
    display: block !important;
    width: auto !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: 144px !important;
    object-fit: contain !important;
  }
  body.single-comparison .mpp-mobile-compare-card strong {
    display: block !important;
    min-height: 42px !important;
    margin: 0 !important;
    overflow: hidden !important;
    color: #101828 !important;
    font-size: 18px !important;
    font-weight: 650 !important;
    line-height: 1.18 !important;
    text-align: center !important;
    text-overflow: clip !important;
    -webkit-line-clamp: unset !important;
  }
  body.single-comparison .mpp-mobile-compare-card em {
    display: block !important;
    margin: 0 !important;
    color: #0aa344 !important;
    font-size: 18px !important;
    font-style: normal !important;
    font-weight: 500 !important;
    line-height: 1.2 !important;
  }
  body.single-comparison .mpp-mobile-compare-vs {
    position: relative !important;
    align-self: stretch !important;
    display: grid !important;
    place-items: center !important;
    width: 48px !important;
    height: auto !important;
    min-height: 238px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    color: transparent !important;
    font-size: 0 !important;
  }
  body.single-comparison .mpp-mobile-compare-vs::before {
    content: "" !important;
    position: absolute !important;
    top: 4px !important;
    bottom: 4px !important;
    left: 50% !important;
    border-left: 3px dashed #344054 !important;
    transform: translateX(-50%) !important;
  }
  body.single-comparison .mpp-mobile-compare-vs::after {
    content: "VS" !important;
    position: relative !important;
    z-index: 1 !important;
    display: grid !important;
    place-items: center !important;
    width: 43px !important;
    height: 43px !important;
    border-radius: 50% !important;
    background: #293241 !important;
    color: #fff !important;
    font-size: 13px !important;
    font-weight: 900 !important;
  }
  body.single-comparison .comparison-page .compare-table-wrap--full {
    overflow-x: auto !important;
    overflow-y: hidden !important;
    border: 1px solid #dbe5f2 !important;
    border-radius: 8px !important;
    -webkit-overflow-scrolling: touch !important;
  }
  body.single-comparison .compare-table--full {
    min-width: 680px !important;
    table-layout: auto !important;
  }
  body.single-comparison .compare-table--full thead {
    display: table-header-group !important;
  }
}
@media (max-width: 420px) {
  body.single-comparison .mpp-mobile-compare-pair {
    grid-template-columns: minmax(0, 1fr) 40px minmax(0, 1fr) !important;
  }
  body.single-comparison .mpp-mobile-compare-card {
    grid-template-rows: 132px auto auto !important;
    padding: 0 5px !important;
  }
  body.single-comparison .mpp-mobile-compare-card__media {
    min-height: 132px !important;
    height: 132px !important;
  }
  body.single-comparison .mpp-mobile-compare-card__media img {
    max-height: 126px !important;
  }
  body.single-comparison .mpp-mobile-compare-card strong {
    min-height: 38px !important;
    font-size: 16px !important;
  }
  body.single-comparison .mpp-mobile-compare-card em {
    font-size: 16px !important;
  }
  body.single-comparison .mpp-mobile-compare-vs {
    width: 40px !important;
    min-height: 214px !important;
  }
  body.single-comparison .mpp-mobile-compare-vs::after {
    width: 38px !important;
    height: 38px !important;
  }
}

.navigation.pagination {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 34px 0 8px;
}

.navigation.pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  max-width: 100%;
  padding: 10px;
  border: 1px solid #dbe5f2;
  border-radius: 8px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 12px 32px rgba(15, 23, 42, .08);
}

.navigation.pagination .page-numbers {
  display: inline-grid;
  place-items: center;
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  border: 1px solid #d7e2f0;
  border-radius: 8px;
  background: #fff;
  color: #102033;
  font-size: 15px;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}

.navigation.pagination a.page-numbers:hover,
.navigation.pagination a.page-numbers:focus {
  border-color: #2563eb;
  background: #eef5ff;
  color: #1d4ed8;
  transform: translateY(-1px);
}

.navigation.pagination .page-numbers.current {
  border-color: transparent;
  background: linear-gradient(135deg, #0f766e, #2563eb);
  color: #fff;
  box-shadow: 0 10px 22px rgba(37, 99, 235, .22);
}

.navigation.pagination .page-numbers.dots {
  min-width: 28px;
  padding: 0 2px;
  border-color: transparent;
  background: transparent;
  color: #667085;
  box-shadow: none;
}

.navigation.pagination .page-numbers.prev,
.navigation.pagination .page-numbers.next {
  min-width: 74px;
  padding-inline: 14px;
}

@media (max-width: 560px) {
  .navigation.pagination {
    margin: 24px 0 6px;
  }

  .navigation.pagination .nav-links {
    justify-content: flex-start;
    gap: 7px;
    width: 100%;
    overflow-x: auto;
    padding: 8px;
    -webkit-overflow-scrolling: touch;
  }

  .navigation.pagination .page-numbers {
    flex: 0 0 auto;
    min-width: 38px;
    height: 38px;
    padding: 0 10px;
    font-size: 14px;
  }

  .navigation.pagination .page-numbers.prev,
  .navigation.pagination .page-numbers.next {
    min-width: 38px;
    width: 38px;
    padding: 0;
    font-size: 0;
  }

  .navigation.pagination .page-numbers.prev::before,
  .navigation.pagination .page-numbers.next::before {
    font-size: 20px;
    line-height: 1;
  }

  .navigation.pagination .page-numbers.prev::before {
    content: "\2039";
  }

  .navigation.pagination .page-numbers.next::before {
    content: "\203A";
  }
}
