* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f3f5f8;
    color: #111827;
    line-height: 1.6;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  .hero {
    min-height: 100vh;
    color: white;
    background:
      linear-gradient(90deg, rgba(2, 6, 23, 0.96) 0%, rgba(2, 6, 23, 0.82) 48%, rgba(2, 6, 23, 0.35) 100%),
      url("https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?auto=format&fit=crop&w=1800&q=85");
    background-size: cover;
    background-position: center;
    padding: 28px;
  }
  
  .navbar {
    max-width: 1180px;
    margin: 0 auto;
    padding: 18px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .brand {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  
  .site-logo {
    height: 120px;
    width: auto;
    display: block;
    border-radius: 10px;
  }
  
  .nav-links {
    display: flex;
    gap: 26px;
  }
  
  .nav-links a {
    color: #e5e7eb;
    font-weight: 800;
    font-size: 15px;
  }
  
  .nav-links a:hover {
    color: #f59e0b;
  }
  
  .nav-button {
    background: #f59e0b;
    color: #111827;
    padding: 12px 18px;
    border-radius: 999px;
    font-weight: 900;
  }
  
  .hero-content {
    max-width: 1180px;
    min-height: 78vh;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 50px;
  }
  
  .tagline {
    color: #f59e0b;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
  }
  
  .dark-tagline {
    color: #d97706;
  }
  
  .hero h1 {
    font-size: clamp(42px, 6vw, 76px);
    line-height: 0.95;
    letter-spacing: -2px;
    max-width: 850px;
    margin-bottom: 24px;
  }
  
  .hero-description {
    max-width: 720px;
    font-size: 20px;
    color: #e5e7eb;
    margin-bottom: 34px;
  }
  
  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 38px;
  }
  
  .btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 15px 24px;
    border-radius: 12px;
    font-weight: 900;
    transition: 0.2s ease;
  }
  
  .btn:hover {
    transform: translateY(-2px);
  }
  
  .btn-primary {
    background: #f59e0b;
    color: #111827;
  }
  
  .btn-secondary {
    color: white;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
  }
  
  .btn-whatsapp {
    background: #16a34a;
    color: white;
    margin-top: 12px;
  }
  
  .full {
    width: 100%;
  }
  
  .hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
  }
  
  .hero-points div {
    min-width: 150px;
    padding: 16px 18px;
    border-radius: 14px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.16);
  }
  
  .hero-points strong {
    display: block;
    font-size: 22px;
  }
  
  .hero-points span {
    color: #cbd5e1;
    font-size: 14px;
  }
  
  .discount-box {
    background: rgba(255,255,255,0.95);
    color: #111827;
    border-radius: 26px;
    padding: 30px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.35);
    max-width: 420px;
    justify-self: end;
  }
  
  .discount-box p {
    color: #92400e;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .discount-box strong {
    display: block;
    font-size: 76px;
    line-height: 1;
    color: #d97706;
    margin: 8px 0;
  }
  
  .discount-box span {
    display: block;
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 10px;
  }
  
  .discount-box small {
    color: #4b5563;
  }
  
  .section {
    max-width: 1180px;
    margin: 0 auto;
    padding: 90px 28px;
  }
  
  .intro-section {
    padding-bottom: 40px;
  }
  
  .intro-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 50px;
    align-items: center;
  }
  
  .intro-grid h2,
  .section-title h2,
  .cta h2,
  .contact-grid h2 {
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.05;
    letter-spacing: -1px;
  }
  
  .intro-grid p,
  .section-title p,
  .contact-grid p {
    color: #4b5563;
    font-size: 18px;
  }
  
  .section-title {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 45px;
  }
  
  .machine-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
  }
  
  .machine-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  }
  
  .machine-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
  }
  
  .machine-info {
    padding: 24px;
  }
  
  .machine-info h3 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  
  .machine-info p {
    color: #4b5563;
    margin-bottom: 18px;
  }
  
  .machine-info strong {
    display: inline-block;
    background: #fef3c7;
    color: #111827;
    padding: 8px 12px;
    border-radius: 999px;
  }
  
  .dark-card {
    background: #0f172a;
    color: white;
    display: flex;
    align-items: center;
  }
  
  .dark-card p {
    color: #cbd5e1;
  }
  
  .dark-card a {
    color: #f59e0b;
    font-weight: 900;
  }
  
  .badge {
    display: inline-block;
    background: #f59e0b;
    color: #111827;
    padding: 7px 12px;
    border-radius: 999px;
    font-weight: 900;
    margin-bottom: 16px;
  }
  
  .price-section {
    background:
      linear-gradient(rgba(2,6,23,0.94), rgba(2,6,23,0.94)),
      url("https://images.unsplash.com/photo-1581092918056-0c4c3acd3789?auto=format&fit=crop&w=1800&q=85");
    background-size: cover;
    background-position: center;
    color: white;
  }
  
  .light-title p {
    color: #cbd5e1;
  }
  
  .price-table {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    color: #111827;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 28px 70px rgba(0,0,0,0.25);
  }
  
  .price-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 28px;
    border-bottom: 1px solid #e5e7eb;
  }
  
  .price-row:last-child {
    border-bottom: none;
  }
  
  .price-row span {
    font-weight: 800;
  }
  
  .price-row strong {
    color: #d97706;
    font-size: 18px;
  }
  
  .price-note {
    max-width: 900px;
    margin: 24px auto 0;
    color: #cbd5e1;
    text-align: center;
    font-size: 14px;
  }
  
  .steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
  }
  
  .step-card {
    background: white;
    padding: 28px;
    border-radius: 22px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
    border: 1px solid #e5e7eb;
  }
  
  .step-card span {
    color: #d97706;
    font-weight: 900;
    font-size: 24px;
  }
  
  .step-card h3 {
    font-size: 22px;
    margin: 12px 0 10px;
  }
  
  .step-card p {
    color: #4b5563;
  }
  
  .cta {
    max-width: 1180px;
    margin: 0 auto 20px;
    padding: 44px;
    border-radius: 28px;
    background: #0f172a;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
  }
  
  .cta h2 {
    max-width: 800px;
  }
  
  .contact-section {
    padding-top: 70px;
  }
  
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: 40px;
    align-items: start;
  }
  
  .contact-details {
    margin-top: 28px;
    background: white;
    padding: 24px;
    border-radius: 22px;
    border: 1px solid #e5e7eb;
  }
  
  .contact-details p {
    margin-bottom: 8px;
    color: #111827;
  }
  
  .contact-details a {
    color: #d97706;
    font-weight: 800;
  }
  
  .contact-card {
    background: white;
    padding: 30px;
    border-radius: 24px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
    border: 1px solid #e5e7eb;
  }
  
  .contact-card h3 {
    font-size: 28px;
    margin-bottom: 10px;
  }
  
  .contact-card p {
    color: #4b5563;
    margin-bottom: 22px;
  }
  
  .contact-card small {
    display: block;
    color: #6b7280;
    margin-top: 14px;
  }
  
  footer {
    background: #020617;
    color: white;
    padding: 34px 28px;
  }
  
  .footer-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 20px;
  }
  
  .footer-inner p {
    color: #94a3b8;
  }
  
  .footer-links {
    display: flex;
    gap: 20px;
  }
  
  .footer-links a {
    color: #cbd5e1;
  }
  
  .footer-links a:hover {
    color: #f59e0b;
  }
  
  /* Rechtliche Seiten */
  
  .legal-header {
    background: #020617;
    color: white;
    padding: 28px;
  }
  
  .legal-nav {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
  }
  
  .legal-nav a {
    color: white;
    font-weight: 900;
  }
  
  .legal-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 70px 28px;
  }
  
  .legal-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
    border: 1px solid #e5e7eb;
  }
  
  .legal-card h1 {
    font-size: 42px;
    line-height: 1.1;
    margin-bottom: 28px;
  }
  
  .legal-card h2 {
    margin-top: 30px;
    margin-bottom: 10px;
    font-size: 24px;
  }
  
  .legal-card h3 {
    margin-top: 22px;
    margin-bottom: 8px;
    font-size: 20px;
  }
  
  .legal-card p,
  .legal-card li {
    color: #374151;
    margin-bottom: 10px;
  }
  
  .legal-card ul {
    padding-left: 20px;
  }
  
  .legal-card a {
    color: #d97706;
    font-weight: 800;
  }
  
  @media (max-width: 950px) {
    .nav-links,
    .nav-button {
      display: none;
    }
  
    .hero-content,
    .intro-grid,
    .contact-grid {
      grid-template-columns: 1fr;
    }
  
    .discount-box {
      justify-self: start;
    }
  
    .machine-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .steps-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .cta {
      flex-direction: column;
      align-items: flex-start;
    }
  }
  
  @media (max-width: 650px) {
    .hero {
      padding: 20px;
    }
  
    .hero-content {
      min-height: auto;
      padding: 70px 0 40px;
    }
  
    .machine-grid,
    .steps-grid {
      grid-template-columns: 1fr;
    }
  
    .price-row {
      flex-direction: column;
      padding: 18px 22px;
    }
  
    .footer-inner {
      flex-direction: column;
    }
  
    .legal-card {
      padding: 26px;
    }
  
    .legal-card h1 {
      font-size: 34px;
    }.footer-logo {
        height: 58px;
        width: auto;
        display: block;
        margin-bottom: 10px;
        border-radius: 8px;
      }
  }