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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: linear-gradient(to bottom right, #ffedd5, #fef3c7, #dcfce7);
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
}

.gradient-text {
    background: linear-gradient(90deg, #dc2626 0%, #ea580c 25%, #f59e0b 50%, #84cc16 75%, #22c55e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Header */
header {
    background: linear-gradient(90deg, #dc2626 0%, #ea580c 25%, #f59e0b 50%, #84cc16 75%, #22c55e 100%);
    padding: 1rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

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

.logo-img {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 4px;
}

.logo-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.site-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: white;
}

.site-title-bold {
    font-weight: 900;
}

/* ===== CSS-only Burger ===== */
.nav-toggle-checkbox {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.nav-toggle-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 9999px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12);
    transition: transform 0.15s ease, background 0.2s ease;
    user-select: none;
}

.nav-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.26);
}

.nav-toggle-btn:active {
    transform: scale(0.98);
}

/* Icon: 3 Linien -> X */
.nav-toggle-icon {
    position: relative;
    width: 22px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    display: block;
    transition: background 0.2s ease;
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
    content: "";
    position: absolute;
    left: 0;
    width: 22px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: transform 0.22s ease, top 0.22s ease, opacity 0.22s ease;
}

.nav-toggle-icon::before {
    top: -7px;
}

.nav-toggle-icon::after {
    top: 7px;
}

/* Navigation */
header nav {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 1rem;
    padding: 0.6rem 0 0.25rem 0;
}

header nav a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

header nav a:hover {
    color: #fef3c7;
}

/* Checkbox checked => Menu auf */
.nav-toggle-checkbox:checked ~ header nav,
.nav-toggle-checkbox:checked ~ nav {
    display: flex;
}

.nav-toggle-checkbox:checked ~ nav {
    display: flex;
}

/* Icon-Animation in X */
.nav-toggle-checkbox:checked + .nav-toggle-btn .nav-toggle-icon {
    background: transparent;
}

.nav-toggle-checkbox:checked + .nav-toggle-btn .nav-toggle-icon::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle-checkbox:checked + .nav-toggle-btn .nav-toggle-icon::after {
    top: 0;
    transform: rotate(-45deg);
}

/* Desktop: normales Menü, Burger aus */
@media (min-width: 768px) {
    .nav-toggle-btn {
        display: none;
    }

    header nav {
        display: flex;
        width: auto;
        flex-direction: row;
        gap: 2rem;
        padding: 0;
    }
}

/* Hero */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    pointer-events: none;
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.circle-1 {
    top: 5rem;
    left: 2.5rem;
    width: 16rem;
    height: 16rem;
    background: #fb923c;
}

.circle-2 {
    bottom: 5rem;
    right: 2.5rem;
    width: 20rem;
    height: 20rem;
    background: #fbbf24;
    animation-delay: 1s;
}

.circle-3 {
    top: 50%;
    left: 50%;
    width: 18rem;
    height: 18rem;
    background: #86efac;
    animation-delay: 2s;
}

