﻿*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* exact brand colors from post-6.css */
  --primary:   #FFFFFF;
  --secondary: #FE3F58;
  --purple:    #8F12D2;
  --blue:      #1F07F1;
  --dark:      #131313;
  --dark-card: #351A44;
  --dark-deep: #4A1269;
  --pink:      #f2295b;

  /* gradients */
  --grad-brand: linear-gradient(233deg, #1F07F1 0%, #8F12D2 50%, #FE3F58 100%);
  --grad-btn:   linear-gradient(200deg, #FE3F58 0%, #8F12D2 50%, #1F07F1 100%);
  --grad-btn-h: linear-gradient(233deg, #FE3F58 0%, #8F12D2 50%, #1F07F1 100%);
  --grad-dark:  linear-gradient(160deg, #131313 0%, #1e0a2e 50%, #351A44 100%);

  --radius-card: 12px;
  --radius-btn:  9px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', 'Roboto', sans-serif;
  background: var(--dark);
  color: var(--primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(19, 19, 19, 0.55);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.nav-inner {
  padding: 0 48px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-wordmark {
  font-family: 'Poppins', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #fff;
  line-height: 1;
}
.logo-divider {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.18);
  flex-shrink: 0;
}
.logo-parent {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.65rem;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1;
}
.logo-kleeo {
  height: 14px;
  width: auto;
  opacity: 0.5;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.65);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.07); }
.btn-nav {
  background: var(--grad-btn) !important;
  color: #fff !important;
  border-radius: var(--radius-btn) !important;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}
.btn-nav:hover { background: var(--grad-btn-h) !important; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--grad-btn);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 14px 32px;
  border-radius: var(--radius-btn);
  text-decoration: none;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  transition: background 0.2s, box-shadow 0.2s;
}
.btn-primary:hover {
  background: var(--grad-btn-h);
  box-shadow: 0 4px 20px rgba(254,63,88,0.35);
}
.btn-ghost {
  display: inline-block;
  background: transparent;
  color: rgba(255,255,255,0.8);
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 12px 30px;
  border-radius: var(--radius-btn);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.3);
  transition: border-color 0.2s, background 0.2s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.05); }

/* ── SECTION WRAPPER ── */
.section { padding: 80px 24px; }
.container { max-width: 1140px; margin: 0 auto; }

.eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 14px;
  display: inline-block;
}
.eyebrow-light {
  background: linear-gradient(90deg, #fff, rgba(255,255,255,0.6));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 16px;
}
.lead {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  max-width: 520px;
  margin-bottom: 52px;
}

/* ── HERO ── */
.hero {
  background: var(--grad-dark);
  padding: 100px 24px 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(143,18,210,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.hero .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 32px;
}
.hero h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  max-width: 820px;
  margin: 0 auto 20px;
  letter-spacing: -0.5px;
}
.hero h1 .grad-text {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero .subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  max-width: 540px;
  margin: 0 auto 40px;
  font-weight: 400;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-meta {
  margin-top: 22px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.04em;
}
.hero-img {
  margin-top: 64px;
  display: flex;
  justify-content: center;
}
.hero-img img {
  max-width: min(420px, 80vw);
  border-radius: 16px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
}

/* ── BENEFITS ── */
.benefits { background: #0e0e0e; }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}
.benefit-card {
  background: var(--dark-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.benefit-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.benefit-icon {
  width: 53px;
  height: 53px;
  background: var(--grad-brand);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  padding: 14px;
}
.benefit-icon svg {
  width: 100%;
  height: 100%;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.benefit-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.benefit-card p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
}

/* ── HOW IT WORKS ── */
.how { background: var(--grad-dark); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}
.step-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-card);
  padding: 32px 28px;
}
.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--grad-btn);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 20px;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
}
.step-card h3 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.step-card p  { font-size: 0.875rem; color: rgba(255,255,255,0.5); line-height: 1.65; }

/* ── ANALYSIS AREAS ── */
.areas { background: #0e0e0e; }
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}
.area-card {
  background: var(--dark-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-card);
  padding: 28px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.area-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.area-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 16px;
  background: var(--grad-brand);
  color: #fff;
}
.area-card h3 { font-size: 0.98rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.area-card p  { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.65; }

/* ── CTA ── */
.cta-section {
  background: linear-gradient(160deg, #351A44 0%, #4A1269 50%, #1F07F1 100%);
  text-align: center;
  padding: 100px 24px;
}
.cta-section h2 { color: #fff; margin-bottom: 16px; }
.cta-section .lead { color: rgba(255,255,255,0.6); max-width: 480px; margin: 0 auto 40px; }

/* ── FOOTER ── */
footer {
  background: #080808;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 40px 48px;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}
.footer-kleeo {
  height: 18px;
  width: auto;
  opacity: 0.5;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-parent {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
}
.footer-parent a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
}
.footer-parent a:hover { color: rgba(255,255,255,0.7); }
.footer-inner p, .footer-inner a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
}
.footer-inner a:hover { color: rgba(255,255,255,0.7); }
.footer-sep { color: rgba(255,255,255,0.15); }

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  .nav-links { display: none; }
  .section { padding: 60px 20px; }
  .hero { padding: 80px 20px 70px; }
}

/* ── SETUP WIZARD ── */
.wizard-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(8, 8, 8, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.wizard-overlay.open { opacity: 1; pointer-events: all; }
.wizard-modal {
  background: linear-gradient(160deg, #1c0b30 0%, #131313 70%);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 40px 100px rgba(0,0,0,0.75), 0 0 0 1px rgba(143,18,210,0.12);
  transform: translateY(24px);
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.1) transparent;
}
.wizard-overlay.open .wizard-modal { transform: translateY(0); }
.wiz-header { display: flex; align-items: center; gap: 14px; padding: 24px 28px 0; }
.wiz-progress-wrap { flex: 1; height: 3px; background: rgba(255,255,255,0.08); border-radius: 2px; overflow: hidden; }
.wiz-progress-bar { height: 100%; background: var(--grad-brand); border-radius: 2px; transition: width 0.4s ease; width: 20%; }
.wiz-step-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.28); white-space: nowrap; }
.wiz-close { background: none; border: none; color: rgba(255,255,255,0.3); font-size: 1.1rem; line-height: 1; cursor: pointer; padding: 4px 6px; border-radius: 4px; transition: color 0.15s; margin-left: 2px; }
.wiz-close:hover { color: rgba(255,255,255,0.75); }
.wiz-body { padding: 32px 28px 20px; }
.wizard-step { display: none; }
.wizard-step.active { display: block; animation: wiz-in 0.22s ease both; }
@keyframes wiz-in { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.wiz-eyebrow { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; background: var(--grad-brand); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 10px; display: inline-block; }
.wiz-title { font-size: 1.35rem; font-weight: 700; color: #fff; line-height: 1.25; margin-bottom: 8px; }
.wiz-subtitle { font-size: 0.855rem; color: rgba(255,255,255,0.42); line-height: 1.65; margin-bottom: 26px; }
.wiz-options { display: grid; gap: 10px; }
.wiz-options.cols-3 { grid-template-columns: repeat(3, 1fr); }
.wiz-options.cols-2 { grid-template-columns: repeat(2, 1fr); }
.wiz-option { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); border-radius: 10px; padding: 16px 18px; cursor: pointer; text-align: left; transition: border-color 0.15s, background 0.15s, transform 0.15s, box-shadow 0.15s; font-family: 'Poppins', sans-serif; }
.wiz-option:hover { border-color: rgba(255,255,255,0.18); background: rgba(255,255,255,0.07); transform: translateY(-2px); }
.wiz-option.selected { background: rgba(143,18,210,0.18); border-color: rgba(143,18,210,0.55); box-shadow: 0 0 18px rgba(143,18,210,0.2); }
.wiz-option-title { font-size: 0.875rem; font-weight: 700; color: #fff; margin-bottom: 3px; }
.wiz-option-desc { font-size: 0.76rem; color: rgba(255,255,255,0.42); line-height: 1.5; }
.wiz-options.persona .wiz-option { text-align: center; padding: 22px 16px; }
.wiz-option-icon { width: 44px; height: 44px; background: var(--grad-brand); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; padding: 11px; }
.wiz-option-icon svg { width: 100%; height: 100%; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.wiz-insight { margin-top: 14px; padding: 13px 16px; background: rgba(143,18,210,0.1); border: 1px solid rgba(143,18,210,0.25); border-radius: 8px; font-size: 0.795rem; color: rgba(255,255,255,0.6); line-height: 1.6; display: none; }
.wiz-insight.visible { display: block; }
@keyframes wiz-shake { 0%, 100% { transform: translateX(0); } 20%, 60% { transform: translateX(-5px); } 40%, 80% { transform: translateX(5px); } }
.wiz-options.shake { animation: wiz-shake 0.35s ease; }
.wiz-footer { display: flex; align-items: center; justify-content: space-between; padding: 0 28px 28px; gap: 12px; }
.wiz-footer .btn-ghost   { padding: 10px 20px; font-size: 0.78rem; }
.wiz-footer .btn-primary { padding: 12px 26px; font-size: 0.8rem; }
#wiz-back { visibility: hidden; }
.wiz-stat { text-align: center; padding: 22px; background: rgba(143,18,210,0.1); border: 1px solid rgba(143,18,210,0.22); border-radius: 10px; margin-bottom: 14px; }
.wiz-stat-num { font-size: 2.6rem; font-weight: 800; background: var(--grad-brand); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; margin-bottom: 6px; }
.wiz-stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.45); }
.wiz-summary-areas { display: grid; gap: 8px; margin-bottom: 8px; }
.wiz-summary-area { display: flex; align-items: flex-start; gap: 12px; padding: 13px 16px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06); border-radius: 8px; }
.wiz-summary-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--grad-brand); flex-shrink: 0; margin-top: 5px; }
.wiz-summary-area-text { font-size: 0.84rem; color: rgba(255,255,255,0.65); line-height: 1.55; }
.wiz-summary-area-text strong { color: rgba(255,255,255,0.9); }
@media (max-width: 560px) {
  .wiz-options.cols-3, .wiz-options.cols-2 { grid-template-columns: 1fr; }
  .wiz-header { padding: 20px 20px 0; }
  .wiz-body   { padding: 26px 20px 16px; }
  .wiz-footer { padding: 0 20px 24px; }
  .wiz-title  { font-size: 1.15rem; }
}

