/* ========================================
   Deck Page
   ======================================== */

/* Slides */
.deck-slides {
  background: #fff;
}

.deck-slides-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 24px 0;
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.deck-slides-inner img {
  width: 100%;
  display: block;
}

/* Pricing CTA */
.deck-pricing {
  padding: 100px 24px;
  text-align: center;
}

.deck-pricing-inner {
  max-width: 600px;
  margin: 0 auto;
}

.deck-pricing-intro {
  color: #888;
  line-height: 1.6;
  margin-bottom: 48px;
}

.deck-pricing-card {
  margin-bottom: 40px;
}

.deck-pricing-amount {
  font-size: 48px;
  font-weight: 700;
  color: #000;
  line-height: 1.2;
  margin-bottom: 24px;
}

.deck-pricing-button {
  display: inline-block;
  padding: 14px 40px;
  background: #000;
  color: #fff;
  border-radius: 100px;
  font-weight: 500;
  transition: opacity 0.2s ease;
}

.deck-pricing-button:hover {
  opacity: 0.85;
}

.deck-pricing-note {
  color: #888;
  line-height: 1.6;
  margin-bottom: 8px;
}

.deck-pricing-note strong {
  color: #000;
  font-weight: 700;
}

.deck-pricing-month {
  color: #888;
  margin-bottom: 48px;
}

.deck-pricing-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 48px;
}

.deck-link {
  color: #000;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.deck-link:hover {
  color: #555;
}

.deck-pricing-avatar {
  margin-bottom: 32px;
}

.deck-pricing-avatar img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto;
}

.deck-thankyou {
  font-weight: 700;
  color: #000;
  letter-spacing: 0.1em;
}

/* Form Section */
.deck-form-section {
  padding: 80px 24px 120px;
  border-top: 1px solid #eee;
}

.deck-form-inner {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
}

.deck-form-intro {
  font-weight: 700;
  color: #000;
  line-height: 1.5;
  margin-bottom: 12px;
}

.deck-form-sub {
  color: #888;
  margin-bottom: 16px;
}

.deck-whatsapp-link {
  display: inline-block;
  padding: 10px 32px;
  background: #25D366;
  color: #fff;
  border-radius: 100px;
  font-weight: 500;
  margin-bottom: 48px;
  transition: opacity 0.2s ease;
}

.deck-whatsapp-link:hover {
  opacity: 0.85;
}

/* Form */
.deck-form {
  text-align: left;
}

.deck-form-group {
  margin-bottom: 20px;
}

.deck-form-group label,
.deck-form-group legend {
  display: block;
  font-weight: 500;
  color: #000;
  margin-bottom: 8px;
}

.deck-form-group input[type="text"],
.deck-form-group input[type="email"],
.deck-form-group input[type="url"],
.deck-form-group select,
.deck-form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
  font-size: 15px;
  color: #000;
  background: #fff;
  transition: border-color 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}

.deck-form-group input:focus,
.deck-form-group select:focus,
.deck-form-group textarea:focus {
  outline: none;
  border-color: #000;
}

.deck-form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23999' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.deck-form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.deck-form-checkboxes {
  border: none;
  padding: 0;
}

.deck-form-checkboxes legend {
  font-weight: 500;
  color: #000;
  margin-bottom: 12px;
}

.deck-checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  cursor: pointer;
  font-weight: 400;
  color: #333;
}

.deck-checkbox-label:last-child {
  margin-bottom: 0;
}

.deck-checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  border: 1px solid #ddd;
  border-radius: 4px;
  cursor: pointer;
  accent-color: #000;
}

.deck-submit-button {
  display: block;
  width: 100%;
  padding: 14px 40px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 100px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.2s ease;
  margin-top: 32px;
}

.deck-submit-button:hover {
  opacity: 0.85;
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 768px) {
  .deck-slides-inner {
    padding: 20px 0 0;
  }

  .deck-pricing {
    padding: 80px 24px;
  }

  .deck-pricing-amount {
    font-size: 36px;
  }

  .deck-form-section {
    padding: 60px 24px 100px;
  }
}
