@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --color-primary: #000000;
  --color-accent: #333333;
  --color-gold: #000000;
  --color-warm: #f2f2f2;
  --color-bg: #ffffff;
  --color-bg-alt: #f7f7f7;
  --color-text: #111111;
  --color-text-light: #555555;
  --color-border: #e0e0e0;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-width: 680px;
  --spacing-xl: 4rem;
  --spacing-lg: 2.5rem;
  --spacing-md: 1.5rem;
  --spacing-sm: 1rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.8;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.editorial-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hero-section {
  padding: 5rem 0 3rem;
  text-align: center;
  position: relative;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, #000);
}

.hero-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #000;
  border: 1px solid #000;
  padding: 0.4rem 1.2rem;
  margin-bottom: 2rem;
  background: transparent;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.15;
  color: #000;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--color-text-light);
  font-weight: 300;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

.article-body {
  padding: var(--spacing-xl) 0;
}

.article-body p {
  font-size: 1.05rem;
  margin-bottom: var(--spacing-md);
  color: var(--color-text);
  line-height: 1.85;
}

.article-body p strong {
  color: #000;
  font-weight: 700;
}

.article-body h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700;
  color: #000;
  margin: var(--spacing-xl) 0 var(--spacing-md);
  line-height: 1.3;
  position: relative;
  padding-left: 1.5rem;
}

.article-body h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.3em;
  width: 4px;
  height: 1.2em;
  background: #000;
  border-radius: 2px;
}

.article-body h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: #000;
  margin: var(--spacing-lg) 0 var(--spacing-sm);
}

.article-image {
  width: 100%;
  margin: var(--spacing-lg) 0;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.article-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.article-image:hover img {
  transform: scale(1.02);
}

.article-image figcaption {
  font-size: 0.8rem;
  color: var(--color-text-light);
  text-align: center;
  padding: 0.8rem 0;
  font-style: italic;
  border-bottom: 1px solid var(--color-border);
}

.highlight-box {
  background: var(--color-warm);
  border-left: 4px solid #000;
  padding: 1.8rem 2rem;
  margin: var(--spacing-lg) 0;
  border-radius: 0 8px 8px 0;
}

.highlight-box p {
  font-size: 1.1rem;
  font-weight: 500;
  color: #000;
  margin-bottom: 0;
  line-height: 1.7;
}

.cta-block {
  text-align: center;
  padding: var(--spacing-xl) 2rem;
  margin: var(--spacing-xl) 0;
  background: #000;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.cta-block::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
}

.cta-block h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 0.8rem;
  position: relative;
}

.cta-block p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  position: relative;
}

.cta-button {
  display: inline-block;
  background: #fff;
  color: #000;
  padding: 1rem 2.5rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all 0.3s ease;
  position: relative;
}

.cta-button:hover {
  background: #e5e5e5;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.testimonial {
  margin: var(--spacing-xl) 0;
  padding: 2.5rem;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  position: relative;
}

.testimonial::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 5rem;
  color: #ccc;
  position: absolute;
  top: -0.2rem;
  left: 1.5rem;
  line-height: 1;
  opacity: 0.5;
}

.testimonial blockquote {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: 1.2rem;
  padding-left: 0.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.testimonial-author .avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: #000;
  border: 1px solid var(--color-border);
}

.testimonial-author .info {
  font-size: 0.85rem;
}

.testimonial-author .info .name {
  font-weight: 600;
  color: #000;
}

.testimonial-author .info .role {
  color: var(--color-text-light);
}

.testimonial-stars {
  color: #000;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.feature-list {
  list-style: none;
  margin: var(--spacing-lg) 0;
  padding: 0;
}

.feature-list li {
  padding: 1rem 0 1rem 2.5rem;
  position: relative;
  border-bottom: 1px solid var(--color-border);
  font-size: 1rem;
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 1rem;
  color: #000;
  font-size: 0.9rem;
}

.divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, #000, transparent);
  margin: var(--spacing-xl) auto;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: var(--spacing-lg) 0;
  text-align: center;
}

.stat-item {
  padding: 1.5rem 1rem;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: #000;
  display: block;
}

.stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-text-light);
  margin-top: 0.3rem;
}

.product-specs {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
  margin: var(--spacing-lg) 0;
}

.product-specs table {
  width: 100%;
  border-collapse: collapse;
}

.product-specs th,
.product-specs td {
  padding: 1rem 1.5rem;
  text-align: left;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--color-border);
}

.product-specs th {
  font-weight: 600;
  color: #000;
  width: 40%;
  background: var(--color-bg-alt);
}

.product-specs tr:last-child th,
.product-specs tr:last-child td {
  border-bottom: none;
}

.inline-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--color-bg-alt);
  padding: 1.5rem 2rem;
  border-radius: 8px;
  margin: var(--spacing-lg) 0;
  gap: 1rem;
  border: 1px solid var(--color-border);
}

.inline-cta p {
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 0;
  color: #000;
}

.inline-cta .cta-button {
  white-space: nowrap;
  padding: 0.8rem 1.8rem;
  font-size: 0.8rem;
  background: #000;
  color: #fff;
}

.inline-cta .cta-button:hover {
  background: #333;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.footer {
  background: #000;
  color: rgba(255, 255, 255, 0.7);
  padding: 3rem 0 2rem;
  margin-top: var(--spacing-xl);
}

.footer-content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #fff;
}

.footer-impressum {
  font-size: 0.8rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-impressum h4 {
  color: #fff;
  font-size: 0.85rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.footer-disclaimer {
  font-size: 0.75rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  padding-top: 1rem;
}

.footer-copyright {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 1.5rem;
  text-align: center;
}

.page-header {
  padding: 4rem 0 2rem;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: var(--spacing-xl);
}

.page-header h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #000;
}

.legal-content {
  padding: 2rem 0 4rem;
}

.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: #000;
  margin: 2.5rem 0 1rem;
}

.legal-content p,
.legal-content li {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--color-text-light);
  margin-bottom: 1rem;
}

.legal-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.contact-form {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 2.5rem;
  margin: var(--spacing-lg) 0;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
  background: var(--color-bg-alt);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #000;
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-submit {
  background: #000;
  color: #fff;
  border: none;
  padding: 1rem 2.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-body);
}

.form-submit:hover {
  background: #333;
  transform: translateY(-1px);
}

.about-intro {
  font-size: 1.15rem;
  color: var(--color-text-light);
  text-align: center;
  max-width: 560px;
  margin: 0 auto var(--spacing-xl);
  line-height: 1.8;
}

@media (max-width: 768px) {
  .stats-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .inline-cta {
    flex-direction: column;
    text-align: center;
  }

  .hero-section {
    padding: 3.5rem 0 2rem;
  }

  .article-body {
    padding: var(--spacing-lg) 0;
  }

  .cta-block {
    padding: var(--spacing-lg) 1.5rem;
  }

  .testimonial {
    padding: 2rem 1.5rem;
  }

  .footer-nav {
    flex-direction: column;
    gap: 0.8rem;
  }

  .product-specs th,
  .product-specs td {
    padding: 0.8rem 1rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 15px;
  }

  .editorial-container {
    padding: 0 1rem;
  }

  .hero-title {
    font-size: 1.9rem;
  }

  .highlight-box {
    padding: 1.3rem 1.5rem;
  }

  .cta-button {
    padding: 0.9rem 2rem;
    font-size: 0.8rem;
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