/* Wizard summary profile */
.wiz-summary-profile { display: grid; gap: 8px; margin-bottom: 18px; }
.wiz-sum-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 16px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); border-radius: 8px; }
.wiz-sum-label { font-size: 0.78rem; color: rgba(255,255,255,0.45); }
.wiz-sum-value { font-size: 0.84rem; font-weight: 600; color: rgba(255,255,255,0.9); }
.wiz-stat-box { margin-bottom: 18px; }
.wiz-cta-note { font-size: 0.82rem; color: rgba(255,255,255,0.45); text-align: center; margin-top: 10px; }

/* Wizard footer buttons */
.wiz-btn-back { background: transparent; border: 1px solid rgba(255,255,255,0.14); color: rgba(255,255,255,0.55); padding: 10px 20px; border-radius: 8px; font-size: 0.8rem; cursor: pointer; transition: all 0.2s; }
.wiz-btn-back:hover { border-color: rgba(255,255,255,0.3); color: rgba(255,255,255,0.85); }
.wiz-btn-next { background: linear-gradient(135deg,#8f12d2,#d83c9f); color: #fff; border: none; padding: 11px 26px; border-radius: 8px; font-size: 0.82rem; font-weight: 600; cursor: pointer; transition: opacity 0.2s; }
.wiz-btn-next:hover { opacity: 0.88; }
.wiz-btn-cta { display: inline-flex; align-items: center; background: linear-gradient(135deg,#8f12d2,#d83c9f); color: #fff; border: none; padding: 12px 28px; border-radius: 8px; font-size: 0.84rem; font-weight: 600; text-decoration: none; transition: opacity 0.2s; }
.wiz-btn-cta:hover { opacity: 0.88; color: #fff; }

/* Wizard - limited licence option */
.wiz-option-limited { opacity: 0.62; }
.wiz-option-warning { font-size: 0.7rem; font-weight: 600; color: #e07b3b; margin-top: 6px; text-transform: uppercase; letter-spacing: 0.04em; }
.wiz-option-limited.selected { opacity: 1; border-color: rgba(224,123,59,0.5); background: rgba(224,123,59,0.08); }

/* Wizard - insight warning variant */
.wiz-insight-warn { }
.wiz-insight-warn strong { color: #e07b3b; }

/* Wizard - final CTA block */
.wiz-final-cta { text-align: center; padding: 24px 16px 8px; }
.wiz-final-lead { font-size: 0.95rem; color: rgba(255,255,255,0.75); margin-bottom: 22px; line-height: 1.55; }
.wiz-final-btn { display: inline-block; margin-bottom: 18px; font-size: 0.9rem; padding: 14px 32px; }
.wiz-final-sub { font-size: 0.75rem; color: rgba(255,255,255,0.35); }

/* Wizard - insight box (corrected selector + font + animation) */
.wiz-insight-box {
  margin-top: 16px;
  padding: 16px 18px;
  background: rgba(143,18,210,0.1);
  border: 1px solid rgba(143,18,210,0.28);
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.65;
}
.wiz-insight-box.wiz-insight-flash {
  animation: wiz-insight-pop 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes wiz-insight-pop {
  0%   { opacity: 0; transform: translateY(8px); box-shadow: 0 0 0 3px rgba(143,18,210,0.55); }
  35%  { opacity: 1; transform: translateY(0);   box-shadow: 0 0 0 3px rgba(143,18,210,0.55); }
  100% { opacity: 1; transform: translateY(0);   box-shadow: 0 0 0 0   rgba(143,18,210,0);    }
}

/* Wizard - MFA alert (replaces wiz-stat-box) */
.wiz-mfa-alert { margin-bottom: 18px; padding: 12px 16px; background: rgba(200,45,45,0.1); border: 1px solid rgba(200,45,45,0.3); border-left: 3px solid rgba(200,45,45,0.65); border-radius: 8px; font-family: 'Poppins', sans-serif; font-size: 0.82rem; color: rgba(240,110,110,0.95); line-height: 1.55; }

/* Wizard - tighten spacing above final CTA */
.wiz-final-cta { padding-top: 4px; }
.wiz-mfa-alert { margin-bottom: 10px; }

/* ── PRICING ── */
.pricing { background: var(--grad-dark); }

.ps-tier-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.38);
  margin-bottom: 24px;
  font-style: italic;
}

.pricing-switcher {
  display: flex;
  gap: 6px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 5px;
  width: fit-content;
  margin-bottom: 40px;
}
.ps-tab {
  background: none;
  border: none;
  color: rgba(255,255,255,0.45);
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 7px;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.02em;
}
.ps-tab:hover { color: rgba(255,255,255,0.8); }
.ps-tab.active { background: var(--grad-btn); color: #fff; box-shadow: 0 2px 10px rgba(0,0,0,0.3); }

.ps-panel { display: none; }
.ps-panel.active { display: block; }

/* billing toggle */
.billing-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
}
.bt-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: color 0.2s;
  font-weight: 500;
}
.bt-label.active { color: #fff; }
.bt-switch {
  width: 38px;
  height: 20px;
  background: rgba(255,255,255,0.12);
  border-radius: 10px;
  position: relative;
  cursor: pointer;
  transition: background 0.2s;
}
.bt-switch.on { background: var(--grad-btn); }
.bt-knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.2s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.4);
}
.bt-knob.on { transform: translateX(18px); }
.bt-save {
  font-size: 0.7rem;
  font-weight: 700;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-left: 4px;
}

/* price grid */
.price-grid { display: grid; gap: 20px; }
.price-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.price-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.price-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.price-grid.cols-1-wide { grid-template-columns: 1fr; }

/* price card */
.price-card {
  background: var(--dark-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-card);
  padding: 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.price-card-popular {
  border-color: rgba(143,18,210,0.5);
  background: linear-gradient(160deg, #2d1045 0%, #351A44 100%);
  box-shadow: 0 0 30px rgba(143,18,210,0.15);
}
.price-card-negotiated {
  border-style: dashed;
  border-color: rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.02);
}
.pc-popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-btn);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.pc-band {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 6px;
}
.pc-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
}
.pc-price {
  display: flex;
  align-items: baseline;
  gap: 3px;
  margin-bottom: 6px;
}
.pc-amount {
  font-size: 2.4rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.pc-amount-custom {
  font-size: 1.8rem;
}
.pc-period {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
}
.pc-annual-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  margin-bottom: 6px;
  display: none;
}
.pc-annual-note.visible { display: block; }
.pc-features {
  list-style: none;
  margin: 18px 0 24px;
  flex: 1;
}
.pc-features li {
  font-size: 0.825rem;
  color: rgba(255,255,255,0.6);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  gap: 8px;
}
.pc-features li::before {
  content: '';
  width: 5px;
  height: 5px;
  min-width: 5px;
  background: var(--grad-btn);
  border-radius: 50%;
}
.pc-features-2col {
  columns: 2;
  gap: 16px;
}
.pc-features-2col li { break-inside: avoid; }
.pc-cta {
  display: block;
  text-align: center;
  margin-top: auto;
}

/* Enterprise card */
.price-card-enterprise {
  flex-direction: row;
  gap: 40px;
  padding: 36px 40px;
  background: linear-gradient(135deg, #2d1045 0%, #1a0a2e 100%);
  border-color: rgba(143,18,210,0.3);
}
.pc-ent-left { flex: 1; }
.pc-ent-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  border-left: 1px solid rgba(255,255,255,0.08);
  padding-left: 40px;
  text-align: center;
}
.pc-ent-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 22px;
  line-height: 1.65;
}
.pc-ent-price-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
  margin-bottom: 8px;
}
.pc-ent-price {
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 12px;
}
.pc-ent-price span {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
}
.pc-ent-price-note {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
}

/* Single centered card (Enterprise) */
.price-grid.cols-1-center {
  grid-template-columns: minmax(0, 460px);
  justify-content: center;
}
.pc-price-from {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
  margin-bottom: 4px;
}
.pc-ent-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  margin-top: 10px;
  margin-bottom: 20px;
}

