body {
  font-family: Arial, sans-serif;
  color: #111827;
}

/* HERO */

.hero-section {
  background: linear-gradient(to bottom right, white, #f8f9fa, #fff8db);
}

.badge-custom {
  display: inline-block;
  background: #fef3c7;
  color: #92400e;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
}

.hero-title {
  max-width: 1000px;
  margin: auto;
}

.gold-text {
  color: #d4a017;
}

.hero-description {
  max-width: 850px;
}

/* COMPARISON */

.comparison-text {
  max-width: 850px;
}

.comparison-card {
  padding: 40px;
  border-radius: 30px;
  border: 1px solid #e5e7eb;
}

.gold-card {
  background: linear-gradient(to bottom right, #fff8db, white);
  border: 1px solid #facc15;
}

.comparison-list li {
  margin-bottom: 18px;
  font-size: 18px;
}

/* STRATEGY */

.strategy-section {
  background: black;
  color: white;
}

.small-title {
  color: #facc15;
  letter-spacing: 3px;
  font-weight: 700;
  font-size: 14px;
}

.strategy-text {
  color: #d1d5db;
  line-height: 1.9;
  font-size: 18px;
}

.glass-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 35px;
  border-radius: 25px;
  backdrop-filter: blur(10px);
}

/* ABOUT */

.about-badge {
  display: inline-block;
  background: white;
  border: 1px solid #e5e7eb;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 600;
}

.about-text {
  max-width: 900px;
  font-size: 18px;
  line-height: 1.9;
  color: #6b7280;
}

/* CONTACT */

.contact-description {
  max-width: 750px;
}

.contact-card {
  max-width: 600px;
  background: #f8f9fa;
  padding: 50px 40px;
  border-radius: 30px;
  border: 1px solid #e5e7eb;
  box-shadow: 0px 10px 30px rgba(0,0,0,0.05);
}

/* RESPONSIVE */

@media (max-width: 768px) {

  .hero-title {
    font-size: 42px !important;
  }

  .display-5 {
    font-size: 2.3rem;
  }

  .display-4 {
    font-size: 2.5rem;
  }

  .comparison-card,
  .glass-card,
  .contact-card {
    padding: 30px;
  }

}