/* ===== PRICING PAGE LAYOUT ===== */
.pricing-page {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  font-family: 'Inter', sans-serif;
  text-align: center;
}

.section-title {
  font-size: 32px;
  color: #DA2F47;
  font-family: 'Lato', sans-serif;
  font-weight: 600;
}

.section-subtitle {
  font-size: 16px;
  color: #000000;
  margin-bottom: 40px;
  font-weight: 500;
  font-family: 'lato',sans-serif;
}

/* ===== TOGGLE SWITCH ===== */
.toggle-container {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}

.toggle-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 16px;
  user-select: none;
}

.toggle-label input {
  display: none;
}

.toggle-slider {
  width: 50px;
  height: 26px;
  background-color: #ccc;
  border-radius: 30px;
  position: relative;
  cursor: pointer;
}

.toggle-slider::before {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  background-color: white;
  border-radius: 50%;
  top: 2px;
  left: 2px;
  transition: all 0.3s ease;
}

.toggle-label input:checked+.toggle-slider::before {
  transform: translateX(24px);
}

.toggle-label input:checked+.toggle-slider {
  background-color: #DA2F47;
}

/* ===== PRICING CARDS CONTAINER ===== */
.pricing-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

/* ===== FLIP CARD STRUCTURE ===== */
.pricing-card {
  width: 347px;
  height: 506px;
  perspective: 1200px;
}

.flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s ease;
  transform-style: preserve-3d;
}

.flip-inner.flipped {
  transform: rotateY(180deg);
}

.flip-face {
  position: absolute;
  width: 100%;
  height: 100%;
  /* backface-visibility: hidden; */
  background: #f7f8fc;
  border-radius: 15px;
  /* box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08); */
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  box-sizing: border-box;
}

.flip-front {
  z-index: 2;
}

.flip-back {
  transform: rotateY(180deg);
}

/* ===== CARD CONTENT ===== */
.flip-face h3 {
  font-size: 24px;
  margin-bottom: 10px;
  font-family: 'Lato', sans-serif;
  font-weight: 600;

}

.flip-face .price {
  font-size: 28px;
  font-weight: bold;
  color: #222;
  margin-bottom: 12px;
}

.per-month,.per-year {
  font-size: 24px;
  font-weight: 500;
  font-family: 'lato', sans-serif;
  margin-left: 4px;
}


.flip-face p {
  font-size: 16px;
  color: #000000;
  margin-bottom: 20px;
  text-align: center;
  font-family: 'Lato',sans-serif;
  font-weight: 500;
}

.flip-face ul {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  text-align: left;
  width: 100%;
}

.flip-face ul li {
  padding: 6px 0;
  font-size: 16px;
  color: #000000;
  font-weight: 500;
  font-family: 'lato',sans-serif;

}

/* ===== BUTTON ===== */
.get-started-btn {
  display: inline-block;
  background-color: #DA2F47;
  color: #fff;
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  margin-top: auto;
  transition: background-color 0.3s ease;
}

.get-started-btn:hover {
  background-color: #b6243a;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .pricing-cards {
    flex-direction: column;
    align-items: center;
  }

  .pricing-card {
    width: 90%;
  }
}

/* Zoom effect on card hover */
.pricing-card:hover .flip-inner {
  transform: scale(1.05);
}

/* Maintain flip + hover scaling */
.flip-inner {
   transition: transform 0.8s ease;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0); /* Prevent blur */
}

.flip-inner.flipped {
  transform: rotateY(180deg);
}

/* Combine both when flipped & hovered */
.pricing-card:hover .flip-inner.flipped {
  transform: rotateY(180deg) scale(1.05);
}


.list-icon {
  width: 18px;
  height: 18px;
  margin-right: 2px;
  vertical-align: middle;
}
li {
  list-style: none;
}
