@import url('https://fonts.googleapis.com/css2?family=Staatliches&family=Noto+Sans:wght@400;500;600;700&display=swap');

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Noto Sans', sans-serif;
  color: #0c0d0c;
  background: #fff;
  overflow-x: hidden;
}
h1, h2, h3, h4 {
  font-family: 'Staatliches', sans-serif;
  font-weight: 400;
  letter-spacing: 0.3px;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; }
.intro, .details { line-height: 1.7; font-size: 15.5px; }
.intro p, .details p { margin-bottom: 12px; }
.details ul { padding-left: 20px; margin: 10px 0; }
.details hr { border: none; border-top: 1px solid #eee; margin: 16px 0; }

.site-header {
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
}
.lang-switcher { display: flex; gap: 6px; flex-wrap: nowrap; }
.lang-switcher a {
  font-size: 13px;
  font-weight: 600;
  color: #555;
  padding: 4px 8px;
  border-radius: 4px;
}
.lang-switcher a.active { background: #69727D; color: #fff; }

.btn {
  display: inline-block;
  background: #69727D;
  color: #fff;
  padding: 12px 24px;
  border-radius: 3px;
  font-family: 'Noto Sans', sans-serif;
  font-weight: 500;
  margin-top: 15px;
  transition: background 0.25s ease, transform 0.2s ease;
}
.btn:hover { background: #545c66; transform: translateY(-2px); }

.hero { padding: 30px 20px 50px; max-width: 1100px; margin: 0 auto; }
.hero-inner { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; }
.hero-image, .hero-text { flex: 1 1 380px; }
.hero-text h1 { font-size: 40px; margin-bottom: 15px; line-height: 1.2; }

.usp {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 30px 20px 50px;
}
.usp-card { flex: 1 1 280px; }
.usp-card h3 { font-size: 20px; margin-bottom: 10px; }
.usp-card p { font-size: 14.5px; line-height: 1.6; color: #333; white-space: pre-line; }

.product-row {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
  border-top: 1px solid #f0f0f0;
}
.product-row.reverse { flex-direction: row-reverse; }
.product-image, .product-info { flex: 1 1 400px; }
.product-info h2 { font-size: 28px; margin-bottom: 12px; }

.cta-final {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 50px 20px;
  border-top: 1px solid #f0f0f0;
}
.cta-final h2 { font-size: 32px; margin-bottom: 15px; }
.cta-final h3 { font-size: 20px; margin: 20px 0 10px; }
.cta-final .intro { text-align: left; }

.site-footer {
  padding: 20px;
  text-align: center;
  border-top: 1px solid #eee;
}
.disclaimer { font-size: 12px; color: #999; max-width: 700px; margin: 0 auto; }

@media (max-width: 700px) {
  .hero-inner, .product-row, .product-row.reverse { flex-direction: column; text-align: center; }
  .hero-text h1 { font-size: 30px; }
  .site-header { flex-wrap: wrap; gap: 10px; }
}
