
:root {
  --brand-black: #000000;
  --brand-white: #ffffff;
  --brand-red: #0C5ADB;
  --text-gray: #545454;
  --dark-bg: #111111;
  --light-gray-bg: #f7f7f7;
  --radius-md: 16px;
  --radius-sm: 10px;
  --soft-shadow: 0 8px 20px rgba(0,0,0,0.08);
  --smooth-transition: all 0.3s ease;
}

/* Final Compact Premium CTA Section | Height ~350px */
.final-premium-cta {
  width: 100%;
  background: var(--dark-bg);
  padding: 60px 20px;
  max-height: 350px;
  display: flex;
  align-items: center;
}

.cta-container {
  max-width: 1460px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.cta-container h2 {
  color: var(--brand-white);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
}

.cta-container p {
  color: #cccccc;
  font-size: 16px;
  max-width: 800px;
  margin: 0 auto 24px;
  line-height: 1.6;
}

.cta-badges-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.cta-badge {
  color: #ffffff;
  font-size: 14px;
  padding: 6px 16px;
  border: 1px solid #333333;
  border-radius: 999px;
}

.cta-buttons-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.cta-red-main {
  background: var(--brand-red);
  color: #fff;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  text-decoration: none;
  transition: var(--smooth-transition);
}

.cta-red-main:hover {
  background: #4787F1;
  transform: translateY(-2px);
}

.cta-white-outline {
  border: 1px solid #fff;
  color: #fff;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  text-decoration: none;
  transition: var(--smooth-transition);
}

.cta-white-outline:hover {
  background: #fff;
  color: #000;
}
.cta-green-outline {
  border: 1px solid #fff;
  color: #fff;
  background: #25D366;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  text-decoration: none;
  transition: var(--smooth-transition);
}

.cta-green-outline:hover {
  background: #fff;
  color: #000;
}

@media (max-width: 768px) {
  .final-premium-cta {
    max-height: unset;
    padding: 40px 16px;
  }
  .cta-container h2 {
    font-size: 26px;
  }
  .cta-buttons-row {
    flex-direction: column;
  }
  .cta-red-main, .cta-white-outline {
    width: 100%;
    text-align: center;
  }
}
