:root {
  color-scheme: dark;
  --bg: #0d1018;
  --surface: #121622;
  --surface-strong: #161b2d;
  --surface-soft: #1d2436;
  --text: #f5f7fb;
  --text-muted: #abb2c5;
  --text-primary: #f5f7fb;
  --text-secondary: #c7d5e6;
  --accent: #00ff87;
  --accent-soft: rgba(0, 255, 135, 0.12);
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 20px 70px rgba(0, 0, 0, 0.24);
  --radius: 24px;
  --radius-sm: 14px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100%;
  font-family: 'Inter', system-ui, sans-serif;
  background: radial-gradient(circle at top, rgba(0, 255, 135, 0.06), transparent 24%), var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.cta-trust {
  margin: 0.5rem 0 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.sticky-cta-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  padding: 0.75rem 1rem 0.6rem;
  background: rgba(18, 22, 34, 0.92);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(12px);
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.sticky-cta-bar.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.sticky-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.sticky-cta-trust {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
}

body.has-sticky-cta-visible {
  padding-bottom: 86px;
}

@media (min-width: 768px) {
  .sticky-cta-bar {
    display: none;
  }
  body.has-sticky-cta-visible {
    padding-bottom: 0;
  }
}

@media (max-width: 768px) {
  .site-header {
    position: relative;
  }
  .header-inner {
    padding: 0.65rem 0;
  }
  .brand {
    gap: 0.6rem;
  }
  .brand img {
    width: 36px;
    height: 36px;
  }
  .brand span {
    font-size: 0.98rem;
  }
  .nav-links {
    display: none;
    width: 100%;
    margin-top: 0.75rem;
    padding: 0.75rem;
    gap: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: rgba(18, 22, 34, 0.92);
    backdrop-filter: blur(12px);
  }
  .nav-links a {
    font-size: 0.95rem;
  }

  .mobile-menu-toggle {
    display: inline-flex;
  }

  .site-header.mobile-menu-open .nav-links {
    display: flex;
  }
}

.container {
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.hero-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  width: 100%;
  backdrop-filter: blur(16px);
  background: rgba(13, 16, 24, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
  background: rgba(13, 16, 24, 0.98);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  border-color: rgba(255, 255, 255, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: 1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.brand img {
  width: 46px;
  height: 46px;
}

.brand span {
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.03em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
}

.nav-links a {
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--accent);
}

.mobile-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
}

.mobile-menu-toggle:focus-visible {
  outline: 2px solid rgba(0, 255, 135, 0.5);
  outline-offset: 2px;
}

.hero {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.hero-grid {
  display: grid;
  gap: 2rem;
}

.hero-copy {
  max-width: 680px;
}

.hero-copy h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero-copy p {
  margin: 1.5rem 0 0;
  color: var(--text-muted);
  max-width: 54rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.btn,
.copy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 999px;
  padding: 1rem 1.6rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #3ff7b9);
  color: #07110b;
  font-weight: 700;
  box-shadow: 0 16px 40px rgba(0, 255, 135, 0.16);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.btn-primary:hover,
.btn-secondary:hover,
.copy-btn:hover {
  transform: translateY(-1px);
}

.stat-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin-top: 2.5rem;
}

.stat-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.2rem 1.3rem;
  border-radius: var(--radius-sm);
}

.stat-card strong {
  display: block;
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.section {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.section-header {
  margin-bottom: 1rem;
}

.section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0;
}

.section p.lead {
  margin: 1rem 0 0;
  color: var(--text-muted);
  max-width: 720px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

body.view-list .offers-table-wrapper {
  display: block;
}

body.view-list .cards-grid {
  display: none;
}

.offers-table-wrapper {
  display: none;
  margin-top: 1.25rem;
}

.offers-table-scroll {
  width: 100%;
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
}

.offers-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.offers-table th,
.offers-table td {
  padding: 0.9rem 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  vertical-align: middle;
}

.offers-table thead th {
  position: sticky;
  top: 0;
  background: rgba(13, 16, 24, 0.98);
  text-align: left;
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.offers-firm {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.offers-logo {
  width: 44px;
  height: auto;
  object-fit: contain;
}

.offers-name {
  font-weight: 800;
}

.offers-review {
  display: inline-block;
  margin-top: 0.15rem;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
}

.offers-review:hover {
  color: var(--accent);
}

.offers-td-price {
  font-weight: 800;
  color: var(--accent);
  white-space: nowrap;
}

.offers-price {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.offers-price-before {
  color: var(--text-muted);
  text-decoration: line-through;
  font-weight: 600;
  font-size: 0.9rem;
}

.offers-price-after {
  font-weight: 900;
  color: var(--accent);
  font-size: 1.05rem;
}

.offers-td-discount {
  font-weight: 700;
  white-space: nowrap;
}

.offers-code {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.offers-code-text {
  padding: 0.45rem 0.7rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
}

.offers-code-btn {
  padding: 0.65rem 0.9rem;
  min-width: 86px;
  height: 42px;
}

.offers-code-text {
  height: 42px;
  display: inline-flex;
  align-items: center;
}

.offers-go {
  padding: 0.75rem 1rem;
  white-space: nowrap;
}

.offers-td-link .offers-go {
  width: 100%;
  justify-content: center;
}

@media (max-width: 767px) {
  .view-toggle {
    display: none;
  }

  .offers-table-wrapper {
    display: block;
  }

  .cards-grid {
    display: none;
  }

  .offers-table {
    min-width: 0;
  }

  .offers-table-scroll {
    overflow: visible;
    border: none;
    border-radius: 0;
    background: transparent;
  }

  .offers-table,
  .offers-table thead,
  .offers-table tbody,
  .offers-table th,
  .offers-table td,
  .offers-table tr {
    display: block;
    width: 100%;
  }

  .offers-table thead {
    position: absolute;
    left: -9999px;
    top: -9999px;
  }

  .offers-table tr {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.85rem;
    margin-bottom: 0.85rem;
  }

  .offers-table td {
    border: none;
    padding: 0.35rem 0;
  }

  .offers-table td::before {
    content: attr(data-label);
    display: block;
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 0.03em;
    margin-bottom: 0.2rem;
  }

  .offers-td-firm::before {
    content: "";
    display: none;
  }

  .offers-firm {
    gap: 0.7rem;
  }

  .offers-logo {
    width: 42px;
  }

  .offers-review {
    font-size: 0.82rem;
  }

  .offers-code {
    justify-content: space-between;
  }

  .offers-go {
    width: 100%;
    text-align: center;
  }
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
}

.view-toggle {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
}

.view-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  cursor: pointer;
}

.view-btn.active {
  background: rgba(0, 255, 135, 0.14);
  border-color: rgba(0, 255, 135, 0.3);
  color: var(--accent);
}

.filter-row .subtitle {
  color: var(--text-muted);
}

.sort-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.sort-buttons button {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.85rem 1rem;
  border-radius: 999px;
}

.sort-buttons button.active,
.sort-buttons button:hover {
  background: rgba(0, 255, 135, 0.14);
  border-color: rgba(0, 255, 135, 0.3);
}

.card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-top {
  display: flex;
  justify-content: space-between;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 0;
  margin-bottom: 0.35rem;
  min-height: 80px;
}

.card-top img {
  width: 86px;
  height: auto;
  object-fit: contain;
}

.badge-row {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  min-height: 35px;
}

.card-body {
  padding: 0.8rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.card h3 {
  margin: 0.8rem 0 0.35rem;
  font-size: 1.25rem;
  min-height: 1.6rem;
  display: flex;
  align-items: flex-end;
}

.badge {
  display: inline-flex;
  gap: 0.35rem;
  align-items: center;
  background: rgba(0, 255, 135, 0.14);
  color: var(--accent);
  font-weight: 700;
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  margin-top: 0.5rem;
}

.card-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
  min-height: 3.4rem;
}

.price-row {
  display: flex;
  align-items: flex-end;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-top: 0.75rem;
  min-height: 2.2rem;
}

.price-before {
  color: var(--text-muted);
  text-decoration: line-through;
  font-size: 0.95rem;
}

.price-after {
  font-size: 2rem;
  color: var(--accent);
  font-weight: 800;
  line-height: 1;
}

.price-save {
  color: #c5ffda;
  font-weight: 600;
  margin-top: 0.35rem;
  min-height: 1.3rem;
  display: flex;
  align-items: center;
}

.attributes {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin: 0.5rem 0 0.35rem;
  flex: 1;
}

.attribute {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.4;
}

.attribute span {
  font-size: 1.05rem;
}

.code-block {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.65rem;
  align-items: center;
  margin-bottom: 0.75rem;
}

.card-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: auto;
}

.code-copy {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
  padding: 1rem 1rem;
  border-radius: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.copy-btn {
  min-width: 124px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.card-actions .btn {
  width: 100%;
}

.card-actions .link-secondary {
  display: inline-flex;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  border-radius: 999px;
  padding: 1rem 1.25rem;
}

.how-grid,
.faq-grid {
  display: grid;
  gap: 1.5rem;
}

.feature-card,
.faq-item {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  padding: 0;
  margin-bottom: 0.5rem;
}

.feature-card {
  display: grid;
  gap: 1rem;
}

.feature-card h3 {
  margin: 0;
  font-size: 1.25rem;
}

.feature-card p {
  margin: 0;
  color: var(--text-muted);
}

.faq-item {
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: transparent;
  color: var(--text);
  border: none;
  text-align: left;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.875rem 1rem;
  font-size: 0.95rem;
  cursor: pointer;
}

.faq-question::after {
  content: '▾';
  transition: transform 0.2s ease;
  margin-left: 1rem;
}

.faq-question.active::after {
  transform: rotate(-180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease, margin 0.28s ease, padding 0.28s ease;
  margin-top: 0;
  padding: 0 1rem;
}

.faq-answer.open {
  padding: 0.75rem 1rem;
}

.faq-answer p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.faq-answer.open {
  margin-top: 0;
  max-height: 400px;
}

.footer {
  padding-top: 2rem;
  padding-bottom: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
  display: grid;
  gap: 1.6rem;
}

.footer-links {
  display: grid;
  gap: 0.5rem;
}

.footer-links a {
  color: var(--text-muted);
}

.footer p,
.footer small {
  margin: 0;
  color: var(--text-muted);
}

.badge-gold {
  background: linear-gradient(135deg, #ffd86d 0%, #e9b95f 100%);
  color: #101010;
}

.highlight-box {
  background: var(--surface-strong);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.25rem;
  border-radius: var(--radius-sm);
}

.table-slim {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.table-slim th,
.table-slim td {
  text-align: left;
  padding: 0.95rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.table-slim th {
  color: var(--text-muted);
  width: 180px;
  font-weight: 500;
}

@media (min-width: 760px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    align-items: center;
  }

  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .how-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-inner {
    grid-template-columns: 1.4fr 0.8fr;
  }
}

@media (min-width: 1100px) {
  .cards-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero-copy h1 {
    font-size: 1.9rem;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .discount-banner {
    grid-template-columns: 1fr;
    padding: 1.25rem;
  }

  .pros-cons-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* === REVIEW: BANNER DE DESCUENTO === */
.discount-banner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
  background: linear-gradient(135deg, rgba(0,255,135,0.05) 0%, rgba(10,22,40,0.8) 100%);
  border: 1px solid var(--accent);
  border-radius: 16px;
  padding: 1.5rem 2rem;
  margin-bottom: 2rem;
}

.discount-badge-large {
  display: inline-block;
  background: var(--accent);
  color: #000;
  font-weight: 800;
  font-size: 1rem;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}

.discount-prices {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.4rem;
}

.price-before-large {
  font-size: 1.1rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.price-after-large {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
}

.discount-saving {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
}

.discount-verified {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.discount-banner-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 220px;
}

.btn-large {
  font-size: 1rem;
  padding: 0.9rem 1.5rem;
  text-align: center;
}

@media (max-width: 640px) {
  .discount-banner {
    grid-template-columns: 1fr;
  }
}

/* === REVIEW: STATS GRID === */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 0.625rem;
  margin: 1.25rem 0 2rem;
}

.stat-item {
  background: var(--surface);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255,255,255,0.06);
}

.stat-item.highlight {
  border-color: var(--accent);
  background: rgba(0,255,135,0.05);
}

.stat-label {
  font-size: 0.68rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.35rem;
}

.stat-value {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
}

.stat-item.highlight .stat-value {
  color: var(--accent);
}

/* === REVIEW: H2 con borde izquierdo === */
.review-content h2 {
  margin-top: 2rem;
  margin-bottom: 0.6rem;
  font-size: 1.35rem;
}

/* === REVIEW: PROS Y CONTRAS === */
.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 1.5rem 0 2rem;
}

.pros-col,
.cons-col {
  border-radius: 12px;
  padding: 1.1rem 1.25rem;
}

.pros-col {
  background: rgba(0,255,135,0.04);
  border: 1px solid rgba(0,255,135,0.15);
}

.cons-col {
  background: rgba(255,100,100,0.04);
  border: 1px solid rgba(255,100,100,0.15);
}

.pros-col h3 { color: var(--accent); margin-bottom: 1rem; font-size: 1rem; }
.cons-col h3 { color: #ff6b6b; margin-bottom: 1rem; font-size: 1rem; }

.pros-col ul,
.cons-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pros-col li,
.cons-col li {
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--text-secondary);
}

.pros-col li:last-child,
.cons-col li:last-child { border-bottom: none; }

@media (max-width: 600px) {
  .pros-cons-grid { grid-template-columns: 1fr; }
}

/* === REVIEW: MID-CTA === */
.mid-cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  background: var(--surface);
  border: 1px solid var(--accent);
  border-radius: 12px;
  padding: 1.75rem 2rem;
  margin: 2.5rem 0;
}

.mid-cta-box strong {
  display: block;
  font-size: 1.05rem;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.mid-cta-box p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

.mid-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-width: 200px;
}

/* === REVIEW: VEREDICTO === */
.verdict-box {
  background: linear-gradient(135deg, rgba(0,255,135,0.05), rgba(10,22,40,0.9));
  border: 1px solid var(--accent);
  border-radius: 16px;
  padding: 2rem;
  margin: 2rem 0;
  text-align: center;
}

.verdict-stars {
  font-size: 1.8rem;
  color: #ffd700;
  margin-bottom: 0.5rem;
}

.verdict-score {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.verdict-score span {
  font-size: 1.5rem;
  color: var(--text-muted);
}

.verdict-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.verdict-summary {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* === REVIEW: CTA FINAL === */
.final-cta-section {
  background: var(--surface);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  margin-top: 2rem;
}

.final-cta-section h3 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.final-cta-section p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.final-code {
  max-width: 360px;
  margin: 0 auto 1.25rem;
}

/* === REVIEW: BREADCRUMB === */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  padding-top: 1rem;
}

.breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover { color: var(--accent); }

.breadcrumb .separator { opacity: 0.4; }

.breadcrumb .current { color: var(--text-primary); }

@media (max-width: 768px) {
  .site-header {
    position: relative !important;
    top: auto !important;
  }

  .site-header .mobile-menu-toggle {
    display: inline-flex !important;
  }

  .site-header .nav-links {
    display: none !important;
    flex-direction: column;
    align-items: stretch;
  }

  .site-header.mobile-menu-open .nav-links {
    display: flex !important;
  }
}
