/* --- Reset & base --- */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  min-width: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: clamp(15px, 4vw, 16px);
  line-height: 1.5;
  color: #e0e0e0;
  background: #191b28;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
}
a { color: #e5650e; text-decoration: none; }
a:hover { text-decoration: underline; }
ul, ol { padding-left: 1.25rem; }

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.btn-small { padding: 0.35rem 0.75rem; font-size: 0.85rem; }
.btn-primary {
  background: #e5650e;
  color: #fff;
}
.btn-primary:hover {
  background: #f0731a;
  text-decoration: none;
}
.btn-block { width: 100%; display: block; }

/* Touch-friendly minimum (44px) on small screens */
@media (max-width: 768px) {
  .btn, .btn-small { min-height: 44px; min-width: 44px; display: inline-flex; align-items: center; justify-content: center; }
  .btn-block { min-width: 0; }
}

/* --- Promo banner --- */
.promo-banner {
  width: 100%;
  max-width: 100%;
  background: #252a36;
  border: 1px solid #2a2d3a;
  border-left: 4px solid #e5650e;
  border-radius: 10px;
  padding: clamp(0.75rem, 3vw, 1rem);
  margin: 1.5rem 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.promo-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-evenly;
  gap: clamp(1rem, 3vw, 1.5rem) clamp(1rem, 4vw, 2rem);
  padding: 0 0.5rem;
}
.promo-banner__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1 1 auto;
  min-width: 0;
  justify-content: flex-start;
}
.promo-banner__offer {
  flex: 1 1 auto;
  min-width: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  gap: 0.15rem;
}
.promo-banner__right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1 1 auto;
  min-width: 0;
  justify-content: flex-end;
}
.promo-banner__logo-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 40px;
  background: #191b28;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}
.promo-banner__chip {
  color: #e5650e;
  font-weight: 800;
}
.promo-banner__name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #e0e0e0;
}
.promo-banner__offer-line {
  font-size: 0.85rem;
  font-weight: 600;
  color: #b8b8b8;
}
.promo-banner__offer-line--highlight {
  color: #e5650e;
  font-size: 0.95rem;
}
.promo-banner__code {
  font-size: 1rem;
  font-weight: 700;
  color: #e5650e;
  letter-spacing: 0.05em;
  margin-top: 0.2rem;
}
.promo-banner__features {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.8rem;
  color: #b8b8b8;
  line-height: 1.5;
}
.promo-banner__features li {
  padding-left: 0;
}
.promo-banner__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.promo-banner__rating {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 3px solid #26a17b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: #e0e0e0;
}
.promo-banner__btn {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
}
.promo-banner__btn:hover {
  text-decoration: none;
}
.promo-banner__btn--secondary {
  background: #2a2d3a;
  color: #e0e0e0;
  border: 1px solid #3a3d4a;
}
.promo-banner__btn--secondary:hover {
  background: #3a3d4a;
}
.promo-banner__btn--primary {
  background: #e5650e;
  color: #fff;
  border: none;
}
.promo-banner__btn--primary:hover {
  background: #f0731a;
}

@media (max-width: 768px) {
  .promo-banner__logo,
  .promo-banner__right { flex: none; }
  .promo-banner__right { width: 100%; justify-content: flex-start; }
}
@media (max-width: 480px) {
  .promo-banner__inner { flex-direction: column; align-items: stretch; text-align: center; }
  .promo-banner__logo { justify-content: center; }
  .promo-banner__offer { min-width: 0; }
  .promo-banner__right { flex-direction: column; align-items: stretch; }
  .promo-banner__actions { flex-wrap: wrap; justify-content: center; }
  .promo-banner__features { justify-content: center; }
}

/* --- Header (pinned top line) --- */
.header {
  --header-height: 56px;
  background: #191b28;
  border-bottom: 1px solid #2a2d3a;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.6rem clamp(0.75rem, 3vw, 1rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  min-width: 0;
  flex-wrap: nowrap;
  min-height: var(--header-height);
}
/* Offset body so content is not under fixed header */
body { padding-top: calc(var(--header-height) + 0.6rem * 2 + 1px); }
.logo { flex-shrink: 0; min-width: 0; }
.logo img { height: 36px; width: auto; max-width: 120px; }

