/* ============================================================
   SEFODO Landing html_v2, Zusatz-Styles fuer pricing.html
   (laedt nach styles.css)
   ============================================================ */

/* ---------- Seiten-Kopf ---------- */

.price-hero { padding: 5.5rem 1.5rem 4rem; }

.price-hero-inner { max-width: var(--container); margin: 0 auto; }

.price-hero-title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(2.5rem, 4.8vw, 4rem);
  letter-spacing: -0.01em;
  line-height: 1.06;
  margin-bottom: 1.2rem;
}

.price-hero-sub {
  font-size: 1.2rem;
  color: var(--text-2);
  max-width: 52ch;
}

@media (prefers-reduced-motion: no-preference) {
  .price-hero-inner { animation: rise 0.8s var(--ease-out) both; }
}

/* ---------- Plaene ---------- */

.plans-section { padding: 0 1.5rem 5rem; }

.plans {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

.plan {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
}

.plan-featured {
  border-color: var(--accent);
  box-shadow: 0 16px 40px rgba(179, 90, 52, 0.16);
}

.plan-badge {
  position: absolute;
  top: -0.85rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.3rem 0.9rem;
  border-radius: var(--r-btn);
  white-space: nowrap;
}

.plan-name {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 1.6rem;
  letter-spacing: -0.01em;
  margin-bottom: 0.8rem;
}

.plan-price {
  font-family: var(--f-display);
  font-size: 3rem;
  line-height: 1;
  color: var(--text);
}

.plan-period {
  font-size: 0.875rem;
  color: var(--text-3);
  margin: 0.4rem 0 1.4rem;
}

.plan .check-list { flex: 1; margin-bottom: 1.6rem; }

.plan .check-list li { font-size: 0.95rem; padding-top: 0.4rem; padding-bottom: 0.4rem; }

.plan .btn { width: 100%; }

.plans-note {
  max-width: var(--container);
  margin: 1.75rem auto 0;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-3);
}

/* ---------- Enterprise ---------- */

.enterprise { padding: 0 1.5rem 7rem; }

.enterprise-band {
  max-width: var(--container);
  margin: 0 auto;
  padding: 2.4rem 2.5rem;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  background:
    radial-gradient(130% 150% at 0% 0%, rgba(179, 90, 52, 0.12), transparent 60%),
    var(--bg-card);
  box-shadow: 0 10px 30px rgba(44, 38, 32, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.enterprise-title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 1.8rem;
  letter-spacing: -0.01em;
  margin-bottom: 0.4rem;
}

.enterprise-sub {
  color: var(--text-2);
  font-size: 1.05rem;
  max-width: 56ch;
}

.enterprise-band .btn { flex-shrink: 0; }

/* ---------- Responsive ---------- */

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

@media (max-width: 1024px) {
  .enterprise-band { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  .plans { grid-template-columns: 1fr; }
  .price-hero { padding: 3.5rem 1.5rem 3rem; }
  .enterprise-band .btn { width: 100%; }
}
