@import url('https://fonts.googleapis.com/css2?family=Righteous&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap');


/* Section styling */
.subscription-section {
  text-align: center;
  position: relative;
  overflow: hidden;
  background: white;
}

.subscription-section h2 {
  font-size: 56px;
  margin: 0;
  color: #222;
  font-weight: 400;
  font-family: 'Righteous';
}

.subscription-section .description {
  max-width: 600px;
  margin: 0 auto 40px;
  color: #555;
  font-size: 16px;
  font-weight: 400;
  font-family: 'DM Sans';
}

/* Card container */
.subscription-cards {
  display: flex;
  justify-content: center;
  gap: 40px;
  position: relative;
  z-index: 2;
}

/* Shared card style */
.card {
  background: linear-gradient(180deg, #FFFFFF 0%, #F7F7F7 100%);
  border: 1px solid #eee;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  padding: 30px 25px;
  width: 300px;
  text-align: center;
  transition: transform 0.3s ease;
}

.card-icon {
  display: block;
  margin: 0 auto 15px;
  width: 48px;
  height: 48px;
}

/* Headings & price styling */
.card h3 {
  font-size: 22px;
  color: #222;
  font-weight: 400;
  font-family: 'Righteous';
  margin: 0 !important;
}

.card .subtitle {
  font-size: 14px;
  color: #777;
  margin-bottom: 8px;
  font-weight: 500;
  font-family: 'DM Sans';
  margin: 0 !important;
}

.card .price {
  font-weight: bold;
  color: #444;
  font-size: 14px;
  margin-bottom: 20px;
  font-weight: 700;
  font-family: 'DM Sans';
}

/* Feature list */
.card ul {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  text-align: left;
}

.card ul li {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #EBEBEB;
}

.card ul li:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.card ul li img {
  width: 30px;
  height: 30px;
  padding: 15px;
  background: #FFF3F3;
  border-radius: 50%;
}

.card ul li div {
  display: flex;
  flex-direction: column;
}

.card ul li div strong {
  font-size: 14px;
  color: #222;
  margin-bottom: 4px;
}

.card ul li div p {
  margin: 0;
  font-size: 12px;
  font-family: DM Sans;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 2%;
  vertical-align: middle;
  color: #000000
}

/* Doodle background */
.card-wrapper {
  position: relative;
  display: inline-block;
}

.background-doodle {
  position: absolute;
    top: -80px;
    right: -80px;
  width: 200px;
  height: auto;
  z-index: 0;
  pointer-events: none;
}

/* Premium card override */
.premium-card {
  position: relative;
  background: linear-gradient(180deg, #FFFFFF 0%, #F7F7F7 100%);
  padding: 30px 25px;
  width: 300px;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  z-index: 1;
  text-align: center;
}



/* Responsive behavior */
@media (max-width: 768px) {
    .subscription-header {
    font-size: 28px !important;
  }
  .subscription-cards {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .background-doodle {
    display: none;
  }

  .card,
  .premium-card {
    margin-bottom: 20px;
  }
}
