/* ===== SUBSCRIBE PAGE STYLES ===== */

/* Trust Banner */
.trust-banner {
  background: var(--accent-bg);
  border-bottom: 1px solid rgba(139, 0, 0, 0.12);
}
.trust-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 3rem;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: var(--fg-muted);
}
.trust-banner__inner svg {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 1px;
}
.trust-banner__inner a {
  color: var(--accent);
  text-decoration: underline;
}

/* Subscribe Hero */
.sub-hero {
  padding: 5rem 3rem 4rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.sub-hero__eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.sub-hero__headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}
.sub-hero__headline em {
  font-style: italic;
  color: var(--accent);
}
.sub-hero__sub {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* Pricing Section */
.pricing {
  padding: 3rem 1.5rem 5rem;
}
.pricing__inner {
  max-width: 860px;
  margin: 0 auto;
}
.pricing__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

/* Checkout Flash */
.checkout-flash {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.25rem 1.5rem;
  border-radius: 4px;
  margin-bottom: 2.5rem;
  font-size: 0.9rem;
}
.checkout-flash svg { flex-shrink: 0; margin-top: 2px; }
.checkout-flash div { display: flex; flex-direction: column; gap: 0.2rem; }
.checkout-flash strong { font-weight: 600; }
.checkout-flash span { color: var(--fg-muted); }
.checkout-flash--success {
  background: #f0faf4;
  border: 1px solid #b8e8c8;
  color: #1a5c2a;
}
.checkout-flash--success svg { stroke: #1a5c2a; }
.checkout-flash--info {
  background: var(--accent-bg);
  border: 1px solid rgba(139, 0, 0, 0.15);
  color: var(--fg);
}
.checkout-flash--info svg { stroke: var(--accent); }

/* Plan Card */
.plan-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 6px;
  padding: 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.plan-card--featured {
  border-color: var(--accent);
  background: #fdf9f7;
}
.plan-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  white-space: nowrap;
}
.plan-card__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}
.plan-card__tier {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--fg);
}
.plan-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
}
.plan-card__amount {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--fg);
}
.plan-card__per {
  font-size: 0.8rem;
  color: var(--fg-muted);
}
.plan-card__tagline {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.plan-card__features {
  list-style: none;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}
.plan-card__features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--fg);
}
.plan-card__features svg { stroke: #2a9d5c; flex-shrink: 0; }
.plan-card__feature--na {
  color: var(--fg-muted) !important;
}
.plan-card__feature--na svg { stroke: var(--fg-muted) !important; }

/* Form Styles */
.plan-card__form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: auto;
}
.form-field input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  background: var(--bg);
  color: var(--fg);
  transition: border-color 0.2s;
}
.form-field input:focus {
  outline: none;
  border-color: var(--accent);
}
.form-field input::placeholder { color: var(--fg-muted); }

.form-note {
  font-size: 0.75rem;
  color: var(--fg-muted);
  text-align: center;
}

/* Buttons */
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background 0.2s, transform 0.1s;
  text-decoration: none;
}
.btn:active { transform: scale(0.98); }
.btn--primary {
  background: var(--accent);
  color: #fff;
}
.btn--primary:hover { background: var(--accent-light); }
.btn--outline {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}
.btn--outline:hover { background: var(--accent-bg); }
.btn:disabled { opacity: 0.6; cursor: not-allowed; }

.plan-card__success {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: #1a5c2a;
  background: #f0faf4;
  border: 1px solid #b8e8c8;
  border-radius: 4px;
  padding: 1rem;
  margin-top: auto;
}
.plan-card__success svg { stroke: #1a5c2a; flex-shrink: 0; }

/* How It Works */
.how-it-works {
  background: var(--bg-alt);
  padding: 5rem 3rem;
  border-top: 1px solid var(--border);
}
.how-it-works__inner {
  max-width: 900px;
  margin: 0 auto;
}
.how-it-works__header {
  margin-bottom: 3rem;
}
.how-it-works__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 900;
  color: var(--fg);
  letter-spacing: -0.02em;
  margin-top: 0.5rem;
}
.step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.step__num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.step__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.75rem;
}
.step__desc {
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--fg-muted);
}
.ai-disclosure {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--accent-bg);
  border-radius: 4px;
  border: 1px solid rgba(139, 0, 0, 0.1);
  font-size: 0.82rem;
  color: var(--fg-muted);
}
.ai-disclosure svg { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.ai-disclosure a { color: var(--accent); }

/* Responsive */
@media (max-width: 700px) {
  .pricing__grid { grid-template-columns: 1fr; }
  .step-grid { grid-template-columns: 1fr; gap: 2rem; }
  .sub-hero { padding: 3rem 1.5rem 2rem; }
  .trust-banner__inner { padding: 0.75rem 1.5rem; }
  .how-it-works { padding: 3rem 1.5rem; }
}