/* === PAGE HERO (Unterseiten) === */
.page-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 60%, #0f172a 100%);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37,99,235,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,.06) 1px, transparent 1px);
  background-size: 50px 50px;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 1.25rem;
}

.breadcrumb a { color: rgba(255,255,255,.5); transition: .2s; }
.breadcrumb a:hover { color: rgba(255,255,255,.85); }
.breadcrumb span { color: rgba(255,255,255,.85); }

.page-hero h1 { color: #fff; margin-bottom: 1rem; }
.page-hero .lead { color: rgba(255,255,255,.75); font-size: 1.1rem; max-width: 640px; line-height: 1.7; }

/* === CONTENT SECTIONS === */
.content-section { padding: 4.5rem 0; }
.content-section.bg-alt { background: var(--bg-alt); }
.content-section.bg-dark {
  background: var(--bg-dark);
  color: #fff;
}
.content-section.bg-dark h2,
.content-section.bg-dark h3 { color: #fff; }
.content-section.bg-dark p,
.content-section.bg-dark li { color: rgba(255,255,255,.7); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

.two-col img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.content-body h2 { margin-bottom: .75rem; }
.content-body p { color: var(--text-muted); margin-bottom: 1rem; line-height: 1.75; }
.content-body .section-label { margin-bottom: .75rem; }

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin: 1.25rem 0;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  font-size: .95rem;
  color: var(--text);
}

.check-list li::before {
  content: "✓";
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--blue-light);
  color: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  font-weight: 700;
  margin-top: 1px;
}

.bg-dark .check-list li { color: rgba(255,255,255,.8); }
.bg-dark .check-list li::before { background: rgba(37,99,235,.25); color: #93c5fd; }

/* === INFO CARDS === */
.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.info-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.info-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.bg-alt .info-card { background: #fff; }

.info-card-icon {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.info-card h3 { font-size: 1rem; margin-bottom: .4rem; }
.info-card p { font-size: .88rem; color: var(--text-muted); line-height: 1.6; }

/* === HOSTING PRICING === */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.pricing-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  transition: var(--transition);
}

.pricing-card:hover { border-color: var(--blue); box-shadow: var(--shadow-lg); }

.pricing-card.featured {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(37,99,235,.08), var(--shadow-lg);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: #fff;
  font-size: .78rem;
  font-weight: 600;
  padding: .25rem .9rem;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-name { font-size: 1.1rem; font-weight: 700; margin-bottom: .25rem; }
.pricing-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--blue);
  margin: .75rem 0;
}
.pricing-price span { font-size: .9rem; color: var(--text-muted); font-weight: 400; }

.pricing-features {
  list-style: none;
  margin: 1.25rem 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .9rem;
  color: var(--text);
}

.pricing-features li::before {
  content: "✓";
  color: var(--blue);
  font-weight: 700;
  font-size: .8rem;
}

/* === PAGE CTA FOOTER === */
.page-cta {
  background: linear-gradient(135deg, var(--blue) 0%, #1d4ed8 100%);
  color: #fff;
  padding: 4rem 0;
  text-align: center;
}

.page-cta h2 { color: #fff; margin-bottom: .75rem; }
.page-cta p { color: rgba(255,255,255,.8); margin-bottom: 2rem; font-size: 1.05rem; }

@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; gap: 2rem; }
  .two-col.reverse { direction: ltr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .info-cards { grid-template-columns: 1fr; }
}