/* Slim card (no inline feature list) */
.pc-slim { padding-bottom: 24px; }
.pc-slim .pc-cta { margin-top: 20px; }

/* Shared features block */
.pc-all-features {
  margin-top: 20px;
  padding: 22px 28px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-card);
}
.pc-all-features-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 14px;
}
.pc-feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.pc-feat-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.pc-feat-icon {
  width: 34px;
  height: 34px;
  min-width: 34px;
  background: rgba(143,18,210,0.14);
  border: 1px solid rgba(143,18,210,0.28);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px;
}
.pc-feat-icon svg {
  width: 100%;
  height: 100%;
  stroke: rgba(195,110,255,0.9);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.pc-feat-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  margin-bottom: 6px;
}
.pc-feat-desc {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.42);
  line-height: 1.55;
}
@media (max-width: 860px) {
  .pc-feat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .pc-feat-grid { grid-template-columns: 1fr; }
}

/* Pricing divider (IT Providers sub-section separator) */
.pricing-divider {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 60px 0 40px;
}
.pricing-divider-line {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.1);
}
.pricing-divider-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.35);
  white-space: nowrap;
}
.ps-msp-lead {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  max-width: 640px;
  margin-bottom: 32px;
  line-height: 1.65;
}

/* MSP intro */
.ps-msp-intro {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  max-width: 640px;
  margin-bottom: 32px;
  line-height: 1.65;
}

