/* CSS Variables */
:root {
  --primary: #92400e;
  --primary-dark: #78350f;
  --accent: #92400e;
  --text-dark: #1f2937;
  --text-gray: #6b7280;
  --bg-stone-50: #fafaf9;
  --bg-stone-100: #f5f5f4;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-stone-50);
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
.header {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--primary);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.125rem;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
}

.nav {
  display: none;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .nav {
    display: flex;
  }
}

.nav-link {
  color: var(--text-gray);
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--primary);
}

.mobile-menu-btn {
  display: block;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  padding: 1rem;
  border-top: 1px solid #e5e7eb;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  padding: 0.75rem 0;
  border-bottom: 1px solid #e5e7eb;
}

/* Hero */
.hero {
  background: linear-gradient(to bottom right, var(--bg-stone-100), var(--bg-stone-50), #fef3c7);
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .hero {
    padding: 5rem 0;
  }
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-badge {
  display: inline-block;
  background: rgba(146, 64, 14, 0.1);
  color: var(--primary);
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

.text-accent {
  color: var(--primary);
  display: block;
  margin-top: 0.5rem;
}

.hero-text {
  font-size: 1.125rem;
  color: var(--text-gray);
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .hero-text {
    font-size: 1.25rem;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.hero-image {
  position: relative;
}

.hero-image img {
  border-radius: 1rem;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 1;
  object-fit: cover;
}

.hero-badge-float {
  position: absolute;
  bottom: -1rem;
  left: -1rem;
  background: var(--white);
  padding: 1rem;
  border-radius: 0.75rem;
  box-shadow: var(--shadow-lg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 0.5rem;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-secondary {
  background: var(--white);
  color: var(--text-dark);
  border: 1px solid #e5e7eb;
}

.btn-secondary:hover {
  background: #f9fafb;
}

.btn-white {
  background: var(--white);
  color: var(--primary);
}

.btn-white:hover {
  background: #f3f4f6;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

/* Disclosure Banner */
.disclosure-banner {
  background: #fef3c7;
  border-bottom: 1px solid #fcd34d;
  padding: 0.75rem 0;
}

.disclosure-banner p {
  text-align: center;
  font-size: 0.875rem;
  color: #92400e;
}

/* Sections */
.section {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .section {
    padding: 5rem 0;
  }
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
}

.bg-white {
  background: var(--white);
}

.bg-stone-50 {
  background: var(--bg-stone-50);
}

/* Story Section */
.story-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .story-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.story-image img {
  border-radius: 1rem;
  box-shadow: var(--shadow-lg);
}

.story-content .section-title {
  margin-bottom: 1.5rem;
}

/* Text Utilities */
.text-gray-600 {
  color: var(--text-gray);
  line-height: 1.75;
}

.mb-4 {
  margin-bottom: 1rem;
}

.text-center {
  text-align: center;
}

.mt-8 {
  margin-top: 2rem;
}

/* Features Grid */
.features-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s;
}

.feature-card:hover {
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(146, 64, 14, 0.1);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.feature-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--primary);
}

.feature-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.feature-text {
  color: var(--text-gray);
  font-size: 0.9375rem;
}

/* Products Grid */
.products-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.product-item {
  text-align: center;
}

.product-image {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-md);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.product-image:hover img {
  transform: scale(1.05);
}

.product-name {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.product-category {
  font-size: 0.875rem;
  color: var(--text-gray);
}

.product-price {
  color: var(--primary);
  font-weight: 700;
  margin-top: 0.25rem;
}

.link-arrow {
  color: var(--primary);
  font-weight: 600;
}

.link-arrow:hover {
  text-decoration: underline;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(to right, var(--primary), rgba(146, 64, 14, 0.8));
  padding: 4rem 0;
  color: var(--white);
}

.cta-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .cta-title {
    font-size: 2.5rem;
  }
}

.cta-text {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: var(--bg-stone-50);
  padding: 1.5rem;
  border-radius: 1rem;
}

.stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.star {
  width: 1.25rem;
  height: 1.25rem;
  color: #fbbf24;
}

.testimonial-text {
  color: var(--text-gray);
  font-style: italic;
  margin-bottom: 1rem;
  font-size: 0.9375rem;
}

.testimonial-author {
  font-weight: 600;
  font-size: 0.875rem;
}

/* Cards Grid */
.cards-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .cards-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s;
  display: block;
}

.card:hover {
  box-shadow: var(--shadow-md);
}

.card:hover .card-title {
  color: var(--primary);
}

.card-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}

.card-text {
  color: var(--text-gray);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.card-link {
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 500;
}

.card:hover .card-link {
  text-decoration: underline;
}

/* Final CTA */
.final-cta {
  background: linear-gradient(to bottom right, #fef3c7, var(--bg-stone-100));
}

.final-cta-text {
  font-size: 1.125rem;
  color: var(--text-gray);
  margin-bottom: 2rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

/* Final Disclosure */
.final-disclosure {
  background: #f3f4f6;
  padding: 1.5rem 0;
}

.final-disclosure p {
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-gray);
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Footer */
.footer {
  background: #111827;
  color: #d1d5db;
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.logo-icon-sm {
  width: 2rem;
  height: 2rem;
  background: var(--primary);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.875rem;
}

.logo-text-sm {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
}

.footer-text {
  font-size: 0.875rem;
  color: #9ca3af;
}

.footer-heading {
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: #d1d5db;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-text-list {
  list-style: none;
  font-size: 0.875rem;
  color: #9ca3af;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid #1f2937;
  margin-top: 2rem;
  padding-top: 2rem;
  text-align: center;
  font-size: 0.875rem;
  color: #6b7280;
}

.footer-bottom p:first-child {
  margin-bottom: 0.5rem;
}

.disclaimer {
  font-size: 0.75rem;
  max-width: 64rem;
  margin: 0 auto;
}

/* Modelle Vergleich Page */
.hero-simple {
  background: linear-gradient(to right, #44403c, #57534e);
  padding: 4rem 0;
  color: white;
}

.page-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 1rem 0;
}

.page-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
}

.intro-text {
  color: var(--text-gray);
  font-size: 1.125rem;
  max-width: 64rem;
  margin: 0 auto 3rem;
  line-height: 1.75;
}

.product-cards-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .product-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.product-card {
  background: var(--bg-stone-50);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s;
}

.product-card:hover {
  box-shadow: var(--shadow-md);
}

.product-card-image {
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}

.product-card-content {
  padding: 1.5rem;
}

.product-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.product-category {
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 500;
}

.product-price-lg {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
}

.product-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.product-description {
  color: var(--text-gray);
  font-size: 0.9375rem;
  margin-bottom: 1rem;
}

.product-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.product-features li {
  font-size: 0.875rem;
  color: var(--text-gray);
}

.check {
  color: var(--primary);
  margin-right: 0.5rem;
}

.product-ideal, .product-colors {
  font-size: 0.875rem;
  color: var(--text-gray);
  margin-bottom: 0.5rem;
}

.btn-block {
  display: block;
  width: 100%;
  margin-top: 1rem;
}

.table-wrapper {
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.comparison-table th {
  background: var(--bg-stone-100);
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  border-bottom: 1px solid #e5e7eb;
}

.comparison-table td {
  padding: 1rem;
  border-bottom: 1px solid #f3f4f6;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.font-semibold {
  font-weight: 600;
}

.price {
  color: var(--primary);
  font-weight: 700;
}

.btn-sm {
  padding: 0.5rem 1rem;
  background: var(--primary);
  color: white;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background 0.2s;
}

.btn-sm:hover {
  background: var(--primary-dark);
}

.why-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.why-item {
  text-align: center;
}

.why-icon {
  width: 4rem;
  height: 4rem;
  background: rgba(146, 64, 14, 0.1);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.why-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--primary);
}

.why-item h3 {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.why-item p {
  color: var(--text-gray);
  font-size: 0.9375rem;
}

.final-products-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
  .final-products-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.final-product-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: 0.75rem;
  text-align: center;
  transition: background 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.final-product-item:hover {
  background: rgba(255, 255, 255, 0.2);
}

.final-product-item img {
  width: 5rem;
  height: 5rem;
  object-fit: cover;
  border-radius: 0.5rem;
  margin-bottom: 0.5rem;
}

.final-product-name {
  font-weight: 600;
  font-size: 0.875rem;
  color: white;
}

.final-product-price {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
}

.text-lg {
  font-size: 1.125rem;
}
