:root {
  --lp-primary: #7c3aed;
  --lp-secondary: #06b6d4;
  --lp-accent: #f59e0b;
  --lp-dark: #0f172a;
  --lp-soft: #f5f7ff;
}

html,
body {
  font-family: "Poppins", "Nunito", system-ui, -apple-system, Segoe UI, Roboto,
    Arial, sans-serif;
  color: var(--lp-dark);
}
.bg-soft {
  background: #f7fafc;
}
.brand-icon {
  color: var(--lp-primary);
}

.hero-section {
  background: radial-gradient(
      900px 500px at 0% 0%,
      rgba(124, 58, 237, 0.1) 0,
      transparent 60%
    ),
    radial-gradient(
      900px 500px at 100% 0%,
      rgba(6, 182, 212, 0.1) 0,
      transparent 60%
    );
}
.btn-cta {
  background: linear-gradient(135deg, var(--lp-primary), var(--lp-secondary));
  color: #fff;
  border: 0;
}
.btn-cta:hover {
  opacity: 0.95;
  color: #fff;
}

.feature-card,
.module-card,
.price-card,
.step-card {
  border-radius: 0.8rem;
  border: 1px solid #e5e7eb;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feature-card:hover,
.module-card:hover,
.price-card:hover,
.step-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.badge-num {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--lp-primary);
  color: #fff;
  font-weight: 700;
}
.step-card {
  padding: 1rem;
  background: #fff;
}

.price-card.featured {
  outline: 3px solid var(--lp-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(124, 58, 237, 0.08),
    rgba(6, 182, 212, 0.08)
  );
}

a:focus,
button:focus,
input:focus,
textarea:focus {
  outline: 3px solid var(--lp-accent);
  outline-offset: 2px;
}

#kontakt a.link-light {
  text-decoration: underline;
}