.hero-content {
    max-width: 1152px;
    text-align: center;
    position: relative;
    z-index: 10;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-icon {
    display: inline-block;
    margin-bottom: 1.5rem;
}

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

.hero-subtitle {
    font-size: 1.5rem;
    color: #374151;
    margin-bottom: 2rem;
    font-weight: 500;
    max-width: 768px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn {
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background: linear-gradient(135deg, #ea580c 0%, #f59e0b 50%, #84cc16 100%);
    color: white;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(234, 88, 12, 0.3);
}

.btn-secondary {
    background: white;
    color: #1f2937;
    border: 2px solid #e5e7eb;
}

.btn-secondary:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.hero-note {
    margin-top: 3rem;
    font-size: 0.875rem;
    color: #6b7280;
    font-style: italic;
}

.hero-note-highlight {
    font-weight: 700;
    color: #ea580c;
}

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

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

/* Benefits */
.benefits {
    padding: 5rem 1.5rem;
    background: white;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease-out;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 768px;
    margin: 0 auto;
}

.benefits-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

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

@media (min-width: 1024px) {
    .benefits-grid { grid-template-columns: repeat(4, 1fr); }
    .section-title { font-size: 3rem; }
}

.benefit-card {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: 1.5rem;
    transition: all 0.3s;
    animation: fadeInUp 0.8s ease-out;
}

.benefit-card:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(90deg, #dc2626 0%, #ea580c 25%, #f59e0b 50%, #84cc16 75%, #22c55e 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 30px rgba(251, 191, 36, 0.3);
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #1f2937;
}

.benefit-description {
    color: #6b7280;
    line-height: 1.6;
}

/* Products */
.products {
    padding: 5rem 1.5rem;
    background: linear-gradient(to bottom right, #fef3c7, #ffedd5, #fee2e2);
}

.products-grid {
    max-width: 1280px;
    margin: 0 auto 3rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

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

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

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

.product-card {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.product-image {
    position: relative;
    height: 12rem;
    background: linear-gradient(to bottom right, #ffedd5, #fef3c7);
    overflow: hidden;
}

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

.product-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: #ef4444;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
}

.product-content {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-name {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1f2937;
    min-height: 3rem;
    display: flex;
    align-items: center;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.product-des {
    font-size: 0.7rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: #1f2937;
    min-height: 3rem;
    display: flex;
    align-items: center;
}

/* ══════════════════════════════════════════
   MARKETING – Accordion-Bereich (RANDAUS!)
══════════════════════════════════════════ */
.marketing {
  padding: 5rem 1.5rem;
  background: white;
}

/* Accordion-Wrapper */
.marketing-accordion {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Einzelnes Akkordeon-Element – KEIN RAND! */
.accordion-item {
  border-radius: 1.25rem;
  overflow: hidden;
  /* ✅ KEIN SCHATTEN, KEIN BORDER */
}

/* Header-Button */
.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(to right, #fff7ed, #fffbeb, #f0fdf4);
  border: none;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  text-align: left;
  transition: background 0.25s;
  gap: 1rem;
}

.accordion-header:hover,
.accordion-header.active {
  background: linear-gradient(to right, #ffedd5, #fef3c7, #dcfce7);
}

.accordion-header-left {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.accordion-icon {
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  background: linear-gradient(135deg, #ea580c 0%, #f59e0b 50%, #84cc16 100%);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 0 20px rgba(251, 191, 36, 0.25);
}

.accordion-label {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1f2937;
}

.accordion-count {
  font-size: 0.8rem;
  font-weight: 600;
  color: #ea580c;
  background: rgba(234, 88, 12, 0.1);
  padding: 0.2rem 0.6rem;
  border-radius: 9999px;
  white-space: nowrap;
}

.accordion-chevron {
  color: #9ca3af;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.accordion-header.active .accordion-chevron {
  transform: rotate(180deg);
}

/* Panel */
.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  background: linear-gradient(to bottom right, #fef9f5, #fefce8, #f0fdf4);
}

.accordion-panel.open {
  max-height: 2000px;
  padding: 1.5rem;
}

/* Grid innerhalb des Panels */
.marketing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 640px)  { .marketing-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px)  { .marketing-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1024px) { .marketing-grid { grid-template-columns: repeat(5, 1fr); } }
@media (min-width: 1280px) { .marketing-grid { grid-template-columns: repeat(7, 1fr); } }

/* Marketing-Karte – KEIN RAND! */
.marketing-card {
  background: white;
  border-radius: 1.2rem;
  overflow: hidden;
  /* ✅ KEIN SCHATTEN */
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: transform 0.3s;
}

.marketing-card:hover {
  transform: translateY(-4px);
  /* ✅ KEIN HOVER-SCHATTEN */
}

/* Vorschaubild */
.marketing-card-thumb {
  position: relative;
  height: 11rem;
  background: linear-gradient(135deg, #ffedd5, #fef3c7, #dcfce7);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.marketing-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.marketing-card:hover .marketing-card-thumb img {
  transform: scale(1.00);
}

/* Fallback wenn Bild fehlt */
.marketing-card-thumb.thumb-fallback::after {
  content: "🖼";
  font-size: 2rem;
  opacity: 0.4;
}

/* Download-Icon-Overlay */
.marketing-download-icon {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  background: linear-gradient(135deg, #ea580c, #f59e0b);
  color: white;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.25s, transform 0.25s;
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}

.marketing-card:hover .marketing-download-icon {
  opacity: 1;
  transform: scale(1);
}

/* Karten-Body */
.marketing-card-body {
  padding: 0.65rem 0.75rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  flex-grow: 1;
}

.marketing-card-name {
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: #1f2937;
  line-height: 1.35;
}

.marketing-card-ext {
  font-size: 0.65rem;
  font-weight: 700;
  color: #ea580c;
  background: rgba(234, 88, 12, 0.08);
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
  align-self: flex-start;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* CTA */
.cta {
    padding: 5rem 1.5rem;
    background: white;
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    pointer-events: none;
}

.cta-circle-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 24rem;
    height: 24rem;
    background: #f97316;
    border-radius: 50%;
    filter: blur(60px);
}

.cta-circle-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 24rem;
    height: 24rem;
    background: #22c55e;
    border-radius: 50%;
    filter: blur(60px);
}

.cta-content {
    max-width: 896px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.cta-description {
    font-size: 1.25rem;
    color: #374151;
    margin-bottom: 2.5rem;
    max-width: 768px;
    margin-left: auto;
    margin-right: auto;
}

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

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

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

/* Footer */
footer {
    background: linear-gradient(90deg, #dc2626 0%, #ea580c 25%, #f59e0b 50%, #84cc16 75%, #22c55e 100%);
    padding: 2rem 1.5rem;
    color: white;
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}

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

.footer-logo-img {
    width: 2.5rem;
    height: 2.5rem;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3px;
}

.footer-logo-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-title-bold {
    font-weight: 900;
}

.footer-tagline {
    color: #fef3c7;
    margin-bottom: 1rem;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: #fef3c7;
    margin-bottom: 1.5rem;
}

.footer-nav a {
    color: #fef3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: white;
}

.footer-copyright {
    font-size: 0.75rem;
    color: #fef3c7;
}
