/* ═══════════════════════════════════════════════════════════
   MARCIANUS PAGES EXTRA — Pricing + About
   Extends app.css / v3.css without modifying them
═══════════════════════════════════════════════════════════ */

/* ─── Pricing ───────────────────────────────────────────── */
.pricing-toggle {
  display: flex; align-items: center; gap: 14px; justify-content: center;
  margin: 32px auto 48px; font-family: var(--font-mono); font-size: 13px; font-weight: 700;
  color: var(--text-2); letter-spacing: 0.08em;
}
.pricing-toggle .active { color: #fff; }

.toggle-switch {
  position: relative; width: 44px; height: 24px; border-radius: 12px;
  background: var(--surface-3); border: 1px solid var(--border-2);
  cursor: pointer; transition: background 200ms;
}
.toggle-switch.on { background: var(--purple); border-color: rgba(123,97,255,0.5); }
.toggle-thumb {
  position: absolute; top: 3px; left: 3px;
  width: 16px; height: 16px; border-radius: 8px;
  background: var(--text-2); transition: all 200ms cubic-bezier(0.16,1,0.3,1);
}
.toggle-switch.on .toggle-thumb { left: 23px; background: #fff; }

.save-badge {
  padding: 2px 7px; border-radius: 6px;
  background: rgba(0,196,140,0.14); color: var(--success);
  border: 1px solid rgba(0,196,140,0.30);
  font-size: 10px; font-weight: 800; letter-spacing: 0.06em;
  margin-left: 6px;
}

.plans-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  margin-bottom: 32px;
}
@media (max-width: 1200px) { .plans-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 680px)  { .plans-grid { grid-template-columns: 1fr; } }

.plan-card {
  position: relative; background: var(--surface-2);
  border: 1px solid var(--border-1); border-radius: 20px;
  padding: 28px; display: flex; flex-direction: column; gap: 20px;
  transition: 300ms cubic-bezier(0.16,1,0.3,1);
}
.plan-card:hover { border-color: var(--border-2); transform: translateY(-4px); box-shadow: 0 24px 60px rgba(0,0,0,0.4); }

.plan-popular {
  border-color: var(--border-purple);
  background: linear-gradient(180deg, rgba(123,97,255,0.07), var(--surface-2));
  box-shadow: 0 0 0 1px rgba(123,97,255,0.20), 0 24px 60px rgba(0,0,0,0.3);
}
.plan-diamond {
  border-color: rgba(255,215,0,0.35);
  background: linear-gradient(180deg, rgba(255,215,0,0.05), var(--surface-2));
  box-shadow: 0 0 0 1px rgba(255,215,0,0.20), 0 24px 60px rgba(0,0,0,0.3);
}

.plan-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  padding: 4px 14px; border-radius: 999px;
  font-family: var(--font-mono); font-size: 10px; font-weight: 800;
  letter-spacing: 0.16em; text-transform: uppercase; white-space: nowrap;
}
.plan-badge.purple { background: var(--purple); color: #fff; }
.plan-badge.gold   { background: var(--gold); color: #0B0F1A; }
.plan-badge        { background: var(--surface-3); border: 1px solid var(--border-2); color: var(--text-1); }

.plan-header { display: flex; flex-direction: column; gap: 6px; }
.plan-name { font-family: var(--font-display); font-weight: 900; font-size: 22px; letter-spacing: -0.02em; color: #fff; }
.plan-tagline { font-size: 13px; color: var(--text-2); line-height: 1.45; }

.plan-price { display: flex; align-items: baseline; gap: 4px; flex-wrap: wrap; }
.price-amount { font-family: var(--font-mono); font-weight: 900; font-size: 36px; color: #fff; letter-spacing: -0.03em; }
.price-period { font-family: var(--font-mono); font-size: 13px; color: var(--text-3); font-weight: 600; }
.price-note { font-family: var(--font-mono); font-size: 10px; color: var(--text-3); letter-spacing: 0.10em; width: 100%; margin-top: 4px; }
.price-custom { font-family: var(--font-mono); font-weight: 800; font-size: 22px; color: var(--text-1); }

.plan-cta { width: 100%; justify-content: center; }

.plan-features { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
.plan-feature {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; line-height: 1.4;
}
.plan-feature.on  { color: var(--text-1); }
.plan-feature.off { color: var(--text-3); }
.plan-feature span { flex: 1; }

.pricing-note {
  display: flex; align-items: center; gap: 10px; justify-content: center;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.10em;
  text-transform: uppercase; color: var(--text-3); font-weight: 700;
  padding: 14px 20px; border-radius: 10px;
  background: rgba(0,196,140,0.06); border: 1px solid rgba(0,196,140,0.18);
  margin-bottom: 72px;
}

.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 32px; }
@media (max-width: 720px) { .faq-grid { grid-template-columns: 1fr; } }

.faq-item {
  padding: 22px 24px; border-radius: 14px;
  background: var(--surface-2); border: 1px solid var(--border-1);
  transition: 250ms;
}
.faq-item:hover { border-color: var(--border-purple); }
.faq-q {
  display: flex; align-items: flex-start; gap: 10px;
  font-family: var(--font-heading); font-weight: 700; font-size: 15px;
  color: #fff; margin-bottom: 10px; line-height: 1.3;
}
.faq-a { font-size: 13px; color: var(--text-2); line-height: 1.6; }

.pricing-cta-band {
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  flex-wrap: wrap; margin-top: 64px; padding: 40px 44px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(123,97,255,0.10), rgba(0,209,255,0.06));
  border: 1px solid var(--border-purple);
}
.pricing-cta-band h3 { font-size: clamp(1.25rem, 2vw, 1.75rem); font-weight: 900; color: #fff; margin-bottom: 8px; }
.pricing-cta-band p { font-size: 14px; color: var(--text-2); }

/* ─── About ─────────────────────────────────────────────── */
.about-stats-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 1px;
  background: var(--border-1); padding: 0;
}
@media (max-width: 1080px) { .about-stats-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px)  { .about-stats-grid { grid-template-columns: repeat(2, 1fr); } }

.about-stat {
  padding: 28px 24px; background: var(--surface-1);
  transition: background 200ms;
}
.about-stat:hover { background: rgba(123,97,255,0.06); }
.about-stat-v { font-family: var(--font-mono); font-weight: 900; font-size: 28px; letter-spacing: -0.02em; color: #fff; margin-bottom: 6px; }
.about-stat-l { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-3); font-weight: 700; }

/* Timeline */
.about-timeline {
  position: relative; padding-left: 28px;
  border-left: 2px solid var(--border-1);
  display: flex; flex-direction: column; gap: 32px;
}
.timeline-step { position: relative; }
.ts-dot {
  position: absolute; left: -37px; top: 6px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--purple); border: 2px solid var(--bg-1, #050508);
  box-shadow: 0 0 10px rgba(123,97,255,0.5);
}
.ts-meta {
  display: flex; align-items: center; gap: 10px; margin-bottom: 8px;
}
.ts-year {
  font-family: var(--font-mono); font-size: 11px; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--purple-soft);
}
.ts-event { font-size: 14px; color: var(--text-1); line-height: 1.55; }

/* Team avatar */
.team-av {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--purple), var(--purple-deep));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 900; font-size: 16px;
  letter-spacing: -0.02em; border: 1px solid var(--border-purple);
}

/* Mobile nav menu */
.mobile-menu {
  display: flex; flex-direction: column; gap: 4px;
  padding: 12px 16px 16px;
  background: rgba(5,5,8,0.95); backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-1); animation: fadeUp 200ms ease-out;
}
@media (max-width: 1080px) {
  .mobile-menu-btn { display: flex !important; }
  .nav-mid { display: none !important; }
}
