/* MetzgerDesk — Stylesheet */
:root {
  --rot: #8B0000;
  --rot-hell: #a50000;
  --weiss: #FAFAFA;
  --silber: #9CA3AF;
  --dunkel: #374151;
  --bg: #FAFAFA;
  --grau-hell: #F3F4F6;
  --schatten: 0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -1px rgba(0,0,0,.06);
  --schatten-lg: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -2px rgba(0,0,0,.05);
  --radius: 8px;
  --transition: all .25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--dunkel);
  line-height: 1.6;
}

/* ── Navigation ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--rot);
  padding: .875rem 0;
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  letter-spacing: -.5px;
}

.nav-logo span { color: #ffcdd2; }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,.85);
  text-decoration: none;
  font-weight: 500;
  font-size: .95rem;
  transition: var(--transition);
}

.nav-links a:hover { color: #fff; }

.nav-cta {
  background: #fff;
  color: var(--rot) !important;
  padding: .45rem 1.1rem;
  border-radius: 20px;
  font-weight: 700 !important;
}

.nav-cta:hover { background: #f5f5f5 !important; }

/* ── Hero ── */
.hero {
  background: linear-gradient(135deg, var(--rot) 0%, #5c0000 100%);
  color: #fff;
  padding: 6rem 1.5rem 5rem;
  text-align: center;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero p {
  font-size: 1.2rem;
  opacity: .88;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.btn-primary {
  display: inline-block;
  background: #fff;
  color: var(--rot);
  font-weight: 800;
  font-size: 1.05rem;
  padding: .85rem 2.25rem;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: var(--schatten-lg);
  transition: var(--transition);
  border: 2px solid transparent;
}

.btn-primary:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: .8rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,.6);
  margin-left: 1rem;
  transition: var(--transition);
}

.btn-secondary:hover {
  border-color: #fff;
  background: rgba(255,255,255,.1);
}

/* ── Sections ── */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}

.section-title {
  text-align: center;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: .75rem;
  color: var(--dunkel);
}

.section-subtitle {
  text-align: center;
  color: var(--silber);
  font-size: 1.05rem;
  margin-bottom: 3rem;
}

/* ── Feature Cards ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.75rem;
}

.feature-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--schatten);
  border: 1px solid #E5E7EB;
  transition: var(--transition);
}

.feature-card:hover {
  box-shadow: var(--schatten-lg);
  transform: translateY(-4px);
  border-color: var(--rot);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--rot);
  margin-bottom: .6rem;
}

.feature-card p {
  color: #6B7280;
  font-size: .95rem;
  line-height: 1.65;
}

/* ── Compliance Band ── */
.compliance-band {
  background: var(--dunkel);
  color: #fff;
  padding: 4rem 1.5rem;
}

.compliance-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.compliance-band h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 2rem;
  text-align: center;
}

.compliance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.compliance-item {
  background: rgba(255,255,255,.07);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid rgba(255,255,255,.12);
}

.compliance-item h4 {
  font-size: .95rem;
  font-weight: 700;
  color: #FCA5A5;
  margin-bottom: .5rem;
}

.compliance-item p {
  font-size: .875rem;
  color: rgba(255,255,255,.7);
  line-height: 1.55;
}

/* ── Pricing ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
  align-items: start;
}

.pricing-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2.25rem;
  box-shadow: var(--schatten);
  border: 2px solid #E5E7EB;
  transition: var(--transition);
}

.pricing-card.highlight {
  border-color: var(--rot);
  box-shadow: 0 0 0 3px rgba(139,0,0,.12), var(--schatten-lg);
  position: relative;
  transform: scale(1.03);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--rot);
  color: #fff;
  font-size: .75rem;
  font-weight: 800;
  padding: .3rem 1rem;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dunkel);
  margin-bottom: .5rem;
}

.pricing-price {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--rot);
  line-height: 1;
  margin: .75rem 0;
}

.pricing-price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--silber);
}

.pricing-features {
  list-style: none;
  margin: 1.5rem 0 2rem;
}

.pricing-features li {
  padding: .4rem 0;
  font-size: .95rem;
  color: #4B5563;
  border-bottom: 1px solid #F3F4F6;
}

.pricing-features li::before {
  content: '✓';
  color: var(--rot);
  font-weight: 700;
  margin-right: .6rem;
}

.btn-plan {
  display: block;
  text-align: center;
  padding: .75rem;
  border-radius: var(--radius);
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  font-size: .95rem;
}

.btn-plan-outline {
  border: 2px solid var(--rot);
  color: var(--rot);
}

.btn-plan-outline:hover {
  background: var(--rot);
  color: #fff;
}

.btn-plan-filled {
  background: var(--rot);
  color: #fff;
  border: 2px solid var(--rot);
}

.btn-plan-filled:hover {
  background: var(--rot-hell);
}

/* ── Footer ── */
footer {
  background: var(--dunkel);
  color: rgba(255,255,255,.65);
  padding: 3rem 1.5rem;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255,255,255,.65);
  text-decoration: none;
  font-size: .9rem;
  transition: var(--transition);
}

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

.footer-copy {
  font-size: .85rem;
  margin-top: .75rem;
}

/* ── Legal Pages ── */
.legal-page {
  max-width: 800px;
  margin: 3rem auto;
  padding: 0 1.5rem;
}

.legal-page h1 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--rot);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid var(--rot);
}

.legal-page h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dunkel);
  margin: 2rem 0 .75rem;
}

.legal-page p, .legal-page li {
  color: #4B5563;
  font-size: .97rem;
  line-height: 1.75;
  margin-bottom: .75rem;
}

.legal-page ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero { padding: 4rem 1.5rem 3.5rem; }
  .pricing-card.highlight { transform: none; }
  .btn-secondary { display: none; }
}
