/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  color: #1a1a2e;
  background: #fafafa;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.5rem; font-weight: 700; color: #1a1a2e;
}
.logo-icon { font-size: 1.8rem; animation: bounce 2s infinite; }
.logo-accent { color: #e94560; }
.nav-menu { display: flex; align-items: center; gap: 8px; }
.nav-menu > li > a {
  padding: 8px 16px; border-radius: 8px; font-weight: 500;
  transition: all 0.2s; color: #444;
}
.nav-menu > li > a:hover, .nav-menu > li > a.active {
  background: #f0f0f0; color: #e94560;
}
.btn-nav {
  background: #e94560 !important; color: #fff !important;
}
.btn-nav:hover { background: #c73e54 !important; }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute; top: 100%; left: 0;
  background: #fff; border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
  min-width: 240px; padding: 8px 0;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: all 0.25s ease;
}
.has-dropdown:hover .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown li a {
  display: block; padding: 10px 20px; font-size: 0.95rem;
  transition: all 0.15s;
}
.dropdown li a:hover { background: #f8f8f8; color: #e94560; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.nav-toggle span { width: 24px; height: 2.5px; background: #1a1a2e; border-radius: 2px; transition: 0.3s; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  padding: 120px 24px 80px;
}
.hero-bg {
  position: absolute; inset: 0; overflow: hidden;
}
.magic-particle {
  position: absolute; width: 6px; height: 6px;
  background: #ffd700; border-radius: 50%;
  animation: float 6s infinite ease-in-out;
  opacity: 0.6;
}
.magic-particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.magic-particle:nth-child(2) { left: 25%; top: 60%; animation-delay: 1s; width: 4px; height: 4px; }
.magic-particle:nth-child(3) { left: 70%; top: 30%; animation-delay: 2s; }
.magic-particle:nth-child(4) { left: 85%; top: 70%; animation-delay: 3s; width: 3px; height: 3px; }
.magic-particle:nth-child(5) { left: 50%; top: 80%; animation-delay: 4s; }

.hero-content { max-width: 600px; position: relative; z-index: 2; color: #fff; }
.hero-title { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 700; line-height: 1.1; margin-bottom: 20px; }
.hero-title .line1 { display: block; }
.hero-title .line2 { display: block; }
.hero-title .highlight { color: #ffd700; position: relative; }
.hero-subtitle {
  font-size: 1.15rem; color: #a0c4ff; margin-bottom: 16px;
  letter-spacing: 0.5px;
}
.hero-desc { font-size: 1.05rem; color: rgba(255,255,255,0.8); margin-bottom: 32px; max-width: 480px; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 12px; }

.hero-visual {
  position: absolute; right: 5%; top: 50%; transform: translateY(-50%);
  width: 350px; height: 350px; opacity: 0.9;
}
.hat-svg { width: 100%; height: 100%; filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3)); }
.hat-svg .star { animation: twinkle 2s infinite ease-in-out alternate; }
.hat-svg .sparkle { animation: sparkle 1.5s infinite ease-in-out alternate; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 12px; font-weight: 600;
  font-size: 1rem; transition: all 0.25s ease; cursor: pointer; border: none;
}
.btn-primary { background: #e94560; color: #fff; box-shadow: 0 4px 20px rgba(233,69,96,0.3); }
.btn-primary:hover { background: #c73e54; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(233,69,96,0.4); }
.btn-secondary { background: #ffd700; color: #1a1a2e; }
.btn-secondary:hover { background: #ffcc00; transform: translateY(-2px); }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.4); }
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.1); transform: translateY(-2px); }
.btn-large { padding: 16px 36px; font-size: 1.1rem; }

/* ===== TRUST BADGES ===== */
.trust-badges { background: #fff; padding: 40px 0; border-bottom: 1px solid #eee; }
.badges-grid {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 32px;
}
.badge {
  display: flex; align-items: center; gap: 10px;
  font-weight: 500; color: #555; font-size: 0.95rem;
}
.badge-icon { font-size: 1.4rem; }

/* ===== SECTIONS ===== */
section { padding: 80px 0; }
.section-title {
  text-align: center; font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700; margin-bottom: 12px; color: #1a1a2e;
}
.section-subtitle {
  text-align: center; color: #666; max-width: 600px;
  margin: 0 auto 48px; font-size: 1.05rem;
}

/* ===== CARDS ===== */
.angebote { background: #f8f9fa; }
.cards-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.card {
  background: #fff; border-radius: 20px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all 0.3s ease; display: block;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}
.card-image {
  height: 160px; display: flex; align-items: center; justify-content: center;
}
.card-emoji { font-size: 4rem; filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2)); }
.card-body { padding: 24px; }
.card-body h3 { font-size: 1.3rem; margin-bottom: 6px; color: #1a1a2e; }
.card-age {
  display: inline-block; background: #f0f0f0; color: #e94560;
  padding: 4px 12px; border-radius: 20px; font-size: 0.8rem; font-weight: 600;
  margin-bottom: 12px;
}
.card-body p { color: #555; font-size: 0.95rem; margin-bottom: 16px; line-height: 1.5; }
.card-link { color: #e94560; font-weight: 600; font-size: 0.95rem; }

/* ===== HOW IT WORKS ===== */
.how-it-works { background: #fff; }
.steps {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 24px; max-width: 900px; margin: 0 auto;
}
.step {
  text-align: center; flex: 1; min-width: 200px; max-width: 260px;
}
.step-number {
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, #e94560, #ff6b6b);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; font-weight: 700; margin: 0 auto 16px;
  box-shadow: 0 4px 16px rgba(233,69,96,0.3);
}
.step h3 { font-size: 1.2rem; margin-bottom: 8px; color: #1a1a2e; }
.step p { color: #666; font-size: 0.95rem; }
.step-arrow {
  font-size: 2rem; color: #e94560; font-weight: 700;
  align-self: flex-start; margin-top: 12px;
}

/* ===== TESTIMONIALS ===== */
.testimonials { background: #f8f9fa; }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial {
  background: #fff; padding: 32px; border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.stars { color: #ffd700; font-size: 1.2rem; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial p { color: #444; font-size: 1rem; line-height: 1.6; margin-bottom: 16px; font-style: italic; }
.testimonial-author { color: #888; font-size: 0.9rem; font-weight: 500; }

/* ===== CTA ===== */
.cta-section {
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  color: #fff; text-align: center;
}
.cta-section h2 { font-size: 2.2rem; margin-bottom: 12px; }
.cta-section p { color: rgba(255,255,255,0.8); margin-bottom: 32px; font-size: 1.1rem; }
.cta-buttons { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; }

/* ===== FOOTER ===== */
.footer { background: #1a1a2e; color: #a0a0c0; padding: 60px 0 24px; }
.footer-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px; margin-bottom: 40px;
}
.footer-col h4 { color: #fff; font-size: 1.1rem; margin-bottom: 16px; }
.footer-col p, .footer-col ul li { font-size: 0.9rem; line-height: 1.8; }
.footer-col ul li a { color: #a0a0c0; transition: color 0.2s; }
.footer-col ul li a:hover { color: #e94560; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; text-align: center; font-size: 0.85rem; }

/* ===== PAGE HEADER (Subpages) ===== */
.page-header {
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  color: #fff; padding: 140px 24px 60px; text-align: center;
}
.page-header h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 12px; }
.page-header p { color: rgba(255,255,255,0.8); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* ===== CONTENT SECTIONS ===== */
.content-section { padding: 60px 0; }
.content-section.alt { background: #f8f9fa; }
.content-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.content-grid.reverse { direction: rtl; }
.content-grid.reverse > * { direction: ltr; }
.content-text h2 { font-size: 1.8rem; margin-bottom: 16px; color: #1a1a2e; }
.content-text p { color: #555; margin-bottom: 16px; line-height: 1.7; }
.content-text ul { margin: 16px 0; padding-left: 20px; }
.content-text ul li { color: #555; margin-bottom: 8px; position: relative; padding-left: 24px; }
.content-text ul li::before { content: "✨"; position: absolute; left: 0; }
.content-visual {
  background: linear-gradient(135deg, #e94560, #ff6b6b);
  border-radius: 20px; min-height: 300px;
  display: flex; align-items: center; justify-content: center;
  font-size: 6rem; box-shadow: 0 16px 48px rgba(233,69,96,0.2);
  overflow: hidden;
}
.content-visual.has-photo {
  padding: 0;
}
.content-visual.has-photo img {
  width: 100%; height: 100%; min-height: 300px;
  object-fit: cover; border-radius: 20px; display: block;
}

/* ===== FEATURE LIST ===== */
.features-list {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px; margin-top: 32px;
}
.feature-item {
  background: #fff; padding: 24px; border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}
.feature-item .icon { font-size: 2rem; margin-bottom: 12px; display: block; }
.feature-item h4 { font-size: 1.1rem; margin-bottom: 8px; color: #1a1a2e; }
.feature-item p { color: #666; font-size: 0.9rem; }

/* ===== PRICING ===== */
.pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px; margin-top: 32px;
}
.pricing-card {
  background: #fff; border-radius: 20px; padding: 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  text-align: center; position: relative;
  transition: all 0.3s ease;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
.pricing-card.popular { border: 2px solid #e94560; }
.pricing-card.popular::before {
  content: "Beliebt"; position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: #e94560; color: #fff; padding: 4px 16px; border-radius: 20px;
  font-size: 0.8rem; font-weight: 600;
}
.pricing-card h3 { font-size: 1.3rem; margin-bottom: 8px; }
.pricing-card .price { font-size: 2.5rem; font-weight: 700; color: #e94560; margin: 16px 0; }
.pricing-card .price span { font-size: 1rem; color: #888; font-weight: 400; }
.pricing-card ul { text-align: left; margin: 24px 0; }
.pricing-card ul li { padding: 8px 0; color: #555; border-bottom: 1px solid #f0f0f0; font-size: 0.95rem; }
.pricing-card ul li::before { content: "✓"; color: #1dd1a1; margin-right: 8px; font-weight: 700; }

/* ===== CONTACT FORM ===== */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
}
.contact-info h3 { font-size: 1.3rem; margin-bottom: 16px; color: #1a1a2e; }
.contact-info p { color: #555; margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.contact-form { background: #fff; padding: 32px; border-radius: 20px; box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 6px; font-weight: 500; color: #333; font-size: 0.9rem; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 16px; border: 2px solid #e8e8e8;
  border-radius: 10px; font-size: 1rem; transition: border-color 0.2s;
  font-family: inherit;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: #e94560;
}
.form-group textarea { min-height: 120px; resize: vertical; }

/* ===== LANDING PAGE HERO ===== */
.landing-hero {
  min-height: 80vh; display: flex; align-items: center;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  color: #fff; padding: 120px 24px 60px;
}
.landing-hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.landing-hero h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.landing-hero p { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 24px; line-height: 1.7; }
.landing-hero .btn { margin-top: 8px; }
.landing-visual {
  display: flex; align-items: center; justify-content: center;
  font-size: 8rem;
}

/* ===== FAQ ===== */
.faq-item { border-bottom: 1px solid #e8e8e8; }
.faq-question {
  padding: 20px 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  font-weight: 600; color: #1a1a2e; font-size: 1.05rem;
}
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
  color: #555; line-height: 1.6;
}
.faq-answer.open { max-height: 500px; padding-bottom: 20px; }
.faq-toggle { font-size: 1.5rem; color: #e94560; transition: transform 0.3s; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }

/* ===== LEGAL PAGES ===== */
.legal-content { max-width: 800px; margin: 0 auto; padding: 40px 24px; }
.legal-content h2 { font-size: 1.5rem; margin: 32px 0 16px; color: #1a1a2e; }
.legal-content h3 { font-size: 1.2rem; margin: 24px 0 12px; color: #333; }
.legal-content p { color: #555; line-height: 1.7; margin-bottom: 12px; }
.legal-content ul { margin: 12px 0 12px 24px; }
.legal-content ul li { color: #555; margin-bottom: 8px; }

/* ===== ANIMATIONS ===== */
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.6; }
  50% { transform: translateY(-30px) scale(1.2); opacity: 1; }
}
@keyframes twinkle {
  0% { opacity: 0.4; transform: scale(0.8); }
  100% { opacity: 1; transform: scale(1.2); }
}
@keyframes sparkle {
  0% { opacity: 0.3; }
  100% { opacity: 1; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed; top: 72px; left: 0; right: 0;
    background: #fff; flex-direction: column; padding: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transform: translateY(-100%); opacity: 0; visibility: hidden;
    transition: all 0.3s ease;
  }
  .nav-menu.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; padding-left: 16px; display: none; }
  .has-dropdown.open .dropdown { display: block; }
  .hero { flex-direction: column; text-align: center; padding-top: 100px; }
  .hero-visual { position: relative; right: auto; top: auto; transform: none; width: 250px; height: 250px; margin-top: 40px; }
  .hero-buttons { justify-content: center; }
  .content-grid, .contact-grid, .landing-hero .container { grid-template-columns: 1fr; }
  .step-arrow { display: none; }
  .steps { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

/* ===== WHATSAPP FLOAT BUTTON ===== */
.whatsapp-float {
  position: fixed; right: 24px; bottom: 24px; z-index: 999;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(37,211,102,0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 8px 26px rgba(37,211,102,0.55); }
.whatsapp-float svg { width: 32px; height: 32px; }
@media (max-width: 768px) {
  .whatsapp-float { right: 16px; bottom: 16px; width: 54px; height: 54px; }
  .whatsapp-float svg { width: 28px; height: 28px; }
}
