:root {
  --kc-soft: #E7E4DAFA;
  --kc-light: #FBF9ED;
  --kc-primary: #134AC7;
  --kc-ink: #0f172a;
  --kc-muted: #6b7280;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Roboto", "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--kc-ink);
  background-color: var(--kc-light);
}

main {
  background: linear-gradient(180deg, var(--kc-soft) 0%, var(--kc-light) 24%);
}

.navbar {
  background-color: rgba(251, 249, 237, 0.9);
  backdrop-filter: blur(8px);
}

.hero {
  padding: 5rem 0 3rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid #d6d3c7;
  background: #fff;
  font-size: 0.85rem;
}

.hero-card {
  background: #fff;
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.08);
}

.product-card {
  border-radius: 24px;
  background: #f1f5f9;
  border: 1px solid #e5e7eb;
  overflow: hidden;
}

.product-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.btn-primary {
  background-color: var(--kc-primary);
  border-color: var(--kc-primary);
  box-shadow: 0 12px 30px rgba(19, 74, 199, 0.25);
}

.section-title {
  font-weight: 700;
  letter-spacing: 0.05em;
}

.section-muted {
  color: var(--kc-muted);
}

.keepers-steps {
  padding: 48px 0;
}

.steps-body {
  position: relative;
  padding-left: 56px;
}

.steps-bar {
  position: absolute;
  left: 20px;
  top: 8px;
  bottom: 8px;
  width: 4px;
  border-radius: 999px;
  background: rgba(19, 74, 199, 0.14);
  overflow: hidden;
}

.steps-progress {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0px;
  border-radius: 999px;
  background: var(--kc-primary);
  will-change: height;
}

.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  column-gap: 16px;
  padding: 18px 0 34px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.step:last-child {
  border-bottom: 0;
  padding-bottom: 10px;
}

.step-number {
  font-size: 56px;
  line-height: 1;
  font-weight: 800;
  color: rgba(15, 23, 42, 0.18);
  transition: color 180ms ease;
  user-select: none;
}

.step h3 {
  margin: 0 0 6px;
  font-weight: 800;
  color: rgba(15, 23, 42, 0.7);
  transition: color 180ms ease;
}

.step p {
  margin: 0;
  color: rgba(15, 23, 42, 0.52);
  transition: color 180ms ease;
  max-width: 60ch;
}

.step.active .step-number {
  color: rgba(19, 74, 199, 0.9);
}

.step.complete .step-number {
  color: rgba(19, 74, 199, 0.9);
}

.step.active h3 {
  color: var(--kc-ink);
}

.step.complete h3 {
  color: var(--kc-ink);
}

.step.active p {
  color: rgba(15, 23, 42, 0.64);
}

.step.complete p {
  color: rgba(15, 23, 42, 0.64);
}

.check-list {
  list-style: none;
  padding-left: 0;
}

.check-list li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 0.6rem;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: rgba(19, 74, 199, 0.12);
  color: var(--kc-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
}

.benefit-card {
  border-radius: 18px;
  background: #fff;
  padding: 1.5rem;
  border: 1px solid #e5e7eb;
  height: 100%;
}

.benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(19, 74, 199, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--kc-primary);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.benefit-icon svg {
  width: 22px;
  height: 22px;
}

.pricing-card {
  border-radius: 20px;
  border: 1px solid #e5e7eb;
  background: #fff;
}

.pricing-card .price {
  font-size: 2.2rem;
  font-weight: 700;
}

.benefit-pill {
  border-radius: 999px;
  padding: 0.5rem 1rem;
  background: #fff;
  border: 1px solid #e5e7eb;
}

.icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(19, 74, 199, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-card {
  border-radius: 18px;
  background: #fff;
  padding: 1.5rem;
  border: 1px solid #e5e7eb;
  height: 100%;
}

.form-section {
  border-radius: 24px;
  background: #fff;
  padding: 2rem;
  border: 1px solid #e5e7eb;
}

.step-indicator {
  display: flex;
  gap: 0.5rem;
}

.step-pill {
  flex: 1;
  text-align: center;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: #f1f5f9;
  color: var(--kc-muted);
  font-weight: 600;
  font-size: 0.85rem;
}

.step-pill.active {
  background: rgba(19, 74, 199, 0.12);
  color: var(--kc-primary);
}

.info-box {
  border-radius: 14px;
  padding: 1rem;
  border: 1px solid rgba(19, 74, 199, 0.2);
  background: rgba(19, 74, 199, 0.06);
}

.footer {
  background: #0b1f4b;
  color: #e2e8f0;
}

.footer a {
  color: #e2e8f0;
  text-decoration: none;
}

.footer a:hover {
  color: #fff;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1080;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.2);
  padding: 1.5rem;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-category {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1rem;
  background: #f8fafc;
}

.text-strike {
  text-decoration: line-through;
  color: #94a3b8;
}

.small-note {
  font-size: 0.9rem;
  color: var(--kc-muted);
}

@media (max-width: 768px) {
  .hero {
    padding-top: 3.5rem;
  }

  .hero-card {
    padding: 1.5rem;
  }
}
