/* stylenew.css — phase2-explainer section only — all classes prefixed pe- */

/* ── SECTION WRAPPER ── */
#phase2-explainer {
  background: #f4f3ff;
  padding: 70px 40px;
}
.pe-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.pe-section-title {
  font-size: 28px;
  font-weight: 800;
  color: #3d2f8f;
  margin-bottom: 8px;
  text-align: center;
}
.pe-section-sub {
  text-align: center;
  color: #666;
  font-size: 15px;
  margin-bottom: 30px;
}

/* ── COUNTDOWN ── */
.pe-countdown-wrap { text-align: center; }
.pe-countdown {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.pe-countdown-box {
  background: #3d2f8f;
  color: #fff;
  border-radius: 14px;
  padding: 22px 30px;
  min-width: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 16px rgba(61,47,143,0.25);
}
.pe-countdown-box span {
  font-size: 50px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -1px;
}
.pe-countdown-box label {
  font-size: 12px;
  font-weight: 700;
  margin-top: 8px;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ── PENALTY BANNER ── */
.pe-penalty-wrap {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(185,28,28,0.15);
}
.pe-penalty-header {
  background: linear-gradient(135deg, #b91c1c 0%, #d97706 100%);
  color: #fff;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.pe-penalty-header h3 {
  font-size: 20px;
  font-weight: 800;
  flex: 1;
  margin: 0;
}
.pe-penalty-badge {
  font-size: 12px;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 20px;
  padding: 5px 14px;
  font-weight: 600;
  white-space: nowrap;
}
.pe-penalty-body {
  background: #fff;
  border: 2px solid #fca5a5;
  border-top: none;
  border-radius: 0 0 14px 14px;
  padding: 28px;
}
.pe-penalty-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
}
.pe-penalty-card {
  background: #fff5f5;
  border: 1.5px solid #fca5a5;
  border-radius: 10px;
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.pe-penalty-icon {
  font-size: 24px;
  margin-top: 2px;
  flex-shrink: 0;
}
.pe-penalty-text h4 {
  font-size: 14px;
  font-weight: 700;
  color: #991b1b;
  margin: 0 0 5px 0;
}
.pe-penalty-text p {
  font-size: 13px;
  color: #555;
  line-height: 1.55;
  margin: 0;
}
.pe-penalty-amount {
  font-size: 17px;
  font-weight: 800;
  color: #b91c1c;
  margin-top: 8px;
}
.pe-penalty-note {
  background: #fff7ed;
  border: 1.5px solid #fed7aa;
  border-radius: 8px;
  padding: 14px 18px;
  margin-top: 20px;
  font-size: 13px;
  color: #92400e;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* ── FAQ ACCORDION ── */
.pe-faq-wrap {}
.pe-faq-item {
  border: 1.5px solid #e2dfff;
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
  background: #fff;
}
.pe-faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 18px 22px;
  font-size: 15px;
  font-weight: 700;
  color: #3d2f8f;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background 0.15s;
}
.pe-faq-q:hover { background: #f4f3ff; }
.pe-faq-chevron {
  font-size: 18px;
  transition: transform 0.25s;
  flex-shrink: 0;
  color: #7968c7;
}
.pe-faq-item.open .pe-faq-chevron { transform: rotate(180deg); }
.pe-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s;
  font-size: 14px;
  color: #444;
  line-height: 1.75;
  padding: 0 22px;
}
.pe-faq-item.open .pe-faq-a {
  max-height: 320px;
  padding: 0 22px 20px;
}

/* ── WHATSAPP FLOATING BUTTON ── */
.pe-wa-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  text-decoration: none;
  z-index: 9999;
  transition: transform 0.2s, box-shadow 0.2s;
}
.pe-wa-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 26px rgba(37,211,102,0.65);
}

/* ── RTL SUPPORT ── */
[dir="rtl"] .pe-faq-q { text-align: right; flex-direction: row-reverse; }
[dir="rtl"] .pe-penalty-card { flex-direction: row-reverse; text-align: right; }
[dir="rtl"] .pe-penalty-header { flex-direction: row-reverse; }
[dir="rtl"] .pe-wa-btn { right: auto; left: 28px; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  #phase2-explainer { padding: 50px 20px; }
  .pe-section-title { font-size: 22px; }
  .pe-countdown-box { min-width: 72px; padding: 16px 12px; }
  .pe-countdown-box span { font-size: 36px; }
  .pe-countdown { gap: 10px; }
  .pe-penalty-grid { grid-template-columns: 1fr; }
  .pe-penalty-body { padding: 18px; }
  .pe-wa-btn { bottom: 18px; right: 18px; width: 54px; height: 54px; font-size: 26px; }
  [dir="rtl"] .pe-wa-btn { left: 18px; right: auto; }
}
