/* === BRANDING SECTION === */
.brand-banner {
  padding: 60px 20px;
  text-align: center;
  background: linear-gradient(to right, rgba(0,242,255,0.05), transparent);
}

.brand-banner img {
  max-width: 160px;
  margin-bottom: 20px;
}

.section-heading {
  font-family: var(--heading);
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 20px;
  text-align: center;
}
/* === VARIABLEN & GRUNDLAGEN === */
:root {
  --bg: #090E21;
  --accent: #00F2FF;
  --text: #F0F4FF;
  --heading: 'Space Grotesk', sans-serif;
  --body: 'Inter', sans-serif;
}

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

body {
  font-family: var(--body);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  scroll-behavior: smooth;
  background-image: radial-gradient(circle at top left, #0A0E2A 0%, #090E21 100%);
}

/* === HEADER === */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 48px;
  background: rgba(10, 14, 42, 0.9);
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(12px);
}

.logo {
  height: 48px;
}

.nav a {
  color: var(--text);
  margin-left: 24px;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

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

/* === HERO SECTION === */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 100px 48px;
  flex-wrap: wrap;
  gap: 40px;
}

.hero-content {
  max-width: 600px;
  animation: fadeInUp 1.2s ease both;
}

.hero-content h1 {
  font-family: var(--heading);
  font-size: 3.5rem;
  margin-bottom: 24px;
  background: linear-gradient(to right, var(--accent), #00bfff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  font-size: 1.25rem;
  opacity: 0.95;
  margin-bottom: 32px;
}

.btn-primary {
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--accent), #00b6dc);
  color: var(--bg);
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 12px rgba(0, 242, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 24px rgba(0, 242, 255, 0.6);
}

.hero-image {
  max-width: 500px;
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.25);
  animation: float 6s ease-in-out infinite;
}

/* === FEATURES SECTION === */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  padding: 100px 48px;
  background: radial-gradient(circle at center, #0F152F, #090E21);
}

.feature {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 36px;
  backdrop-filter: blur(14px);
  transition: all 0.3s ease;
  box-shadow: 0 0 0 transparent;
  position: relative;
  overflow: hidden;
}

.feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.feature::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -30%;
  width: 160%;
  height: 160%;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.05), transparent);
  z-index: 0;
  transition: all 0.3s ease;
}

.feature h2 {
  font-family: var(--heading);
  font-size: 1.75rem;
  margin-bottom: 16px;
  color: var(--accent);
  position: relative;
  z-index: 1;
}

.feature p {
  font-size: 1.05rem;
  opacity: 0.85;
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}

/* === FOOTER === */
.footer {
  text-align: center;
  padding: 40px 20px;
  font-size: 0.9rem;
  opacity: 0.6;
  border-top: 1px solid #1e1e3f;
}

/* === ANIMATIONEN === */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    padding: 60px 24px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .btn-primary {
    width: 100%;
    text-align: center;
  }

  .features {
    padding: 60px 24px;
  }

  .feature {
    padding: 32px 24px;
  }

  .feature h2 {
    font-size: 1.5rem;
  }

  .feature p {
    font-size: 1rem;
  }

  .brand-banner {
    padding: 40px 16px;
  }

  .section-heading {
    font-size: 1.6rem;
  }
}
/* === Styles nur für Business Seed Packs Seite === */
body[data-page="business-seed-packs"] {
  background-color: var(--bg);
  color: var(--text);
}

body[data-page="business-seed-packs"] nav {
  background-color: rgba(10, 14, 42, 0.9);
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

body[data-page="business-seed-packs"] .logo a {
  color: var(--text);
  font-size: 1.6rem;
  font-weight: 700;
  text-decoration: none;
}

body[data-page="business-seed-packs"] .nav-links {
  list-style: none;
  display: flex;
  gap: 24px;
}

body[data-page="business-seed-packs"] .nav-links a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

body[data-page="business-seed-packs"] .nav-links a:hover,
body[data-page="business-seed-packs"] .nav-links a.active {
  color: var(--accent);
}

body[data-page="business-seed-packs"] .nav-links a.active {
  color: var(--accent);
  text-shadow: 0 0 10px var(--accent), 0 0 20px var(--accent);
}

/* Hero */
body[data-page="business-seed-packs"] .hero {
  background: radial-gradient(circle, #0f152f, #090e21);
  color: var(--text);
  text-align: center;
  padding: 100px 24px;
}

body[data-page="business-seed-packs"] .hero h1 {
  font-size: 3rem;
  margin-bottom: 16px;
  font-family: var(--heading);
  background: linear-gradient(to right, var(--accent), #00bfff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

body[data-page="business-seed-packs"] .hero p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 32px;
}

/* Produkte */
body[data-page="business-seed-packs"] .products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  padding: 80px 48px;
}

body[data-page="business-seed-packs"] .product-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 212, 255, 0.1);
  transition: all 0.3s ease;
}

