.zc-landing {
  font-family: inherit;
  color: #222;
  line-height: 1.7;
  max-width: 1200px;
  margin: 0 auto;
}

.zc-section {
  padding: 70px 25px;
  text-align: center;
}
.zc-section h2 {
  font-size: 38px;
  margin-bottom: 25px;
  color: #222;
}

.zc-hero {
  padding: 70px 25px;
  text-align: center;
  background: linear-gradient(135deg, #f7fbf3 0%, #ffffff 70%);
  border-radius: 30px;
  margin-top: 30px;
}
.zc-hero h1 {
  font-size: 52px;
  line-height: 1.2;
  margin-bottom: 25px;
}

.zc-final-offer {
  padding: 70px 25px;
  text-align: center;
  background: linear-gradient(135deg, #f7fbf3, #fff5f8);
  border-radius: 30px;
}
.zc-final-offer h2 {
  font-size: 38px;
  margin-bottom: 25px;
  color: #222;
}

.zc-order {
  padding: 70px 25px;
  text-align: center;
}
.zc-order h2 {
  font-size: 38px;
  margin-bottom: 25px;
  color: #222;
}

.zc-thanks {
  padding: 70px 25px;
  text-align: center;
  padding-bottom: 100px;
}
.zc-thanks h2 {
  font-size: 38px;
  margin-bottom: 25px;
  color: #222;
}

.zc-badge {
  display: inline-block;
  background: #7DBB3A;
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 700;
  margin-bottom: 25px;
}

.zc-green {
  color: #7DBB3A;
}

.zc-pink {
  color: #E64D8A;
}

.zc-subtitle {
  font-size: 22px;
  max-width: 750px;
  margin: 0 auto 40px;
}

.zc-old-price {
  text-decoration: line-through;
  color: #777;
  font-size: 24px;
}

.zc-old {
  text-decoration: line-through;
  color: #777;
  font-size: 24px;
}

.zc-order-old {
  text-decoration: line-through;
  color: #777;
  font-size: 24px;
}

.zc-new-price {
  font-size: 60px;
  font-weight: 800;
  color: #7DBB3A;
}

.zc-new {
  font-size: 60px;
  font-weight: 800;
  color: #7DBB3A;
}

.zc-order-new {
  font-size: 60px;
  font-weight: 800;
  color: #7DBB3A;
}

.zc-save {
  color: #E64D8A;
  font-weight: 600;
}

.zc-price {
  margin: 25px 0 40px;
}

.zc-price-large {
  margin: 25px 0 40px;
}

.zc-order-price {
  margin: 25px 0 40px;
}

.zc-button {
  display: inline-block;
  background: #7DBB3A;
  color: white !important;
  padding: 18px 40px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  transition: 0.3s;
}
.zc-button:hover {
  background: #5f9628;
  transform: translateY(-3px);
}

.zc-benefits {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 35px;
  flex-wrap: wrap;
}

.zc-benefit {
  background: white;
  padding: 12px 20px;
  border-radius: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.zc-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
  margin-top: 40px;
  text-align: left;
}

.zc-card {
  background: white;
  padding: 35px;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}
.zc-card:hover {
  transform: translateY(-8px);
}
.zc-card ul {
  padding-left: 20px;
  list-style: initial;
  margin-top: 20px;
}
.zc-card li {
  margin-bottom: 15px;
}
.zc-card .text-center {
  text-align: center;
}

.zc-card-green {
  border-top: 8px solid #7DBB3A;
}

.zc-card-pink {
  border-top: 8px solid #E64D8A;
}

.zc-card-title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 20px;
}

.zc-offer-text {
  font-size: 24px;
  margin-bottom: 25px;
}

.zc-faq {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.zc-faq-item {
  margin-bottom: 15px;
  background: white;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.zc-faq-question {
  background: none;
  border: none;
  padding: 22px 25px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
}

.zc-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: 0.4s;
  padding: 0 25px;
}

.zc-faq-item.active .zc-faq-answer {
  max-height: 250px;
  padding: 0 25px 25px;
}

.zc-fapi-box {
  background: #ffffff;
  padding: 30px;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  margin-top: 30px;
}

.zc-fapi-placeholder {
  color: #888;
  font-style: italic;
}

@media (max-width: 768px) {
  .zc-hero {
    padding-left: 0px;
    padding-right: 0px;
    padding: 40px 25px;
  }
  .zc-hero h1 {
    font-size: 34px;
  }
  .zc-section,
  .zc-order {
    padding: 40px 0px 40px 0px;
  }
  .zc-section h2,
  .zc-order h2 {
    font-size: 30px;
  }
  .zc-final-offer h2 {
    font-size: 30px;
  }
  .zc-thanks {
    padding-bottom: 0;
  }
  .zc-thanks h2 {
    font-size: 30px;
  }
  .zc-subtitle {
    font-size: 18px;
  }
  .zc-new-price {
    font-size: 44px;
  }
  .zc-new {
    font-size: 44px;
  }
  .zc-order-new {
    font-size: 44px;
  }
  .zc-cards {
    grid-template-columns: 1fr;
  }
  .zc-button {
    width: 100%;
    box-sizing: border-box;
    padding: 20px;
  }
  .zc-benefit {
    width: 100%;
  }
}