/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #111;
  color: #fff;
  overflow-x: hidden;
  padding-bottom: 70px; /* space for sticky bar */
}

a {
  color: #ffcc00;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
}

/* ===== ANIMATIONS ===== */
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes flash {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes slideOutRight {
  from { transform: translateX(0); opacity: 1; }
  to { transform: translateX(100%); opacity: 0; }
}

@keyframes rainbowBorder {
  0% { border-color: #ff0000; }
  33% { border-color: #ffcc00; }
  66% { border-color: #00ff00; }
  100% { border-color: #ff0000; }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ===== NAV ===== */
.nav {
  background: linear-gradient(180deg, #cc0000, #990000);
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  border-bottom: 4px solid #ffcc00;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo {
  font-family: Impact, 'Arial Black', sans-serif;
  font-size: 1.6rem;
  color: #ffcc00;
  text-transform: uppercase;
  padding: 12px 0;
  text-shadow: 2px 2px 0 #000;
  white-space: nowrap;
}

.nav-logo span {
  color: #fff;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0;
  flex-wrap: wrap;
}

.nav-links li a {
  display: block;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.85rem;
  padding: 16px 14px;
  transition: background 0.2s;
  text-decoration: none;
}

.nav-links li a:hover {
  background: rgba(255,255,255,0.15);
  text-decoration: none;
}

.nav-links li a.cta-link {
  background: #ffcc00;
  color: #000;
  font-weight: 900;
  animation: pulse 1s infinite;
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #1a0000, #330000, #1a0000);
  text-align: center;
  padding: 60px 20px 40px;
  border-bottom: 6px solid #ffcc00;
}

.hero h1 {
  font-family: Impact, 'Arial Black', sans-serif;
  font-size: clamp(2.5rem, 8vw, 5rem);
  color: #ff0000;
  text-transform: uppercase;
  text-shadow: 3px 3px 0 #000, 0 0 20px rgba(255,0,0,0.5);
  animation: pulse 2s infinite;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.3rem;
  color: #ccc;
  max-width: 600px;
  margin: 0 auto 30px;
}

/* ===== PROBLEM SECTION ===== */
.problems {
  background: #1a1a1a;
  padding: 50px 20px;
  text-align: center;
}

.problems h2 {
  font-family: Impact, 'Arial Black', sans-serif;
  font-size: 2rem;
  color: #ffcc00;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.problem-card {
  background: #222;
  border: 2px solid #444;
  border-radius: 8px;
  padding: 30px 20px;
  filter: grayscale(100%);
  transition: filter 0.3s;
}

.problem-card:hover {
  filter: grayscale(0%);
  border-color: #ffcc00;
}

.problem-card .emoji {
  font-size: 3rem;
  display: block;
  margin-bottom: 15px;
}

.problem-card p {
  color: #999;
  font-style: italic;
  font-size: 1.1rem;
}

/* ===== PRODUCT REVEAL ===== */
.reveal {
  background: linear-gradient(135deg, #ffcc00, #ff9900);
  padding: 60px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.reveal h2 {
  font-family: Impact, 'Arial Black', sans-serif;
  font-size: clamp(2rem, 6vw, 3.5rem);
  color: #000;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.reveal .product-name {
  font-family: Impact, 'Arial Black', sans-serif;
  font-size: clamp(3rem, 10vw, 6rem);
  color: #cc0000;
  text-shadow: 3px 3px 0 rgba(0,0,0,0.2);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 20px;
}

.reveal .tagline {
  font-size: 1.3rem;
  color: #333;
  font-weight: bold;
}

/* ===== STARBURST BADGE ===== */
.starburst {
  display: inline-block;
  background: #ff0000;
  color: #fff;
  font-family: Impact, 'Arial Black', sans-serif;
  font-size: 1.2rem;
  width: 120px;
  height: 120px;
  line-height: 120px;
  text-align: center;
  border-radius: 50%;
  box-shadow: 0 0 0 8px #ffcc00, 0 0 0 12px #ff0000;
  animation: pulse 1.5s infinite;
  text-transform: uppercase;
  position: absolute;
  top: 20px;
  right: 30px;
}

/* ===== FEATURES LIST ===== */
.features {
  background: #111;
  padding: 50px 20px;
  text-align: center;
}

.features h2 {
  font-family: Impact, 'Arial Black', sans-serif;
  font-size: 2.5rem;
  color: #ffcc00;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.features-list {
  list-style: none;
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}

.features-list li {
  font-size: 1.2rem;
  padding: 12px 0;
  border-bottom: 1px solid #333;
  padding-left: 40px;
  position: relative;
}

.features-list li::before {
  content: "\2714";
  color: #00ff00;
  font-size: 1.5rem;
  position: absolute;
  left: 5px;
  top: 10px;
}

/* ===== AS SEEN ON ===== */
.as-seen-on {
  background: #fff;
  padding: 30px 20px;
  text-align: center;
}

.as-seen-on p {
  color: #999;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 3px;
  margin-bottom: 15px;
}

.logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.logos span {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.1rem;
  color: #666;
  font-style: italic;
  font-weight: bold;
}

/* ===== URGENCY BAR ===== */
.urgency {
  background: #ff0000;
  padding: 15px 20px;
  text-align: center;
  animation: flash 1.5s infinite;
}

.urgency p {
  font-family: Impact, 'Arial Black', sans-serif;
  font-size: 1.5rem;
  color: #fff;
  text-transform: uppercase;
}

#stock-count {
  color: #ffcc00;
  font-size: 2rem;
}

#countdown {
  color: #ffcc00;
}

/* ===== STICKY BOTTOM BAR ===== */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, #cc0000, #ff0000, #cc0000);
  padding: 12px 20px;
  text-align: center;
  z-index: 200;
  border-top: 3px solid #ffcc00;
  animation: pulse 2s infinite;
}

.sticky-bar a {
  color: #ffcc00;
  font-family: Impact, 'Arial Black', sans-serif;
  font-size: 1.4rem;
  text-transform: uppercase;
  text-shadow: 2px 2px 0 #000;
  text-decoration: none;
}

.sticky-bar a:hover {
  text-decoration: none;
  color: #fff;
}

/* ===== PAGE CONTENT ===== */
.page-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-content h1 {
  font-family: Impact, 'Arial Black', sans-serif;
  font-size: 2.5rem;
  color: #ffcc00;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 2px 2px 0 #000;
}

/* ===== HOW IT WORKS - STEPS ===== */
.steps {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 50px;
}

.step {
  background: #1a1a1a;
  border: 3px solid #333;
  border-radius: 12px;
  padding: 30px;
  position: relative;
}

.step:hover {
  border-color: #ffcc00;
}

.step-number {
  background: #ff0000;
  color: #fff;
  font-family: Impact, 'Arial Black', sans-serif;
  font-size: 2rem;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: 50%;
  position: absolute;
  top: -20px;
  left: 20px;
  box-shadow: 0 4px 10px rgba(255,0,0,0.5);
}

.step h3 {
  font-family: Impact, 'Arial Black', sans-serif;
  font-size: 1.5rem;
  color: #ffcc00;
  text-transform: uppercase;
  margin-bottom: 15px;
  margin-left: 70px;
}

.step p, .step ul {
  color: #ccc;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-left: 70px;
}

.step ul {
  list-style: none;
  margin-top: 10px;
}

.step ul li::before {
  content: "\25A0 ";
  color: #ffcc00;
}

/* ===== SCIENCE SECTION ===== */
.science {
  background: linear-gradient(135deg, #0a0a2a, #1a1a4a);
  border: 2px solid #3333ff;
  border-radius: 12px;
  padding: 40px;
  margin: 40px 0;
  text-align: center;
}

.science h2 {
  font-family: Impact, 'Arial Black', sans-serif;
  color: #6699ff;
  font-size: 2rem;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.science-terms {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.science-term {
  background: rgba(255,255,255,0.05);
  border: 1px solid #3333ff;
  border-radius: 8px;
  padding: 20px;
}

.science-term h4 {
  color: #ffcc00;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.science-term p {
  color: #999;
  font-size: 0.95rem;
}

.clinical-note {
  color: #666;
  font-size: 0.8rem;
  font-style: italic;
  margin-top: 20px;
  border-top: 1px solid #333;
  padding-top: 15px;
}

/* ===== PRICING CARDS ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.pricing-card {
  background: #1a1a1a;
  border: 3px solid #333;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  position: relative;
  transition: transform 0.3s, border-color 0.3s;
}

.pricing-card:hover {
  transform: translateY(-5px);
  border-color: #ffcc00;
}

.pricing-card.featured {
  border-color: #ff0000;
  transform: scale(1.05);
  z-index: 1;
}

.pricing-card.featured:hover {
  transform: scale(1.08);
}

.popular-badge {
  background: #ff0000;
  color: #fff;
  font-family: Impact, 'Arial Black', sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  padding: 6px 20px;
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 0 0 8px 8px;
  letter-spacing: 2px;
}

.pricing-card h3 {
  font-family: Impact, 'Arial Black', sans-serif;
  font-size: 1.5rem;
  color: #ffcc00;
  text-transform: uppercase;
  margin-bottom: 10px;
  margin-top: 15px;
}

.pricing-card .price-old {
  color: #666;
  font-size: 1.2rem;
  text-decoration: line-through;
}

.pricing-card .price {
  font-family: Impact, 'Arial Black', sans-serif;
  font-size: 3rem;
  color: #ff0000;
  margin: 10px 0;
}

.pricing-card .price-period {
  color: #999;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.pricing-card .feature-list {
  list-style: none;
  text-align: left;
  margin-bottom: 25px;
}

.pricing-card .feature-list li {
  padding: 8px 0;
  border-bottom: 1px solid #282828;
  color: #ccc;
  font-size: 0.95rem;
}

.pricing-card .feature-list li::before {
  content: "\2714 ";
  color: #00ff00;
}

.pricing-card .feature-list li.no::before {
  content: "\2718 ";
  color: #ff0000;
}

.pricing-card .feature-list li.no {
  color: #555;
}

.btn-order {
  display: inline-block;
  background: linear-gradient(180deg, #ff0000, #cc0000);
  color: #fff;
  font-family: Impact, 'Arial Black', sans-serif;
  font-size: 1.2rem;
  text-transform: uppercase;
  padding: 14px 40px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(255,0,0,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-order:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(255,0,0,0.6);
  text-decoration: none;
  color: #fff;
}

/* ===== GUARANTEE ===== */
.guarantee {
  background: #1a1a1a;
  border: 3px dashed #ffcc00;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  margin: 30px 0;
}

.guarantee h3 {
  font-family: Impact, 'Arial Black', sans-serif;
  color: #ffcc00;
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.guarantee p {
  color: #ccc;
  font-size: 1.1rem;
}

.guarantee .disclaimer {
  color: #555;
  font-size: 0.7rem;
  margin-top: 10px;
  font-style: italic;
}

/* ===== COMPARISON TABLE ===== */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
}

.comparison-table th,
.comparison-table td {
  padding: 12px 15px;
  border: 1px solid #333;
  text-align: center;
}

.comparison-table th {
  background: #cc0000;
  color: #fff;
  font-family: Impact, 'Arial Black', sans-serif;
  text-transform: uppercase;
}

.comparison-table td:first-child {
  text-align: left;
  color: #ccc;
  font-weight: bold;
}

.comparison-table tr:nth-child(even) {
  background: #1a1a1a;
}

.comparison-table tr:nth-child(odd) {
  background: #111;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.testimonial-card {
  background: #1a1a1a;
  border: 2px solid #333;
  border-radius: 12px;
  padding: 25px;
  position: relative;
}

.testimonial-card:hover {
  border-color: #ffcc00;
}

.stars {
  color: #ffcc00;
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.testimonial-card blockquote {
  color: #e8e8e8;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 1.1rem;
  line-height: 1.7;
  font-style: normal;
  font-weight: 400;
  margin-bottom: 15px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  font-size: 2.5rem;
}

.testimonial-name {
  color: #ffcc00;
  font-weight: bold;
}

.testimonial-location {
  color: #666;
  font-size: 0.85rem;
}

.verified-badge {
  display: inline-block;
  background: #00aa00;
  color: #fff;
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 3px;
  text-transform: uppercase;
  font-weight: bold;
  margin-top: 5px;
}

.video-placeholder {
  background: #000;
  border: 3px solid #333;
  border-radius: 12px;
  padding: 80px 20px;
  text-align: center;
  margin: 40px 0;
}

.video-placeholder p {
  color: #555;
  font-size: 1.2rem;
  font-style: italic;
}

/* ===== ORDER FORM ===== */
.order-form-container {
  background: #1a1a1a;
  border: 3px solid #ffcc00;
  border-radius: 12px;
  padding: 40px;
  max-width: 600px;
  margin: 0 auto;
}

.order-form-container h2 {
  font-family: Impact, 'Arial Black', sans-serif;
  color: #ffcc00;
  font-size: 1.8rem;
  text-transform: uppercase;
  margin-bottom: 25px;
  text-align: center;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  color: #ffcc00;
  font-weight: bold;
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.form-group .required {
  color: #ff0000;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  background: #222;
  border: 2px solid #444;
  border-radius: 6px;
  color: #fff;
  font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus {
  border-color: #ffcc00;
  outline: none;
}

.form-group .hint {
  color: #666;
  font-size: 0.8rem;
  margin-top: 4px;
  font-style: italic;
}

.shipping-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.shipping-option {
  background: #222;
  border: 2px solid #444;
  border-radius: 8px;
  padding: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: border-color 0.2s;
}

.shipping-option:hover {
  border-color: #ffcc00;
}

.shipping-option input[type="radio"] {
  width: auto;
  accent-color: #ff0000;
}

.shipping-option .shipping-name {
  color: #fff;
  font-weight: bold;
}

.shipping-option .shipping-detail {
  color: #999;
  font-size: 0.85rem;
}

.shipping-option .shipping-price {
  color: #ffcc00;
  font-weight: bold;
  margin-left: auto;
}

.btn-submit {
  display: block;
  width: 100%;
  background: linear-gradient(180deg, #ff0000, #cc0000);
  color: #fff;
  font-family: Impact, 'Arial Black', sans-serif;
  font-size: 1.5rem;
  text-transform: uppercase;
  padding: 18px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255,0,0,0.4);
  animation: pulse 2s infinite;
  margin-top: 20px;
}

.btn-submit:hover {
  box-shadow: 0 6px 20px rgba(255,0,0,0.6);
}

/* ===== ORDER RESULT ===== */
.order-result {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.order-result.show {
  display: block;
}

.order-result h2 {
  font-family: Impact, 'Arial Black', sans-serif;
  color: #00ff00;
  font-size: 2rem;
  margin-bottom: 20px;
}

.order-result p {
  color: #ccc;
  font-size: 1.2rem;
  margin-bottom: 15px;
  line-height: 1.6;
}

.processing {
  display: none;
  text-align: center;
  padding: 60px 20px;
}

.processing.show {
  display: block;
}

.processing .spinner {
  width: 60px;
  height: 60px;
  border: 6px solid #333;
  border-top-color: #ff0000;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

.processing p {
  color: #ffcc00;
  font-family: Impact, 'Arial Black', sans-serif;
  font-size: 1.3rem;
  text-transform: uppercase;
}

/* ===== TOAST NOTIFICATION ===== */
.toast {
  position: fixed;
  bottom: 80px;
  right: 20px;
  background: #1a1a1a;
  border: 2px solid #ffcc00;
  border-radius: 8px;
  padding: 12px 20px;
  color: #fff;
  font-size: 0.9rem;
  z-index: 300;
  animation: slideInRight 0.5s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  max-width: 320px;
}

.toast.hide {
  animation: slideOutRight 0.5s ease forwards;
}

.toast strong {
  color: #ffcc00;
}

/* ===== EXIT INTENT POPUP ===== */
.exit-popup-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.85);
  z-index: 500;
  align-items: center;
  justify-content: center;
}

.exit-popup-overlay.show {
  display: flex;
}

.exit-popup {
  background: linear-gradient(135deg, #1a0000, #330000);
  border: 4px solid #ff0000;
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  max-width: 500px;
  margin: 20px;
  animation: shake 0.5s ease;
}

.exit-popup h2 {
  font-family: Impact, 'Arial Black', sans-serif;
  color: #ff0000;
  font-size: 2rem;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.exit-popup p {
  color: #ccc;
  font-size: 1.1rem;
  margin-bottom: 25px;
}

.exit-popup .btn-stay {
  background: linear-gradient(180deg, #ff0000, #cc0000);
  color: #fff;
  font-family: Impact, 'Arial Black', sans-serif;
  font-size: 1.2rem;
  text-transform: uppercase;
  padding: 14px 40px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin: 5px;
  animation: pulse 1s infinite;
}

.exit-popup .btn-leave {
  background: none;
  border: 1px solid #555;
  color: #555;
  font-size: 0.8rem;
  padding: 8px 20px;
  border-radius: 8px;
  cursor: pointer;
  margin: 5px;
  display: block;
  margin: 15px auto 0;
}

/* ===== FOOTER ===== */
.footer {
  background: #0a0a0a;
  border-top: 3px solid #333;
  padding: 30px 20px;
  text-align: center;
}

.footer p {
  color: #444;
  font-size: 0.85rem;
  margin-bottom: 5px;
}

.footer a {
  color: #555;
}

/* ===== FAQ ===== */
.faq {
  margin: 40px 0;
}

.faq h2 {
  font-family: Impact, 'Arial Black', sans-serif;
  color: #ffcc00;
  font-size: 2rem;
  text-transform: uppercase;
  margin-bottom: 25px;
  text-align: center;
}

.faq-item {
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-item summary {
  padding: 15px 20px;
  cursor: pointer;
  color: #ffcc00;
  font-weight: bold;
  font-size: 1.05rem;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::before {
  content: "\25B6 ";
  color: #ff0000;
}

.faq-item[open] summary::before {
  content: "\25BC ";
}

.faq-item .faq-answer {
  padding: 0 20px 15px;
  color: #999;
  line-height: 1.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav {
    flex-direction: column;
    padding: 10px;
  }

  .nav-links {
    justify-content: center;
  }

  .nav-links li a {
    padding: 10px 10px;
    font-size: 0.8rem;
  }

  .starburst {
    position: static;
    margin: 20px auto;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .pricing-card.featured:hover {
    transform: translateY(-5px);
  }

  .step h3, .step p, .step ul {
    margin-left: 0;
    margin-top: 40px;
  }

  .comparison-table {
    font-size: 0.8rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 8px 5px;
  }
}
