:root {
  --primary: #c82a98;
  --secondary: #a530cc;
  --bg: #f8f5f7;
  --light: #f0eaf0;
  --dark: #2e1026;
}

body {
  background-color: var(--bg);
  color: var(--dark);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6, p, span, a, li, button {
  color: var(--dark);
}

#top-bar {
  position: relative;
  z-index: 1000;
  background-color: var(--primary);
}

#hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 70px 0;
  background: linear-gradient(135deg, #faeff7 0%, #f7effd 100%);
}

#hero h1 {
  font-size: 2.8rem;
}

#hero p.lead {
  font-size: 1.25rem;
}

.urgency-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
}

/* General Section Padding */
section {
  padding-top: 70px;
  padding-bottom: 70px;
}

@media (max-width: 767.98px) {
  section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  #hero h1 {
    font-size: 2rem;
  }
  #hero p.lead {
    font-size: 1rem;
  }
}

/* Buttons */
.btn {
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  display: inline-block;
  cursor: pointer;
}

.btn-cta {
  background-color: var(--primary);
  color: white !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.btn-cta:hover {
  filter: brightness(0.85);
  color: white !important;
}

.btn-secondary {
  background-color: var(--secondary);
  color: white !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.btn-secondary:hover {
  filter: brightness(0.85);
  color: white !important;
}

.btn-light {
  background-color: white;
  color: var(--dark) !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.btn-light:hover {
  filter: brightness(0.95);
  color: var(--dark) !important;
}

/* Images */
img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Product Introduction */
.product-bullets li {
  margin-bottom: 10px;
  font-size: 1.05rem;
  color: var(--dark);
}

/* Feature Cards */
.feature-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.feature-card:hover {
  box-shadow: 0 8px 16px rgba(0,0,0,0.12);
}

/* Bonus Section */
#bonus-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.bonus-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border: 1px solid rgba(0,0,0,0.05);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.bonus-card:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.bonus-image-wrapper {
  width: 100%;
  max-width: 250px;
  margin-bottom: 15px;
}

.bonus-image-wrapper img {
  object-fit: contain;
  border-radius: 6px;
}

.bonus-label {
  display: inline-block;
  background-color: var(--secondary);
  color: white;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.bonus-content h3 {
  color: var(--dark);
  font-size: 1.3rem;
  margin-top: 10px;
}

.bonus-content p {
  color: var(--dark);
  font-size: 0.95rem;
}

.value-badge {
  display: inline-block;
  background-color: var(--primary);
  color: white;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  margin: 10px 0;
  text-transform: uppercase;
}

/* Footer */
#social-footer a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

#social-footer a:hover {
  color: var(--primary);
}

#social-footer .social-icons .fab {
  font-size: 1.5rem;
}

/* Responsive Adjustments */
@media (min-width: 768px) {
  #product-intro .row {
    text-align: left;
  }
}

@media (max-width: 991.98px) {
  .bonus-card .btn-cta {
    width: auto !important;
  }
}

@media (max-width: 767.98px) {
  #bonus-container {
    grid-template-columns: 1fr;
  }
  .bonus-image-wrapper {
    max-width: 180px;
  }
  .bonus-content h3 {
    font-size: 1.2rem;
  }
  .bonus-content p {
    font-size: 0.9rem;
  }
}

@media (min-width: 576px) and (max-width: 767.98px) {
  #bonus-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-card {
    min-height: unset;
  }
}
