
body {
  margin: 0;
  font-family: system-ui, -apple-system, sans-serif;
  background: linear-gradient(to bottom, #fff0f5, #ffe4e1);
  min-height: 100vh;
}

.sab-page {
  padding: 140px 20px 100px;
  max-width: 1100px;
  margin: 0 auto;
}

h1 {
  text-align: center;
  color: #444;
  margin-bottom: 60px;
  font-size: 2.5rem;
}

h2 {
  text-align: center;
  color: #333;
  font-size: 2rem;
  margin: 80px 0 40px;
}

.lead {
  text-align: center;
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 60px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}


.security-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.security-card {
  background: white;
  border-radius: 16px;
  padding: 32px 28px;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  position: relative;
  transition: all 0.25s;
  overflow: hidden; 
}

.security-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.14);
}

.security-card.recommended {
  border: 2px solid #e91e63;
}


.backup-section {
  margin-top: 120px;
}

.backup-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.backup-card {
  background: white;
  border-radius: 16px;
  padding: 32px 28px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  position: relative;
  transition: all 0.25s;
  overflow: hidden; 
}

.backup-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.14);
}

.backup-card.recommended {
  border: 2px solid #e91e63;
}


.ribbon {
  position: absolute;
  top: 12px;
  right: -38px;
  background: #e91e63;
  color: white;
  font-size: 0.9rem;
  font-weight: bold;
  padding: 6px 60px;
  transform: rotate(45deg);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  z-index: 10;
  white-space: nowrap;
}


.security-card h3,
.backup-card h3 {
  font-size: 1.8rem;
  margin: 0 0 16px;
  color: #222;
  text-align: center;
}

.price {
  font-size: 1.9rem;
  font-weight: bold;
  color: #e91e63;
  text-align: center;
  margin: 12px 0 20px;
}

.security-card .desc,
.backup-card .desc {
  text-align: center;
  color: #666;
  font-size: 1rem;
  margin-bottom: 24px;
}

.backup-card .desc {
  color: #555;
  font-size: 1.05rem;
  font-weight: 500;
}

.features {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.security-card .features li {
  margin-bottom: 12px;
  padding-left: 28px;
  position: relative;
  color: #444;
  font-size: 0.98rem;
}

.backup-card .features li {
  margin-bottom: 14px;
  padding-left: 32px;
  position: relative;
  color: #333;
  font-size: 1.02rem;
  line-height: 1.5;
}

.features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #4caf50;
  font-weight: bold;
}

.backup-card .features li::before {
  top: 2px;
  font-size: 1.3rem;
}


@media (max-width: 900px) {
  .security-cards,
  .backup-cards {
    flex-direction: column;
    align-items: center;
  }
  .sab-page {
    padding: 120px 16px 80px;
  }
}