* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  font-family: Arial, Helvetica, sans-serif;
  background: linear-gradient(135deg, #0a1f6b 0%, #1046c9 35%, #0b2c8a 70%, #041338 100%);
  background-size: 200% 200%;
}

.card {
  position: relative;
  width: 100%;
  max-width: 680px;
  background: #ffffff;
  border-radius: 14px;
  padding: 56px 40px 34px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.badge {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: stretch;
  gap: 0;
  background: #ffffff;
  border: 2px solid #e2412a;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.badge-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  flex-shrink: 0;
  background: #e2412a;
  color: #fff;
}

.badge-icon::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 100%;
  width: 8px;
  background: #e2412a;
}

.badge-icon svg {
  width: 16px;
  height: 16px;
}

.badge-text {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: 10px 0 0 10px;
  padding: 6px 18px 6px 10px;
  color: #e2412a;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.main-text {
  color: #0b2c8a;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.2px;
  margin-top: 8px;
}

.services {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: 26px 0;
}

.service-item {
  position: relative;
  display: inline-flex;
  align-items: stretch;
  gap: 0;
  background: #ffffff;
  border: 2px solid #1150d8;
  color: #0b2c8a;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.3px;
  padding: 0 20px 0 0;
  border-radius: 10px;
  overflow: hidden;
}

.check {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  flex-shrink: 0;
  background: #1150d8;
  color: #ffffff;
}

.check svg {
  width: 16px;
  height: 16px;
}

.check::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 100%;
  width: 10px;
  background: #1150d8;
}

.service-item span:last-child {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: 10px 0 0 10px;
  padding: 8px 0 8px 14px;
}

.cta-text {
  color: #0b2c8a;
  font-weight: 800;
  font-size: 17px;
  line-height: 1.5;
  margin-bottom: 22px;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #1150d8;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  padding: 12px 30px;
  border-radius: 8px;
  transition: background-color 0.2s ease, transform 0.15s ease;
}

.whatsapp-btn:hover {
  background: #0d3fb0;
  transform: translateY(-2px);
}

.whatsapp-btn:active {
  transform: translateY(0);
}

.wa-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .card {
    padding: 48px 20px 28px;
  }

  .main-text {
    font-size: 14px;
  }

  .service-item {
    font-size: 13px;
    padding: 0 14px 0 0;
  }

  .cta-text {
    font-size: 15px;
  }

  .whatsapp-btn {
    font-size: 14px;
    padding: 11px 22px;
  }
}