/* Pricing responsive */
@media (max-width: 1000px) {
  .price-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .price-grid.cols-3 { grid-template-columns: 1fr; }
}
@media (max-width: 780px) {
  .price-card-enterprise { flex-direction: column; }
  .pc-ent-right {
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-left: 0;
    padding-top: 28px;
    min-width: unset;
  }
  .pc-features-2col { columns: 1; }
}
@media (max-width: 600px) {
  .price-grid.cols-4 { grid-template-columns: 1fr; }
  .pricing-switcher { width: 100%; }
  .ps-tab { flex: 1; text-align: center; padding: 8px 10px; font-size: 0.75rem; }
}

/* Option A: auto-advance sweep indicator */
.wiz-insight-box { position: relative; overflow: hidden; }
.wiz-insight-box::after { content: ''; position: absolute; bottom: 0; left: 0; height: 2px; width: 0; background: linear-gradient(90deg, #8f12d2, #d83c9f); }
.wiz-insight-box.wiz-insight-running::after { animation: wiz-sweep 2.7s linear forwards; }
.wiz-option { position: relative; overflow: hidden; }
.wiz-option::after { content: ''; position: absolute; bottom: 0; left: 0; height: 2px; width: 0; background: linear-gradient(90deg, #8f12d2, #d83c9f); border-radius: 0 0 10px 10px; }
.wiz-option.wiz-option-running::after { animation: wiz-sweep 1.2s linear forwards; }
@keyframes wiz-sweep { from { width: 0% } to { width: 100% } }
