:root {
  --ta-primary: #a78bfa;
  --ta-secondary: #a7f3d0;
  --ta-accent: #fcd5ce;
  --ta-ink: #1f2937;
  --ta-soft: #f8fafc;
}

html,
body {
  font-family: "Manrope", "Work Sans", system-ui, -apple-system, Segoe UI,
    Roboto, Arial, sans-serif;
  color: var(--ta-ink);
}
.bg-soft {
  background: #f6f8fb;
}
.brand-icon {
  color: var(--ta-primary);
}

.hero-soft {
  background: radial-gradient(
      900px 500px at 0% 0%,
      rgba(167, 243, 208, 0.25) 0,
      transparent 60%
    ),
    radial-gradient(
      900px 500px at 100% 0%,
      rgba(167, 139, 250, 0.2) 0,
      transparent 60%
    );
}

.btn-cta {
  background: linear-gradient(135deg, var(--ta-primary), var(--ta-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;
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feature-card:hover,
.module-card:hover,
.price-card:hover,
.step:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(31, 41, 55, 0.08);
}

.badge-num {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ta-primary);
  color: #fff;
  font-weight: 700;
}

.price-card.featured {
  outline: 3px solid var(--ta-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(167, 139, 250, 0.15),
    rgba(252, 213, 206, 0.15)
  );
}

a:focus,
button:focus,
input:focus,
textarea:focus {
  outline: 3px solid var(--ta-accent);
  outline-offset: 2px;
}
#kontakt a.link-light {
  text-decoration: underline;
}
.small-legal {
  opacity: 0.8;
}
