/* =========================================
   SUBSCRIBE PAGE — ISLAMIC PREMIUM
   Trust • Calm • Value-focused • Respectful
========================================= */

/* Page layout */
.subscribe-container {
  max-width: 560px;
  margin: 64px auto;
  padding: 32px 26px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

/* -------------------------------
   Heading
-------------------------------- */
.subscribe-container h1 {
  font-size: 28px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 6px;
}

.subscribe-container .subtitle {
  text-align: center;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 26px;
}

/* -------------------------------
   Benefits List
-------------------------------- */
.benefits {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}

.benefit {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.6;
}

.benefit span {
  color: var(--accent);
  font-weight: 600;
}

/* -------------------------------
   Price Box
-------------------------------- */
.price-box {
  margin: 22px 0;
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(16,185,129,0.12),
    rgba(16,185,129,0.05)
  );
  text-align: center;
}

.price-box .price {
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
}

.price-box .period {
  font-size: 14px;
  color: var(--muted);
}

/* -------------------------------
   Subscribe Button
-------------------------------- */
.subscribe-container button {
  width: 100%;
  margin-top: 18px;
  padding: 14px 18px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 16px;
}

/* -------------------------------
   Trust Note
-------------------------------- */
.trust-note {
  margin-top: 18px;
  font-size: 13px;
  text-align: center;
  color: var(--muted);
}

/* -------------------------------
   Already Subscribed
-------------------------------- */
.subscribed-box {
  padding: 20px;
  border-radius: 16px;
  background: rgba(16,185,129,0.12);
  text-align: center;
  font-size: 15px;
  color: var(--accent);
  font-weight: 500;
}

/* -------------------------------
   Mobile Adjustments
-------------------------------- */
@media (max-width: 480px) {
  .subscribe-container {
    margin: 40px 16px;
    padding: 26px 20px;
  }

  .subscribe-container h1 {
    font-size: 24px;
  }

  .price-box .price {
    font-size: 28px;
  }
}