/* Mobile: pinned Login + Registration in top line */
.header-pinned-actions {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
}
.header-pinned-actions .header-pinned-btn {
  white-space: nowrap;
  padding: 0.4rem 0.6rem;
  font-size: 0.8rem;
}
/* Hide duplicate buttons inside dropdown on mobile */
.nav .header-actions .btn-small { display: none; }

@media (max-width: 380px) {
  .header-pinned-actions .header-pinned-btn { padding: 0.35rem 0.5rem; font-size: 0.75rem; }
  .logo img { max-width: 100px; height: 32px; }
}

.menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  min-width: 44px;
  height: 44px;
  min-height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid #3a3d4a;
  border-radius: 6px;
  cursor: pointer;
  color: #e0e0e0;
  flex-shrink: 0;
}
/* Hamburger bars when no span content (optional: use pseudo-elements) */
.menu-btn::before,
.menu-btn::after {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
}
.menu-btn::before { transform: translateY(-4px); }
.menu-btn::after { transform: translateY(2px); }
.menu-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
}
.menu-btn.active + .nav,
.nav.open { display: block; }

.nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #191b28;
  border-bottom: 1px solid #2a2d3a;
  padding: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.nav-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
}
.nav-list a {
  display: block;
  padding: 0.5rem 0;
  color: #e0e0e0;
}
.nav-list a:hover { color: #e5650e; text-decoration: none; }
.header-actions {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.search-form {
  display: flex;
  gap: 4px;
}
.search-form input {
  padding: 0.4rem 0.6rem;
  font-size: 0.9rem;
  border: 1px solid #3a3d4a;
  border-radius: 6px;
  background: #252836;
  color: #e0e0e0;
  min-width: 120px;
}
.search-form input::placeholder { color: #888; }
.search-form button {
  padding: 0.4rem 0.6rem;
  background: #e5650e;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.85rem;
}

/* --- Main banner (under header) --- */
.main-banner {
  width: 100%;
  display: block;
  line-height: 0;
  background: #191b28;
}
.main-banner__link {
  display: block;
  text-decoration: none;
}
.main-banner__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 320px;
}
/* Mobile: show full banner image, no crop */
@media (max-width: 768px) {
  .main-banner__img {
    max-height: none;
    object-fit: contain;
    width: 100%;
    height: auto;
  }
}

/* --- Hero --- */
.hero {
  padding: clamp(1rem, 4vw, 1.5rem) clamp(0.75rem, 3vw, 1rem);
  background: linear-gradient(180deg, #252836 0%, #191b28 100%);
}
.hero-inner { max-width: 600px; margin: 0 auto; }
.hero-card {
  background: #252836;
  border: 1px solid #2a2d3a;
  border-left: 4px solid #e5650e;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.hero-main {
  padding: clamp(1rem, 3vw, 1.25rem);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: flex-start;
}
.hero-logo { flex-shrink: 0; }
.hero-logo img { width: 80px; height: 80px; }
.hero-info { flex: 1; min-width: 0; }
.hero-info h1 { margin: 0 0 0.25rem 0; font-size: clamp(1.25rem, 5vw, 1.5rem); color: #fff; }
.hero-bonus { margin: 0 0 0.5rem 0; color: #e5650e; font-weight: 600; font-size: clamp(0.9rem, 2.5vw, 1rem); }
.hero-features {
  margin: 0;
  padding-left: 1rem;
  font-size: clamp(0.85rem, 2.5vw, 0.9rem);
  color: #b0b0b0;
}
.hero-rating {
  text-align: center;
  padding: 0.5rem 0.75rem;
  background: #191b28;
  border-radius: 8px;
  min-width: 0;
}
.rating-value { display: block; font-size: clamp(1.25rem, 4vw, 1.5rem); font-weight: 700; color: #e5650e; }
.rating-label { font-size: 0.75rem; color: #888; }
.hero-rating data { display: block; font-size: clamp(1.25rem, 4vw, 1.5rem); font-weight: 700; color: #e5650e; }
.hero-rating small { display: block; font-size: 0.75rem; color: #888; }
.hero-cta { padding: 0 clamp(1rem, 3vw, 1.25rem) clamp(1rem, 3vw, 1.25rem); }
.hero-cta .btn { padding: 0.75rem; }

@media (max-width: 480px) {
  .hero-logo img { width: 64px; height: 64px; }
  .hero-main { flex-direction: column; align-items: stretch; }
  .hero-rating { align-self: center; }
}

/* --- Content --- */
.content-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(0.75rem, 3vw, 1rem);
}
@media (min-width: 900px) {
  .content-wrap { padding: 1.5rem 2rem; }
}
.toc {
  background: #252836;
  border: 1px solid #2a2d3a;
  border-left: 4px solid #e5650e;
  border-radius: 10px;
  padding: 0;
  margin-bottom: 2rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.03);
  overflow: hidden;
}
.toc-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 1rem 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  color: #fff;
  text-align: left;
}
.toc-trigger:hover { color: #e5650e; }
/* Arrow: down when collapsed, up when expanded */
.toc-trigger::after {
  content: '';
  flex-shrink: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-bottom: 0.2rem;
  transition: transform 0.2s ease;
}
.toc-trigger[aria-expanded="true"]::after {
  transform: rotate(-135deg);
  margin-bottom: -0.2rem;
}
.toc-title { font-size: 1.1rem; font-weight: 600; margin: 0; }
.toc-chevron {
  flex-shrink: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-bottom: 0.2rem;
  transition: transform 0.2s ease;
}
.toc.open .toc-chevron,
.toc-aside.open .toc-chevron { transform: rotate(-135deg); margin-bottom: -0.2rem; }
.toc-list {
  margin: 0;
  padding: 0 clamp(1rem, 3vw, 1.25rem) clamp(1rem, 3vw, 1.25rem) clamp(1rem, 3vw, 1.25rem);
  padding-left: clamp(1.5rem, 5vw, 2.5rem);
  font-size: clamp(0.9rem, 2.5vw, 0.95rem);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.toc.open .toc-list,
.toc-aside.open .toc-list { max-height: 1200px; }
.toc-list[hidden] { display: block; max-height: 0; }
.toc.open .toc-list[hidden],
.toc-aside.open .toc-list[hidden] { max-height: 1200px; }
.toc-list a { color: #e0e0e0; }
.toc-list a:hover { color: #e5650e; text-decoration: none; }

.article { padding-bottom: clamp(1.5rem, 4vw, 2rem); }
.section {
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
  padding-bottom: clamp(1.25rem, 3vw, 2rem);
  padding-left: clamp(0.75rem, 3vw, 1rem);
  margin-left: 0.5rem;
  border-bottom: 1px solid #2a2d3a;
  border-left: 3px solid transparent;
  border-radius: 0 0 0 6px;
}
.section:first-of-type,
.section:nth-of-type(3),
.section:nth-of-type(6),
.section:nth-of-type(9) { border-left-color: #e5650e; }
.section:last-of-type { border-bottom: none; }
.section h2 {
  margin: 0 0 0.75rem 0;
  font-size: clamp(1.15rem, 4vw, 1.4rem);
  color: #fff;
  word-wrap: break-word;
}
.section h3 {
  margin: 1rem 0 0.5rem 0;
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  color: #e0e0e0;
}
.section p { margin: 0 0 0.75rem 0; color: #b8b8b8; }
.section p:last-child { margin-bottom: 0; }

@media (max-width: 480px) {
  .section { margin-left: 0.25rem; padding-left: 0.75rem; }
}

.rating-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem 1rem;
  margin: 1rem 0;
  font-size: 0.9rem;
}
.rating-item {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  border-bottom: 1px solid #2a2d3a;
}
.rating-item .label { color: #b0b0b0; }
.rating-item .score { color: #e5650e; font-weight: 600; }

/* --- Table --- */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 1rem 0;
  border: 1px solid #2a2d3a;
  border-left: 3px solid #e5650e;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.02);
}
.promo-table {
  width: 100%;
  min-width: 280px;
  border-collapse: collapse;
  font-size: clamp(0.75rem, 2.2vw, 0.85rem);
}
.promo-table th,
.promo-table td {
  padding: 0.5rem 0.5rem;
  text-align: left;
  border-bottom: 1px solid #2a2d3a;
}
@media (min-width: 600px) {
  .promo-table th, .promo-table td { padding: 0.6rem 0.75rem; }
}
.promo-table th {
  background: #252836;
  color: #fff;
  font-weight: 600;
}
.promo-table td { color: #b8b8b8; }
.promo-table tr:last-child td { border-bottom: none; }
.promo-table .btn { white-space: nowrap; }

.steps { margin: 0.5rem 0; color: #b8b8b8; }
.steps li { margin-bottom: 0.5rem; }

/* --- Compare cards --- */
.compare-cards { display: flex; flex-direction: column; gap: 1rem; margin: 1rem 0; }
.compare-card {
  background: #252836;
  border: 1px solid #2a2d3a;
  border-radius: 10px;
  padding: 1rem;
}
.compare-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}
.compare-header img { width: 48px; height: 48px; border-radius: 6px; }
.compare-header strong { color: #fff; }
.compare-rating { margin-left: auto; color: #e5650e; font-weight: 600; font-size: 0.9rem; }
.compare-card p { margin: 0.25rem 0; font-size: 0.9rem; }
.compare-card .small { font-size: 0.8rem; color: #888; }

.pros-cons {
  display: grid;
  gap: 1.25rem;
  margin: 1rem 0;
}
.pros h3, .cons h3 { margin: 0 0 0.5rem 0; font-size: 1rem; }
.pros h3 { color: #7cb87c; }
.cons h3 { color: #c87c7c; }
.pros ul, .cons ul { margin: 0; padding-left: 1.25rem; color: #b8b8b8; font-size: 0.95rem; }

/* --- FAQ --- */
.faq-list { margin: 0.5rem 0 0 0; }
.faq-item {
  border: 1px solid #2a2d3a;
  border-radius: 8px;
  margin-bottom: 0.5rem;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  padding: clamp(0.85rem, 3vw, 1rem) clamp(1rem, 3vw, 1rem);
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  font-weight: 600;
  text-align: left;
  background: #252836;
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 48px;
}
.faq-q::after {
  content: '+';
  font-size: 1.2rem;
  color: #e5650e;
  flex-shrink: 0;
  margin-left: 0.5rem;
}
.faq-q[aria-expanded="true"]::after { content: '−'; }
.faq-q:hover { background: #2a2d3a; }
.faq-a {
  padding: 0 clamp(1rem, 3vw, 1rem) clamp(0.85rem, 3vw, 1rem);
  background: #252836;
  color: #b8b8b8;
  font-size: clamp(0.9rem, 2.5vw, 0.95rem);
  line-height: 1.5;
  display: none;
  border-top: 1px solid #2a2d3a;
}
.faq-item.open .faq-a { display: block; }

/* --- Footer --- */
.footer {
  background: #252836;
  border-top: 1px solid #2a2d3a;
  padding: clamp(1.5rem, 4vw, 2rem) clamp(1rem, 4vw, 1rem);
  padding-left: max(clamp(1rem, 4vw, 1rem), env(safe-area-inset-left));
  padding-right: max(clamp(1rem, 4vw, 1rem), env(safe-area-inset-right));
  padding-bottom: max(clamp(1.5rem, 4vw, 2rem), env(safe-area-inset-bottom));
  margin-top: 2rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}
.footer-inner { max-width: 900px; margin: 0 auto; }
.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 3vw, 1.5rem);
  margin-bottom: 1.5rem;
  padding: clamp(1rem, 3vw, 1.25rem);
  border: 1px solid #2a2d3a;
  border-left: 3px solid #e5650e;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.02);
}
@media (max-width: 480px) {
  .footer-links { grid-template-columns: 1fr; }
}
.footer-payment {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #2a2d3a;
}
.footer-payment-title {
  margin: 0 0 0.75rem 0;
  font-size: 0.85rem;
  color: #e5650e;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-payment-title + .payment-icons { margin-bottom: 1rem; }
.footer-payment-title + .payment-icons:last-child,
.payment-icons--certs { margin-bottom: 0; }
.payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 480px) {
  .payment-icons { gap: 0.35rem; }
}
.payment-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  height: 42px;
  padding: 0 0.4rem;
  background: #191b28;
  border: 1px solid #2a2d3a;
  border-radius: 8px;
  overflow: hidden;
}
@media (max-width: 480px) {
  .payment-icon--badge { min-width: 0; padding: 0 0.5rem; font-size: 0.7rem; height: 36px; }
  .payment-icon--cert.payment-icon--badge-cert { font-size: 0.65rem; padding: 0 0.5rem; height: 36px; }
}
.payment-icon img {
  max-width: 72px;
  max-height: 40px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.payment-icon--badge {
  min-width: 0;
  height: 40px;
  padding: 0 0.75rem;
  background: #252a36;
  border: 1px solid #3a3d4a;
  border-left: 3px solid #e5650e;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #e0e0e0;
  white-space: nowrap;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.payment-icon--badge img {
  display: none;
}
.payment-icon--cert {
  min-width: 64px;
  height: 38px;
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.payment-icon--cert img {
  max-width: 64px;
  max-height: 36px;
}
.payment-icon--cert.payment-icon--badge-cert {
  min-width: 0;
  height: 40px;
  padding: 0 0.75rem;
  background: #252a36;
  border: 1px solid #3a3d4a;
  border-left: 3px solid #e5650e;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #e0e0e0;
  white-space: nowrap;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.payment-icon--cert.payment-icon--badge-cert img {
  display: none;
}
.payment-icon--cert:not(.payment-icon--badge-cert) {
  padding: 0 0.6rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: #e5650e;
  border: 1px solid #3a3d4a;
  border-left: 3px solid #e5650e;
  background: #252a36;
}
.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.footer-links h4,
.footer-links__title {
  margin: 0 0 0.5rem 0;
  font-size: 0.9rem;
  color: #e5650e;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-links__group { margin: 0; }
.footer-links ul { margin: 0; padding: 0; list-style: none; }
.footer-links li { margin-bottom: 0.35rem; }
.payment-icons li { margin-bottom: 0; }
.footer-links a { color: #b8b8b8; }
.footer-links a:hover { color: #e5650e; }
.footer-disclaimer {
  font-size: clamp(0.8rem, 2.2vw, 0.85rem);
  color: #888;
  margin: 0 0 1rem 0;
  max-width: 60ch;
}
.footer-copy { font-size: 0.8rem; color: #666; margin: 0; }

/* Safe area for notched devices (header) */
.header-inner {
  padding-left: max(0.75rem, env(safe-area-inset-left));
  padding-right: max(0.75rem, env(safe-area-inset-right));
}
.main-banner { padding-left: env(safe-area-inset-left); padding-right: env(safe-area-inset-right); }
.content-wrap {
  padding-left: max(clamp(0.75rem, 3vw, 1rem), env(safe-area-inset-left));
  padding-right: max(clamp(0.75rem, 3vw, 1rem), env(safe-area-inset-right));
}

/* --- Desktop --- */
@media (min-width: 768px) {
  .header-pinned-actions { display: none; }
  .nav .header-actions .btn-small { display: inline-flex; }
  .menu-btn { display: none; }
  .nav {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    position: static;
    border: none;
    padding: 0;
    box-shadow: none;
    flex-shrink: 0;
  }
  .nav-list {
    display: flex;
    gap: 1rem;
    margin: 0;
  }
  .nav-list a { padding: 0.25rem 0; }
  .header-actions {
    margin-left: auto;
    flex-wrap: nowrap;
    gap: 0.75rem;
  }
  .header-actions .btn-small { white-space: nowrap; }
  .search-form input { min-width: 140px; }
  .hero-main { flex-wrap: nowrap; }
  .hero-rating { margin-left: auto; }
  .rating-grid { grid-template-columns: repeat(5, 1fr); }
  .compare-cards { flex-direction: row; flex-wrap: wrap; }
  .compare-card { flex: 1; min-width: 260px; }
  .pros-cons { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 900px) {
  .content-wrap { padding: 1.5rem 2rem; }
  .promo-table { font-size: 0.9rem; }
  .promo-table th, .promo-table td { padding: 0.75rem 1rem; }
}
