/* VEP Pricing Page */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  color-scheme: dark;
  --bg: #060608;
  --line: rgba(255,255,255,0.08);
  --line-bright: rgba(255,255,255,0.2);
  --accent: #5b8def;
  --accent-glow: rgba(91,141,239,0.4);
  --surface: rgba(255,255,255,0.03);
  --text: #f1f5f9;
  --text2: rgba(255,255,255,0.70);
  --text3: rgba(255,255,255,0.58);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html, body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ─── TOPBAR ─── */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 44px;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6,6,8,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.topbar-left { display: flex; align-items: center; gap: 8px; }
.brand { font-size: 22px; font-weight: 700; letter-spacing: 4px; color: var(--text); text-decoration: none; }
.brand-sep { color: var(--text3); font-weight: 300; font-size: 18px; }
.brand-sub { font-size: 12px; color: #94a3b8; letter-spacing: 1.5px; text-transform: uppercase; }
.topbar-right { display: flex; align-items: center; gap: 16px; }
.topbar-link { font-size: 13px; color: var(--text2); letter-spacing: 0.5px; transition: color 0.2s; text-decoration: none; }
.topbar-link:hover { color: var(--text); }
.topbar-login {
  font-size: 12px; color: var(--text); border: 1px solid var(--line-bright);
  padding: 6px 16px; border-radius: 6px; text-decoration: none; font-weight: 500;
  letter-spacing: 0.3px; transition: all 0.3s var(--ease);
}
.topbar-login:hover { border-color: var(--accent); color: var(--accent); background: rgba(91,141,239,0.06); }
.top-cta {
  font-size: 12px; color: #060608; background: var(--text); padding: 7px 18px;
  border-radius: 6px; text-decoration: none; font-weight: 600; letter-spacing: 0.3px;
  transition: all 0.3s var(--ease);
}
.top-cta:hover { background: var(--accent); color: #fff; }

/* ─── HERO ─── */
.pricing-main { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.pricing-hero { text-align: center; padding: 48px 0 40px; }
.pricing-hero h1 { font-size: clamp(28px, 4vw, 42px); font-weight: 700; letter-spacing: -0.5px; margin-bottom: 12px; }
.pricing-sub { font-size: 16px; color: var(--text2); }

/* ─── PRICING GRID ─── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 64px;
}

.plan-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}
.plan-card:hover { border-color: rgba(91,141,239,0.3); transform: translateY(-2px); }

.plan-featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(91,141,239,0.06) 0%, var(--surface) 100%);
}

.plan-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  background: var(--accent);
  padding: 3px 14px;
  border-radius: 12px;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.plan-header { margin-bottom: 16px; }
.plan-name { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.plan-price { display: flex; align-items: baseline; gap: 4px; }
.plan-amount { font-size: 36px; font-weight: 700; color: var(--accent); letter-spacing: -1px; }
.plan-period { font-size: 14px; color: var(--text3); }

.plan-desc { font-size: 13px; color: var(--text2); line-height: 1.5; margin-bottom: 20px; }

.plan-features {
  list-style: none; padding: 0; margin: 0 0 24px;
  display: flex; flex-direction: column; gap: 10px; flex: 1;
}
.plan-features li {
  font-size: 13px; color: var(--text2); padding-left: 20px; position: relative;
}
.plan-features li::before {
  content: '\2713'; position: absolute; left: 0; color: #4ade80; font-weight: 700; font-size: 13px;
}

.plan-cta {
  display: block; text-align: center; padding: 10px 20px; border-radius: 8px;
  font-size: 14px; font-weight: 600; text-decoration: none; transition: all 0.3s var(--ease);
}
.plan-cta-solid {
  background: #fff; color: var(--bg);
}
.plan-cta-solid:hover { background: var(--accent); color: #fff; transform: translateY(-1px); text-decoration: none; }
.plan-cta-outline {
  color: var(--accent); border: 1px solid rgba(91,141,239,0.3);
}
.plan-cta-outline:hover { border-color: var(--accent); background: rgba(91,141,239,0.06); text-decoration: none; }

/* ─── FAQ ─── */
.pricing-faq { margin-bottom: 64px; }
.pricing-faq h2 { font-size: 24px; font-weight: 600; text-align: center; margin-bottom: 32px; }
.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.faq-item {
  padding: 20px; background: var(--surface); border: 1px solid var(--line);
  border-radius: 10px; transition: border-color 0.3s;
}
.faq-item:hover { border-color: rgba(91,141,239,0.2); }
.faq-item h3 { font-size: 14px; font-weight: 600; margin-bottom: 8px; color: var(--text); }
.faq-item p { font-size: 13px; color: var(--text2); line-height: 1.6; }

/* ─── BOTTOM CTA ─── */
.pricing-cta-section { text-align: center; padding: 48px 0 64px; }
.pricing-cta-section h2 { font-size: 24px; font-weight: 600; margin-bottom: 8px; }
.pricing-cta-section p { font-size: 14px; color: var(--text2); margin-bottom: 24px; }
.pricing-cta-row { display: flex; gap: 16px; justify-content: center; align-items: center; }
.sp-cta-primary {
  padding: 12px 32px; background: #fff; color: var(--bg); font-size: 14px;
  font-weight: 600; border-radius: 8px; text-decoration: none; transition: all 0.3s var(--ease);
}
.sp-cta-primary:hover { background: var(--accent); color: #fff; transform: translateY(-1px); }
.sp-cta-secondary {
  padding: 12px 32px; color: var(--accent); border: 1px solid rgba(91,141,239,0.3);
  font-size: 14px; font-weight: 600; border-radius: 8px; text-decoration: none; transition: all 0.3s var(--ease);
}
.sp-cta-secondary:hover { border-color: var(--accent); background: rgba(91,141,239,0.06); }

/* ─── FOOTER ─── */
.site-footer { background: var(--bg); border-top: 1px solid var(--line); padding: 48px 24px 24px; }
.footer-grid { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 32px; }
.footer-brand { font-size: 24px; font-weight: 700; letter-spacing: 4px; color: var(--text); margin-bottom: 8px; }
.footer-desc { font-size: 13px; color: var(--text3); line-height: 1.6; max-width: 260px; }
.footer-heading { font-size: 12px; font-weight: 600; color: var(--text2); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 12px; }
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 13px; color: var(--text3); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--text); }
.footer-bottom { max-width: 900px; margin: 0 auto; padding-top: 20px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: var(--text3); }
.footer-loc { color: #64748b; }

/* ─── MOBILE ─── */
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .plan-featured { order: -1; }
  .pricing-cta-row { flex-direction: column; }
  .sp-cta-primary, .sp-cta-secondary { width: 100%; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .brand-sub { display: none; }
  .topbar-right { gap: 10px; }
  .top-cta { padding: 5px 10px; font-size: 11px; }
  .topbar-login { padding: 4px 10px; font-size: 11px; }
}

/* Focus visible */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { transition-duration: 0.01ms !important; }
}