body[data-page="business-seed-packs"] .product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 212, 255, 0.2);
}

body[data-page="business-seed-packs"] .product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 16px;
}

body[data-page="business-seed-packs"] .product-card h2 {
  font-size: 1.3rem;
  margin: 12px 0;
  font-family: var(--heading);
  color: var(--accent);
}

body[data-page="business-seed-packs"] .product-card p {
  font-size: 1rem;
  color: var(--text);
  opacity: 0.85;
  margin-bottom: 20px;
}

body[data-page="business-seed-packs"] .product-card .btn {
  background: linear-gradient(135deg, var(--accent), #00b6dc);
  color: var(--bg);
  padding: 12px 24px;
  font-size: 1rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 12px rgba(0, 242, 255, 0.3);
}

body[data-page="business-seed-packs"] .product-card .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 24px rgba(0, 242, 255, 0.6);
}
/* === ANGEBOTE SEITE (Anpassung an Screenshot) === */
body[data-page="angebote"] {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--body);
}

body[data-page="angebote"] .angebote-section {
  text-align: center;
  padding: 100px 48px;
}

body[data-page="angebote"] .angebote-section h2 {
  font-family: var(--heading);
  font-size: 2.8rem;
  background: linear-gradient(to right, var(--accent), #00bfff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

body[data-page="angebote"] .angebote-section p {
  font-size: 1.1rem;
  color: var(--text);
  opacity: 0.8;
  margin-bottom: 60px;
}

body[data-page="angebote"] .angebote-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  justify-items: center;
}

body[data-page="angebote"] .angebot-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 36px 24px;
  text-align: center;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.1);
  transition: all 0.3s ease;
  width: 100%;
  max-width: 300px;
  backdrop-filter: blur(14px);
}

body[data-page="angebote"] .angebot-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 212, 255, 0.3);
}

body[data-page="angebote"] .angebot-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 20px;
}

body[data-page="angebote"] .angebot-card h3 {
  color: var(--accent);
  font-family: var(--heading);
  font-size: 1.3rem;
  margin-bottom: 12px;
}

body[data-page="angebote"] .angebot-card p {
  font-size: 1rem;
  opacity: 0.85;
  margin-bottom: 20px;
}

body[data-page="angebote"] .angebot-card .btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), #00b6dc);
  color: var(--bg);
  padding: 12px 28px;
  font-size: 1rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 0 12px rgba(0, 242, 255, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

body[data-page="angebote"] .angebot-card .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 24px rgba(0, 242, 255, 0.6);
}

/* === ANGEBOTE SEITE (gleiches Design wie Startseite) === */
body[data-page="angebote"] {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--body);
}

body[data-page="angebote"] .features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  padding: 100px 48px;
  background: radial-gradient(circle at center, #0F152F, #090E21);
}

body[data-page="angebote"] .feature {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 36px;
  backdrop-filter: blur(14px);
  transition: all 0.3s ease;
  box-shadow: 0 0 0 transparent;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}

body[data-page="angebote"] .feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

body[data-page="angebote"] .feature::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -30%;
  width: 160%;
  height: 160%;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.05), transparent);
  z-index: 0;
  transition: all 0.3s ease;
}

body[data-page="angebote"] .feature h2 {
  font-family: var(--heading);
  font-size: 1.75rem;
  margin-bottom: 16px;
  color: var(--accent);
  position: relative;
  z-index: 1;
}

body[data-page="angebote"] .feature p {
  font-size: 1.05rem;
  opacity: 0.85;
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}

body[data-page="angebote"] .feature .btn-primary {
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--accent), #00b6dc);
  color: var(--bg);
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 12px rgba(0, 242, 255, 0.3);
}

body[data-page="angebote"] .feature .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 24px rgba(0, 242, 255, 0.6);
}

