:root {
  --accent: #F5871F;
}

.accent {
  color: var(--accent) !important;
}

.plan-card {
  transition: box-shadow .25s ease, transform .25s ease;
  box-shadow: 0 .6rem 1.4rem rgba(0,0,0,.08);
  border-radius: 1rem;
}

.plan-card.featured {
  box-shadow: 0 1.2rem 2.4rem rgba(0,0,0,.14);
  transform: translateY(-4px);
}

.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 1.4rem 2.8rem rgba(0,0,0,.16);
}

@keyframes glowPulse {
  0%   { box-shadow: 0 .6rem 1.4rem rgba(0,0,0,.08), 0 0 0 0 rgba(245,135,31,0.0); transform: scale(1); }
  50%  { box-shadow: 0 1.4rem 2.4rem rgba(0,0,0,.16), 0 0 0 .25rem rgba(245,135,31,.35); transform: scale(1.02); }
  100% { box-shadow: 0 .6rem 1.4rem rgba(0,0,0,.08), 0 0 0 0 rgba(245,135,31,0.0); transform: scale(1); }
}
.glow-highlight {
  animation: glowPulse 1.2s ease-in-out 2;
}

/* Countdown soft pulse */
@keyframes softPulse {
  0% { transform: translateZ(0); box-shadow: 0 8px 24px rgba(245,135,31,0.10); }
  50% { box-shadow: 0 10px 28px rgba(245,135,31,0.18); }
  100% { transform: translateZ(0); box-shadow: 0 8px 24px rgba(245,135,31,0.10); }
}
.countdown-strip {
  animation: softPulse 2.2s ease-in-out infinite;
}

.time-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 68px;
  padding: 10px 12px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 .6rem 1.2rem rgba(0,0,0,.08);
  border: 1px solid var(--accent);
}
.time-value {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: .5px;
  line-height: 1;
}
.time-label {
  font-size: .875rem;
  color: #6b7280;
}
.colon {
  opacity: .5;
}

.testimonial-card {
  background-color: #ffffff;
  box-shadow: 0 1rem 2rem rgba(0,0,0,.08);
}

.faq-btn {
  background-color: #ffffff;
  border-left: 4px solid transparent;
  cursor: pointer;
}
.faq-btn[aria-expanded="true"] {
  background-color: rgba(245,135,31,0.10);
  border-left-color: var(--accent);
}
.faq-icon {
  transition: transform .2s ease;
}
.faq-btn[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.modal-overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.45);
  z-index: 1050;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-card {
  width: min(520px, 92vw);
}
.modal-overlay .btn.text-white,
.btn.text-white {
  background-color: var(--accent);
}

a.btn.text-white {
  background-color: var(--accent);
}

.small { font-size: .875rem; }
