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

:root {
  --primary: #FFD100;
  --primary-dark: #E5BC00;
  --secondary: #32373c;
  --secondary-light: #4a5058;
  --background: #ffffff;
  --background-alt: #f8f9fa;
  --foreground: #313131;
  --foreground-light: #6b7280;
  --accent-blue: #0693e3;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  color: var(--foreground);
  line-height: 1.6;
}

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

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
}

.nav-logo img {
  height: 32px;
  width: auto;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: var(--secondary);
  transition: color 0.3s;
}

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

.btn {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}

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

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

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 700;
}

.btn-outline {
  border: 2px solid white;
  color: white;
  background: transparent;
}

.btn-outline:hover {
  background: white;
  color: var(--secondary);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 64px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: linear-gradient(to bottom, rgba(50, 55, 60, 0.85), rgba(50, 55, 60, 0.7)), url('../public/handy-shop.jpg');
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  background: var(--primary);
  color: var(--secondary);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero h1 span {
  color: var(--primary);
}

.hero-text {
  font-size: 1.25rem;
  color: #e5e7eb;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-text span {
  color: var(--primary);
  font-weight: 700;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.hero-stats {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
}

.stat-label {
  color: #d1d5db;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 1s infinite;
}

.scroll-indicator svg {
  width: 24px;
  height: 24px;
  color: white;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

/* Section Styles */
.section {
  padding: 5rem 0;
}

.section-white {
  background: white;
}

.section-gray {
  background: var(--background-alt);
}

.section-dark {
  background: var(--secondary);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.section-dark .section-header h2 {
  color: white;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--foreground-light);
  max-width: 600px;
  margin: 0 auto;
}

.section-dark .section-header p {
  color: #d1d5db;
}

/* Vorteile Cards */
.vorteile-grid {
  display: grid;
  gap: 2rem;
}

.vorteil-card {
  background: var(--background-alt);
  border-radius: 1rem;
  padding: 2rem;
  transition: box-shadow 0.3s;
}

.vorteil-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.vorteil-icon {
  width: 64px;
  height: 64px;
  background: var(--primary);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.vorteil-icon svg {
  width: 32px;
  height: 32px;
  color: var(--secondary);
}

.vorteil-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.75rem;
}

.vorteil-card p {
  color: var(--foreground-light);
}

/* Provision Cards */
.provision-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 4rem;
}

.provision-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.provision-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.provision-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.provision-icon-yellow {
  background: var(--primary);
}

.provision-icon-blue {
  background: var(--accent-blue);
}

.provision-icon svg {
  width: 24px;
  height: 24px;
}

.provision-icon-yellow svg {
  color: var(--secondary);
}

.provision-icon-blue svg {
  color: white;
}

.provision-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
}

.provision-amount {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
}

.provision-amount .amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--secondary);
}

.provision-amount .label {
  color: var(--foreground-light);
  margin-top: 0.5rem;
}

/* Beispielrechnung */
.beispiel-box {
  background: linear-gradient(to right, var(--primary), var(--primary-dark));
  border-radius: 1rem;
  padding: 2rem;
}

.beispiel-box h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
  text-align: center;
  margin-bottom: 2rem;
}

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

.beispiel-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
}

.beispiel-card.highlight {
  background: white;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.beispiel-label {
  font-size: 0.875rem;
  color: var(--foreground-light);
  margin-bottom: 0.5rem;
}

.beispiel-card.highlight .beispiel-label {
  color: var(--primary);
  font-weight: 600;
}

.beispiel-count {
  font-size: 1.125rem;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.beispiel-calc {
  font-size: 0.875rem;
  color: var(--foreground-light);
  margin-bottom: 1rem;
}

.beispiel-result {
  border-top: 1px solid #e5e7eb;
  padding-top: 1rem;
}

.beispiel-result .total {
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary);
}

.beispiel-card.highlight .beispiel-result .total {
  font-size: 2.5rem;
}

.beispiel-result .period {
  font-size: 0.875rem;
  color: var(--foreground-light);
}

.beispiel-note {
  text-align: center;
  color: rgba(50, 55, 60, 0.7);
  font-size: 0.875rem;
  margin-top: 2rem;
}

/* Steps */
.steps-grid {
  display: grid;
  gap: 2rem;
}

.step {
  position: relative;
  text-align: center;
}

.step-number {
  width: 64px;
  height: 64px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
  margin: 0 auto 1.5rem;
}

.step h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.75rem;
}

.step p {
  color: var(--foreground-light);
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.faq-item p {
  color: var(--foreground-light);
}

/* Contact Form */
.contact-container {
  max-width: 900px;
  margin: 0 auto;
}

.contact-form {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.form-row {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 209, 0, 0.2);
}

.form-group textarea {
  resize: none;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.checkbox-group input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
}

.checkbox-group span {
  font-size: 0.875rem;
  color: var(--foreground-light);
}

.submit-btn {
  width: 100%;
  padding: 1rem;
  font-size: 1.125rem;
}

.form-note {
  text-align: center;
  font-size: 0.875rem;
  color: var(--foreground-light);
  margin-top: 1rem;
}

/* Footer */
.footer {
  background: #1a1d20;
  padding: 3rem 0;
}

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

.footer-logo img {
  height: 28px;
  width: auto;
  margin-bottom: 1rem;
}

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

.footer h4 {
  color: white;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 0.5rem;
}

.footer ul a {
  color: #9ca3af;
  transition: color 0.3s;
}

.footer ul a:hover {
  color: var(--primary);
}

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

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

  .hero h1 {
    font-size: 3.75rem;
  }

  .hero-buttons {
    flex-direction: row;
  }

  .hero-stats {
    grid-template-columns: repeat(4, 1fr);
  }

  .section-header h2 {
    font-size: 2.5rem;
  }

  .vorteile-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .provision-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .beispiel-box {
    padding: 3rem;
  }

  .beispiel-box h3 {
    font-size: 2rem;
  }

  .beispiel-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .beispiel-card.highlight {
    transform: scale(1.1);
  }

  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .nav-container,
  .container {
    padding: 0 2rem;
  }
}
