/* Root tokens must match index.html soft light theme */
:root {
  --ad-cta-bg: #e2e8f0;
  --ad-cta-text: #0f172a;
  --ad-cta-border: #cbd5e1;
  --bg: #f8fafc;
  --surface: #ffffff;
  --muted: #64748b;
  --text: #1e293b;
  --accent: #2563eb;
  --accent-hover: #1d4ed8;
  --border: #e2e8f0;
  --shadow: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.06), 0 4px 10px rgba(0,0,0,0.04);
  --max: 860px;
  --radius: 16px;
  --radius-sm: 10px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
header, main, footer { padding: 24px 16px; }
.container { max-width: var(--max); margin: 0 auto; }
.badge { display: inline-block; background: #eff6ff; color: var(--accent); border: 1px solid #bfdbfe; padding: 6px 12px; border-radius: 999px; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 700; }
h1 { font-size: clamp(26px, 3.6vw + 10, 40px); line-height: 1.2; margin: 18px 0 10px; font-weight: 800; }
h2 { font-size: 20px; margin: 20px 0 8px; color: var(--text); font-weight: 700; }
h3 { font-size: 18px; margin: 16px 0 8px; color: var(--text); font-weight: 700; }
.lead { color: var(--muted); font-size: 18px; }
.price { display: flex; align-items: baseline; gap: 12px; margin: 14px 0 6px; }
.price .now { font-size: 36px; font-weight: 800; color: var(--accent); }
.price .was { color: var(--muted); text-decoration: line-through; }
.cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--accent); color: #fff; padding: 14px 22px; border-radius: var(--radius-sm);
  font-weight: 700; font-size: 16px; border: 0; cursor: pointer; margin-top: 16px;
  transition: all 0.2s;
}
.cta:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25); }
.cta.secondary { background: #fff; color: var(--accent); border: 2px solid var(--accent); }
.cta.secondary:hover { background: #eff6ff; }
.box {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 18px; margin-top: 16px; box-shadow: var(--shadow);
}
.kpis { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 16px; }
.kpi { background: #fff; border: 1px solid var(--border); padding: 14px; border-radius: var(--radius-sm); box-shadow: var(--shadow); }
.kpi b { display: block; color: var(--accent); font-size: 22px; }
nav { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 16px; }
nav a { font-size: 13px; color: var(--muted); font-weight: 500; }
nav a:hover { color: var(--accent); }
.guarantee { display: flex; gap: 14px; align-items: center; margin-top: 14px; color: var(--muted); font-size: 13px; }
input, textarea, select {
  background: #fff; border: 2px solid var(--border); color: var(--text);
  padding: 12px 14px; border-radius: var(--radius-sm); font-size: 15px;
  font-family: inherit; width: 100%; margin-bottom: 12px; transition: border-color 0.2s;
}
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1); }
textarea { min-height: 100px; resize: vertical; }
.ad-cta { display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px; background: var(--ad-cta-bg); color: var(--ad-cta-text); border: 2px solid var(--ad-cta-border); border-radius: var(--radius-sm); font-size: 14px; font-weight: 600; text-decoration: none; transition: all 0.2s; }
.ad-cta:hover { border-color: var(--accent); color: var(--accent); }
.ad-slot { display: flex; align-items: center; justify-content: center; margin: 16px 0; min-height: 90px; background: linear-gradient(180deg, #f8fafc, #f1f5f9); border: 1px dashed var(--border); border-radius: var(--radius); }
.ad-slot .ad-cta { background: var(--accent); color: #fff; border-color: var(--accent); }

/* Start Here onboarding */
.step-panel { animation: fadeIn 0.2s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
.option-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 12px; margin-top: 14px; }
.option-card {
  background: #fff; border: 2px solid var(--border); border-radius: var(--radius-sm);
  padding: 16px; cursor: pointer; text-align: left; font-family: inherit;
  transition: all 0.2s; display: flex; gap: 12px; align-items: flex-start;
}
.option-card:hover { border-color: var(--accent); box-shadow: 0 4px 12px rgba(37,99,235,0.08); transform: translateY(-1px); }
.option-icon { font-size: 22px; line-height: 1; flex-shrink: 0; }
.option-card b { display: block; font-size: 14px; color: var(--text); margin-bottom: 2px; }
.option-card .muted { font-size: 12px; color: var(--muted); line-height: 1.4; }
.muted { color: var(--muted); }
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--text);
  color: #fff;
  padding: 8px 16px;
  z-index: 10000;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}
.skip-link:focus {
  top: 0;
}

@media (max-width: 640px) {
  .kpis { grid-template-columns: 1fr; }
}

/* Pricing page styles */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 16px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
}
.card.popular {
  border-color: var(--accent);
  position: relative;
}
.popular-badge {
  position: absolute;
  top: -0.75rem;
  right: 1.5rem;
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
}
.card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  margin: 1rem 0 0.25rem;
  letter-spacing: -0.03em;
}
.price-note {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.features {
  list-style: none;
  margin: 1.5rem 0 2rem;
  flex-grow: 1;
}
.features li {
  font-size: 0.9rem;
  color: var(--muted);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.features li:last-child { border-bottom: none; }
.check { color: var(--accent); font-weight: 700; }
.btn {
  display: block;
  width: 100%;
  padding: 0.875rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  font-family: inherit;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25); }
.btn-secondary {
  background: #fff;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.btn-secondary:hover { background: #eff6ff; }
.faq {
  max-width: 700px;
  margin: 4rem auto;
  padding: 0 16px;
}
.faq h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2rem;
  text-align: center;
}
details {
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}
summary {
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--muted);
  font-weight: 400;
}
details[open] summary::after { content: "−"; }
.answer {
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 0.75rem;
  line-height: 1.7;
}