/* Responsive Anpassung */
@media (max-width: 768px) {
  body[data-page="angebote"] .features {
    padding: 60px 24px;
  }

  body[data-page="angebote"] .feature {
    padding: 32px 24px;
  }

  body[data-page="angebote"] .feature h2 {
    font-size: 1.5rem;
  }

  body[data-page="angebote"] .feature p {
    font-size: 1rem;
  }
}
/* === Navigation aktiver Zustand (gleicher Stil wie Startseite) === */
.nav a.active {
  background: radial-gradient(circle at center, rgba(0, 242, 255, 0.35), rgba(0, 242, 255, 0.08));
  color: var(--accent);
  box-shadow: 0 0 25px rgba(0, 242, 255, 0.5);
  text-shadow: 0 0 10px var(--accent), 0 0 25px var(--accent);
  border-radius: 50px;
  padding: 10px 28px;
  font-weight: 600;
  transition: all 0.4s ease;
}

/* === GLOBAL RESPONSIVE MOBILE FIXES (Business Seed Packs + All Starter Packs) === */
@media (max-width: 600px) {

  /* === MOBILE HAMBURGER MENU === */
  .burger {
    display: block !important;
    width: 32px;
    height: 24px;
    cursor: pointer;
    position: relative;
    z-index: 2000;
  }

  .burger span {
    background: var(--text);
    display: block;
    height: 3px;
    width: 100%;
    border-radius: 3px;
    margin-bottom: 6px;
    transition: 0.3s ease;
  }

  .nav {
    display: none !important;
    flex-direction: column;
    width: 100%;
    background: rgba(10,14,42,0.95);
    padding: 20px;
    position: absolute;
    top: 70px;
    left: 0;
    text-align: center;
    z-index: 1500;
  }

  .nav.active {
    display: flex !important;
  }

  .nav a {
    padding: 12px 0 !important;
    width: 100%;
    margin: 0 !important;
    font-size: 1.1rem !important;
  }

  /* Hide desktop nav by default on mobile */
  .header .nav {
    display: none !important;
  }

  .header {
    position: relative;
  }

  /* Zentrierte Überschriften + Abstände */
  .hero h1,
  .hero p {
    text-align: center !important;
  }

  /* Suche */
  .search-container {
    max-width: 90vw !important;
    margin: 0 auto !important;
  }

  .search-container input {
    font-size: 1rem !important;
    padding: 14px 22px !important;
  }

  /* Produktkarten */
  .products {
    gap: 20px !important;
    padding: 0 12px !important;
  }

  .product-card {
    max-width: 92vw !important;
    min-width: 92vw !important;
    padding: 22px !important;
  }

  .product-card img {
    height: 160px !important;
  }

  /* Navigation kompakter */
  nav, 
  body[data-page="business-seed-packs"] nav {
    padding: 12px 18px !important;
  }

  ul.nav-links {
    gap: 14px !important;
  }

  ul.nav-links a {
    padding: 6px 12px !important;
    font-size: 0.85rem !important;
  }

  /* Mobile Navigation Fix */
  .header {
    flex-direction: column;
    gap: 6px;
    padding: 12px 16px;
  }

  .nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .nav a {
    padding: 10px 16px !important;
    font-size: 0.9rem !important;
    background: none !important;
    border-radius: unset;
  }

  /* Index: Angebote Kacheln breiter */
  .features {
    padding: 50px 20px !important;
    gap: 24px !important;
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .feature {
    padding: 28px 20px !important;
    width: 100% !important;
    max-width: 90vw !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* Fix: Angebote-Karten auf Mobile nicht zu breit */
  .features {
    grid-template-columns: 1fr !important;
    max-width: 100% !important;
    overflow: hidden !important;
  }

  .feature {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
  }

  /* Optional: Demnächst-verfügbar Karten auf Mobile ausblenden */
  .feature.soon {
    display: none !important;
  }

  /* Business Seed Packs: Inhalte größer */
  body[data-page="business-seed-packs"] .hero h1 {
    font-size: 2.2rem !important;
  }

  body[data-page="business-seed-packs"] .hero p {
    font-size: 1.1rem !important;
  }

  body[data-page="business-seed-packs"] .product-card {
    padding: 30px !important;
  }

  body[data-page="business-seed-packs"] .product-card h2 {
    font-size: 1.25rem !important;
  }
  body[data-page="business-seed-packs"] .product-card img {
    height: 180px !important;
  }

  /* Chatbot Seite skalieren */
  .chatbot-container,
  .chatbot-wrapper {
    max-width: 96vw !important;
    margin: 0 auto !important;
    padding: 20px !important;
  }

}