/* All Buyers Reviews — Jetterix review page */
:root {
  --primary-color: #2563eb;
  --primary-dark: #1e3a5f;
  --secondary-color: #0f766e;
  --accent-color: #dc2626;
  --bg-light: #f8f9fb;
  --text-dark: #1a1a2e;
  --text-muted: #5c6370;
  --surface: #ffffff;
  --border: #e2e8f0;
  --radius: 8px;
  --buy-green: #059669;
  --buy-green-hover: #047857;
}

.jetterix-page {
  color: var(--text-dark);
  background: var(--bg-light);
  line-height: 1.65;
}

.jetterix-page h1,
.jetterix-page h2,
.jetterix-page h3,
.jetterix-page h4 {
  font-weight: 700;
  color: var(--primary-dark);
  letter-spacing: -0.3px;
}

.jetterix-page .container {
  max-width: 1100px;
}

/* Unified header */
.jetterix-header {
  height: auto;
  min-height: 64px;
}

.jetterix-header__inner {
  flex-wrap: wrap;
  min-height: 64px;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  gap: 0.75rem;
}

.jetterix-header__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
}

.jetterix-header__nav a:not(.btn-buy-now) {
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--text-muted);
  text-decoration: none;
  white-space: nowrap;
}

.jetterix-header__nav a:not(.btn-buy-now):hover {
  color: var(--primary-color);
  text-decoration: none;
}

.btn-buy-now {
  background: var(--buy-green);
  color: #fff !important;
  font-weight: 700;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius);
  text-decoration: none !important;
  font-size: 0.9rem;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.35);
}

.btn-buy-now:hover {
  background: var(--buy-green-hover);
  transform: translateY(-1px);
  text-decoration: none !important;
}

.sticky-buy-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 0.75rem 1rem;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
}

.sticky-buy-bar .btn-buy-now {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.875rem;
  font-size: 1.05rem;
}

@media (max-width: 992px) {
  .jetterix-header__nav a:not(.btn-buy-now):not([href="/"]) {
    display: none;
  }
}

@media (max-width: 768px) {
  .sticky-buy-bar {
    display: block;
  }

  .jetterix-page {
    padding-bottom: 4.5rem;
  }
}

.btn-cta {
  background-color: var(--buy-green);
  color: #fff;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  border: none;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.35);
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-cta:hover {
  background-color: var(--buy-green-hover);
  color: #fff;
  transform: translateY(-2px);
  text-decoration: none;
}

.btn-cta.btn-lg {
  padding: 1rem 1.75rem;
  font-size: 1.05rem;
}

/* Hero */
.hero-section {
  padding: 2rem 0 1.5rem;
  background: var(--bg-light);
}

.hero-card {
  background: var(--surface);
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.hero-card__image {
  background: linear-gradient(160deg, #e8f0fe 0%, #f0fdf4 100%);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.hero-card__image img {
  max-height: 280px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  box-shadow: none;
}

.hero-card__body {
  padding: 2rem;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-top: 1.25rem;
}

.spec-pills {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-top: 1.25rem;
}

@media (max-width: 768px) {
  .spec-pills {
    grid-template-columns: repeat(2, 1fr);
  }
}

.spec-pill {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.875rem 0.5rem;
  text-align: center;
}

.spec-pill__value {
  display: block;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary-color);
}

.spec-pill__label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Shared content cards */
.content-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  overflow: hidden;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

@media (max-width: 992px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

.feature-grid__item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
}

.feature-grid__icon {
  font-size: 1.75rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.feature-grid__item h3 {
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}

.feature-grid__item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

.section-padding {
  padding: 2.5rem 0;
}

.section-padding--tight {
  padding: 2rem 0;
}

.bg-alt {
  background-color: #eef2f7;
}

.feature-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: none;
  border: 1px solid var(--border);
}

.benefit-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.benefit-list li {
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
  position: relative;
  padding-left: 1.5rem;
}

.benefit-list li::before {
  content: "✓";
  color: var(--secondary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.danger-list li::before {
  content: "✗";
  color: var(--accent-color);
}

.step-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 768px) {
  .step-cards {
    grid-template-columns: 1fr;
  }
}

.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 0.75rem;
}

.img-fluid {
  border-radius: var(--radius);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  display: block;
}

.img-wrapper {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
}

.img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.use-case-row {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}

.use-case-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.use-case-row h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
}

.specs-table th,
.specs-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}

.specs-table tr:last-child th,
.specs-table tr:last-child td {
  border-bottom: none;
}

