/* =====================
   SEO VS ADS
===================== */
.compare-section {
  background: radial-gradient(circle at right, rgba(212, 175, 55, .12), transparent 35%), #050505;
  padding: 110px 25px;
}

.compare-container {
  max-width: 1200px;
  margin: auto;
}

/* HEADING */
.compare-heading {
  max-width: 820px;
  margin: 0 auto 70px;
  text-align: center;
}

.compare-heading h2 {
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.1;
  letter-spacing: -1.5px;
  font-weight: 900;
  color: white;
  margin-bottom: 25px;
}

.compare-heading p {
  font-size: 17px;
  line-height: 1.8;
  color: #bdbdbd;
}

.compare-heading strong {
  color: white;
}

/* WRAPPER */
.compare-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.compare-card {
  padding: 45px;
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .02));
  border: 1px solid rgba(212, 175, 55, .20);
  transition: .35s;
}

.compare-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, .55);
}

.seo-card {
  background: linear-gradient(145deg, rgba(212, 175, 55, .18), rgba(255, 255, 255, .03));
  border-color: rgba(212, 175, 55, .45);
}

.compare-title span {
  display: inline-flex;
  padding: 8px 16px;
  border-radius: 30px;
  background: #d4af37;
  color: #050505;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 25px;
}

.compare-title h3 {
  font-size: 30px;
  font-weight: 900;
  color: white;
  margin-bottom: 30px;
}

/* LIST */
.compare-card ul {
  list-style: none;
}

.compare-card li {
  position: relative;
  padding: 0 0 18px 32px;
  font-size: 16px;
  line-height: 1.6;
  color: #ddd;
}

.compare-card li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #d4af37;
  font-weight: 900;
}

/* SUMMARY */
.compare-summary {
  margin-top: 40px;
  padding: 40px;
  border-radius: 32px;
  text-align: center;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(212, 175, 55, .25);
}

.compare-summary h3 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 900;
  color: white;
  margin-bottom: 18px;
}

.compare-summary p {
  max-width: 760px;
  margin: 0 auto 30px;
  font-size: 16px;
  line-height: 1.8;
  color: #aaa;
}

.compare-summary strong {
  color: white;
}

.compare-summary a {
  display: inline-flex;
  padding: 16px 28px;
  border-radius: 50px;
  background: linear-gradient(135deg, #d4af37, #fff1a8);
  color: #050505;
  font-weight: 900;
  text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 800px) {
  .compare-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .compare-section {
    padding: 80px 20px;
  }
  
  .compare-card {
    padding: 32px 26px;
  }
  
  .compare-summary {
    padding: 32px 24px;
  }
}