:root {
  --bv-primary: #145ce6;
  --bv-secondary: #0bd4b4;
  --bv-accent: #ff6b6b;
  --bv-ink: #0b1220;
  --bv-soft: #f2f7ff;
}

html,
body {
  font-family: "DM Sans", "Rubik", system-ui, -apple-system, Segoe UI, Roboto,
    Arial, sans-serif;
  color: var(--bv-ink);
}
.bg-soft {
  background: #f7fafc;
}
.brand-icon {
  color: var(--bv-primary);
}
.hero-gradient {
  background: radial-gradient(
      900px 500px at 0% 0%,
      rgba(20, 92, 230, 0.1) 0,
      transparent 60%
    ),
    radial-gradient(
      900px 500px at 100% 0%,
      rgba(11, 212, 180, 0.1) 0,
      transparent 60%
    );
}

.btn-cta {
  background: linear-gradient(135deg, var(--bv-primary), var(--bv-secondary));
  color: #fff;
  border: 0;
}
.btn-cta:hover {
  opacity: 0.95;
  color: #fff;
}

.feature-card,
.module-card,
.price-card,
.step {
  border-radius: 0.9rem;
  border: 1px solid #e5e7eb;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  background: #fff;
}
.feature-card:hover,
.module-card:hover,
.price-card:hover,
.step:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(11, 18, 32, 0.09);
}

.badge-num {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bv-primary);
  color: #fff;
  font-weight: 700;
}

.price-card.featured {
  outline: 3px solid var(--bv-primary);
}
.faq-grid details {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.6rem;
  padding: 1rem;
}
.faq-grid details + details {
  margin-top: 1rem;
}

.timeline {
  list-style: none;
  padding: 0;
}
.timeline li {
  margin: 0.5rem 0;
}
.info-tile {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 1rem;
  text-align: center;
}

.cta-band {
  background: linear-gradient(
    90deg,
    rgba(20, 92, 230, 0.08),
    rgba(11, 212, 180, 0.08)
  );
}
footer .btn {
  line-height: 1;
}

a:focus,
button:focus,
input:focus,
textarea:focus {
  outline: 3px solid var(--bv-accent);
  outline-offset: 2px;
}

#kontakt a.link-light {
  text-decoration: underline;
}
.small-legal {
  opacity: 0.8;
}