.specs-table th {
  background: var(--bg-light);
  font-weight: 600;
  width: 35%;
}

.specs-table td {
  color: var(--text-muted);
}

.testimonial-card {
  background: var(--surface);
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  box-shadow: none;
  border-radius: 0 var(--radius) var(--radius) 0;
  border: 1px solid var(--border);
  border-left-width: 4px;
  height: 100%;
}

.stars {
  color: #f59e0b;
  margin-bottom: 0.5rem;
}

/* Unified pricing packages */
.pricing-packages {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.pricing-package {
  display: block;
  cursor: pointer;
  margin: 0;
}

.pricing-package input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.pricing-package__card {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 0.875rem;
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 0.875rem 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.pricing-package__radio {
  width: 20px;
  height: 20px;
  border: 2px solid #cbd5e1;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
}

.pricing-package input:checked + .pricing-package__card {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.pricing-package input:checked + .pricing-package__card .pricing-package__radio {
  border-color: var(--primary-color);
}

.pricing-package input:checked + .pricing-package__card .pricing-package__radio::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: var(--primary-color);
  border-radius: 50%;
}

.pricing-package__thumb {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 6px;
  background: #f1f5f9;
  padding: 4px;
  box-shadow: none;
}

.pricing-package__info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.pricing-package__info strong {
  font-size: 0.95rem;
  color: var(--text-dark);
}

.pricing-package__sub {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.pricing-package__price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  flex-shrink: 0;
}

.pricing-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  width: fit-content;
}

.pricing-badge--seller {
  background: var(--primary-color);
  color: #fff;
}

.pricing-badge--value {
  background: #f59e0b;
  color: #1a1a2e;
}

.price-old {
  display: block;
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.2;
}

.price-final {
  display: block;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-dark);
  line-height: 1.3;
}

.price-final small {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
}

.discount-badge {
  display: block;
  color: var(--accent-color);
  font-weight: 700;
  font-size: 0.75rem;
  margin-top: 0.1rem;
}

.pricing-summary {
  font-size: 0.95rem;
  color: var(--text-dark);
}

@media (max-width: 576px) {
  .pricing-package__card {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
  }

  .pricing-package__thumb {
    grid-row: span 2;
  }

  .pricing-package__price {
    grid-column: 2;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 0.35rem 0.75rem;
    text-align: left;
  }

  .price-old,
  .price-final,
  .discount-badge {
    display: inline;
  }
}

.compare-table {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 0;
}

.compare-table th,
.compare-table td {
  padding: 0.875rem;
  text-align: center;
  vertical-align: middle;
  font-size: 0.95rem;
}

.compare-table th {
  background: var(--primary-dark);
  color: #fff;
  font-weight: 700;
}

.highlight-col {
  background: rgba(37, 99, 235, 0.05);
}

.highlight-header {
  background: var(--primary-color) !important;
}

.price-strike {
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: 1.15rem;
}

.price-new {
  color: var(--primary-color);
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1;
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
  color: #fff;
}

.cta-section h2 {
  color: #fff;
}

.cta-box {
  background: var(--surface);
  color: var(--text-dark);
  padding: 1.75rem;
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.cta-box .sale-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--accent-color);
  color: #fff;
  padding: 0.35rem 1rem;
  font-weight: 700;
  font-size: 0.8rem;
  border-bottom-left-radius: var(--radius);
}

.seo-content {
  max-width: 800px;
  margin: 0 auto;
}

.seo-content p {
  color: var(--text-muted);
  margin-bottom: 0.875rem;
  font-size: 0.95rem;
}

.jetterix-page .accordion-button {
  font-weight: 600;
  color: var(--primary-dark);
  font-size: 0.95rem;
}

.jetterix-page .accordion-button:not(.collapsed) {
  background: rgba(37, 99, 235, 0.08);
  color: var(--primary-color);
}

.review-rating-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.review-rating-bar__score {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--secondary-color);
}

.review-rating-bar__stars {
  color: #f59e0b;
  letter-spacing: 1px;
}

.review-rating-bar__label {
  font-size: 0.8rem;
  font-weight: 600;
  background: #ecfdf5;
  color: var(--secondary-color);
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
}

.verdict-box {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
  color: #fff;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
}

.verdict-box h2 {
  color: #fff;
  font-size: 1.5rem;
}

.verdict-box p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1rem;
  max-width: 650px;
  margin: 0 auto 1.25rem;
}
