/* ========================================
   Meine Tierfreunde - Website Styles
   Complete Redesign
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&display=swap');

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --purple-start: #667eea;
  --purple-mid: #764ba2;
  --purple-end: #f093fb;
  --gradient: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  --gradient-horizontal: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  --gradient-subtle: linear-gradient(135deg, rgba(102,126,234,0.06) 0%, rgba(118,75,162,0.08) 50%, rgba(240,147,251,0.06) 100%);
  --gradient-abc: linear-gradient(135deg, #667eea, #5a67d8);
  --gradient-zahlen: linear-gradient(135deg, #f6ad55, #ed8936);
  --gradient-farben: linear-gradient(135deg, #48bb78, #38a169);
  --gradient-puzzle: linear-gradient(135deg, #fc8181, #e53e3e);
  --text-dark: #2d2346;
  --text-muted: #6b6085;
  --text-light: #9a91a8;
  --bg-white: #ffffff;
  --bg-light: #faf8ff;
  --bg-card: #ffffff;
  --shadow-sm: 0 2px 8px rgba(102, 126, 234, 0.08);
  --shadow-md: 0 4px 20px rgba(102, 126, 234, 0.12);
  --shadow-lg: 0 8px 40px rgba(102, 126, 234, 0.16);
  --shadow-xl: 0 16px 64px rgba(102, 126, 234, 0.20);
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --max-width: 1120px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-dark);
  background: var(--bg-light);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

a {
  color: var(--purple-start);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--purple-mid);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1, h2, h3, h4 {
  line-height: 1.3;
  font-weight: 800;
}

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(102, 126, 234, 0.08);
  transition: box-shadow var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--text-dark);
  text-decoration: none;
}

.nav-logo-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(118, 75, 162, 0.3);
}

.nav-logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  border-radius: 1px;
  transition: width var(--transition);
}

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

.nav-links a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2.5px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  background: var(--gradient);
  padding: 140px 24px 80px;
  text-align: center;
  color: white;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.08) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(255,255,255,0.05) 0%, transparent 40%);
  animation: heroFloat 20s ease-in-out infinite;
}

@keyframes heroFloat {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(2%, -1%) rotate(1deg); }
  66% { transform: translate(-1%, 1%) rotate(-0.5deg); }
}

/* Floating animals in hero */
.hero-animals {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-animal {
  position: absolute;
  opacity: 0.15;
  filter: brightness(10);
  animation: animalFloat 8s ease-in-out infinite;
}

.hero-animal img {
  width: 100%;
  height: 100%;
}

.hero-animal:nth-child(1) {
  width: 100px;
  height: 100px;
  top: 12%;
  left: 8%;
  animation-delay: 0s;
  animation-duration: 7s;
}

.hero-animal:nth-child(2) {
  width: 80px;
  height: 80px;
  top: 20%;
  right: 10%;
  animation-delay: -1.5s;
  animation-duration: 9s;
}

.hero-animal:nth-child(3) {
  width: 120px;
  height: 120px;
  bottom: 20%;
  left: 5%;
  animation-delay: -3s;
  animation-duration: 8s;
}

.hero-animal:nth-child(4) {
  width: 90px;
  height: 90px;
  bottom: 15%;
  right: 8%;
  animation-delay: -4.5s;
  animation-duration: 10s;
}

.hero-animal:nth-child(5) {
  width: 70px;
  height: 70px;
  top: 50%;
  left: 18%;
  animation-delay: -2s;
  animation-duration: 7.5s;
}

@keyframes animalFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  25% { transform: translateY(-20px) rotate(3deg); }
  50% { transform: translateY(-8px) rotate(-2deg); }
  75% { transform: translateY(-25px) rotate(2deg); }
}

.hero-content {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  z-index: 2;
}

.hero-app-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 28px;
  border-radius: 27%;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25);
  background: white;
  animation: iconPulse 3s ease-in-out infinite;
}

.hero-app-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes iconPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 8px 40px rgba(0,0,0,0.25); }
  50% { transform: scale(1.03); box-shadow: 0 12px 48px rgba(0,0,0,0.3); }
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  font-weight: 600;
  opacity: 0.92;
  margin-bottom: 40px;
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(0, 0, 0, 0.85);
  color: white;
  padding: 16px 36px;
  border-radius: 16px;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  color: white;
}

.hero-cta svg {
  width: 24px;
  height: 24px;
}

/* --- Sections --- */
.section {
  padding: 100px 24px;
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 12px;
  color: var(--text-dark);
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* --- Screenshots / Phone Mockup Section --- */
.screenshots-section {
  background: var(--bg-white);
  padding: 100px 24px;
  overflow: hidden;
}

.screenshots-carousel {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  padding: 20px 0 40px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.screenshots-carousel::-webkit-scrollbar {
  display: none;
}

.phone-mockup {
  flex-shrink: 0;
  width: 260px;
  scroll-snap-align: center;
  perspective: 1000px;
}

.phone-frame {
  position: relative;
  background: #1a1a2e;
  border-radius: 40px;
  padding: 12px;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.phone-mockup:hover .phone-frame {
  transform: rotateY(-3deg) rotateX(2deg) translateY(-8px);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 28px;
  background: #1a1a2e;
  border-radius: 0 0 18px 18px;
  z-index: 10;
}

.phone-screen {
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 9 / 19.5;
  background: linear-gradient(135deg, #f0ecff 0%, #e8e0f8 100%);
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.phone-label {
  text-align: center;
  margin-top: 16px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* --- Modules / Features Grid --- */
.modules-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.module-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(102, 126, 234, 0.06);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.module-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  opacity: 0;
  transition: opacity var(--transition);
}

.module-card:nth-child(1)::before { background: var(--gradient-abc); }
.module-card:nth-child(2)::before { background: var(--gradient-zahlen); }
.module-card:nth-child(3)::before { background: var(--gradient-farben); }
.module-card:nth-child(4)::before { background: var(--gradient-puzzle); }

.module-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.module-card:hover::before {
  opacity: 1;
}

.module-icon {
  width: 88px;
  height: 88px;
  margin: 0 auto 20px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.module-card:nth-child(1) .module-icon { background: linear-gradient(135deg, rgba(102,126,234,0.12), rgba(90,103,216,0.08)); }
.module-card:nth-child(2) .module-icon { background: linear-gradient(135deg, rgba(246,173,85,0.12), rgba(237,137,54,0.08)); }
.module-card:nth-child(3) .module-icon { background: linear-gradient(135deg, rgba(72,187,120,0.12), rgba(56,161,105,0.08)); }
.module-card:nth-child(4) .module-icon { background: linear-gradient(135deg, rgba(252,129,129,0.12), rgba(229,62,62,0.08)); }

.module-icon img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.module-card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.module-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* --- Animal Gallery Strip --- */
.animal-gallery {
  padding: 60px 0;
  background: var(--bg-white);
  overflow: hidden;
  position: relative;
}

.animal-gallery::before,
.animal-gallery::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.animal-gallery::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-white), transparent);
}

.animal-gallery::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg-white), transparent);
}

.animal-track {
  display: flex;
  gap: 40px;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}

.animal-track:hover {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.animal-gallery-item {
  flex-shrink: 0;
  width: 90px;
  height: 90px;
  filter: drop-shadow(0 4px 12px rgba(118, 75, 162, 0.15));
  transition: transform var(--transition);
  cursor: default;
}

.animal-gallery-item:hover {
  transform: scale(1.15) translateY(-4px);
}

.animal-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* --- Leo's Story Section --- */
.leo-section {
  padding: 100px 24px;
  background: var(--gradient-subtle);
}

.leo-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: center;
}

.leo-visual {
  text-align: center;
  position: relative;
}

.leo-svg {
  width: 220px;
  height: 220px;
  margin: 0 auto;
  animation: leoFloat 4s ease-in-out infinite;
  filter: drop-shadow(0 12px 32px rgba(118, 75, 162, 0.2));
}

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

@keyframes leoFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-16px); }
}

.leo-content h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin-bottom: 16px;
  color: var(--text-dark);
}

.leo-content > p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 32px;
  line-height: 1.8;
}

.worlds-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.world-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(102, 126, 234, 0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}

.world-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.world-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.world-card:nth-child(1) .world-icon { background: linear-gradient(135deg, rgba(102,126,234,0.15), rgba(102,126,234,0.05)); }
.world-card:nth-child(2) .world-icon { background: linear-gradient(135deg, rgba(246,173,85,0.15), rgba(246,173,85,0.05)); }
.world-card:nth-child(3) .world-icon { background: linear-gradient(135deg, rgba(72,187,120,0.15), rgba(72,187,120,0.05)); }
.world-card:nth-child(4) .world-icon { background: linear-gradient(135deg, rgba(252,129,129,0.15), rgba(252,129,129,0.05)); }

.world-card-text {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-dark);
}

/* --- Highlights Bar --- */
.highlights-bar {
  background: var(--gradient);
  padding: 48px 24px;
  position: relative;
  overflow: hidden;
}

.highlights-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(255,255,255,0.08) 0%, transparent 60%);
}

.highlights-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
}

.highlight-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 12px 22px;
  border-radius: 50px;
  color: white;
  font-weight: 700;
  font-size: 0.92rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  white-space: nowrap;
  transition: transform var(--transition), background var(--transition);
}

.highlight-pill:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.22);
}

.highlight-pill-icon {
  font-size: 1.2rem;
}

/* --- Highlights Section (Why Parents Love Us) --- */
.highlights {
  background: var(--bg-white);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px;
  border-radius: var(--radius-md);
  background: var(--bg-light);
  border: 1px solid rgba(102, 126, 234, 0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}

.highlight-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.highlight-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: var(--gradient);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: white;
  box-shadow: 0 4px 12px rgba(118, 75, 162, 0.25);
}

.highlight-text h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.highlight-text p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* --- Trust / Testimonial Section --- */
.trust-section {
  padding: 100px 24px;
  background: var(--bg-light);
}

.trust-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.trust-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.trust-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(102, 126, 234, 0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}

.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.trust-card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: var(--gradient-subtle);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.trust-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.trust-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* --- CTA Section --- */
.cta-section {
  background: var(--gradient);
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
  padding: 100px 24px;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(255,255,255,0.1) 0%, transparent 60%);
}

.cta-content {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
}

.cta-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 1.15rem;
  opacity: 0.9;
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: white;
  color: var(--purple-mid);
  padding: 18px 40px;
  border-radius: 16px;
  font-size: 1.1rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  color: var(--purple-mid);
}

/* --- Footer --- */
.footer {
  background: var(--text-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 24px 32px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand h3 {
  color: white;
  font-size: 1.3rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.footer-brand-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.8;
}

.footer-links h4 {
  color: white;
  font-size: 0.95rem;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links li {
  font-size: 0.92rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.92rem;
  transition: color var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
}

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

/* --- Page Content (Legal, Support) --- */
.page-hero {
  background: var(--gradient);
  padding: 140px 24px 60px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.06) 0%, transparent 50%);
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 8px;
  position: relative;
}

.page-hero p {
  opacity: 0.85;
  font-size: 1.05rem;
  position: relative;
}

.page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 24px 100px;
}

.page-content h2 {
  font-size: 1.5rem;
  margin: 48px 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(102, 126, 234, 0.1);
}

.page-content h2:first-child {
  margin-top: 0;
}

.page-content h3 {
  font-size: 1.15rem;
  margin: 28px 0 10px;
  font-weight: 700;
}

.page-content p,
.page-content li {
  color: var(--text-muted);
  margin-bottom: 12px;
}

.page-content ul,
.page-content ol {
  padding-left: 24px;
  margin-bottom: 16px;
}

.page-content li {
  margin-bottom: 6px;
}

.page-content strong {
  color: var(--text-dark);
}

/* --- Contact / Support --- */
.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 60px 24px 100px;
}

.contact-form {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(102, 126, 234, 0.06);
}

.contact-form h2 {
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid rgba(102, 126, 234, 0.12);
  border-radius: var(--radius-sm);
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  background: var(--bg-light);
  color: var(--text-dark);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--purple-start);
  box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient);
  color: white;
  padding: 14px 32px;
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(118, 75, 162, 0.3);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(118, 75, 162, 0.4);
}

/* --- FAQ --- */
.faq-section h2 {
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.faq-item {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(102, 126, 234, 0.06);
  transition: box-shadow var(--transition);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-question {
  font-weight: 800;
  font-size: 1.02rem;
  margin-bottom: 8px;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-question::before {
  content: '?';
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--gradient);
  color: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 900;
}

.faq-answer {
  color: var(--text-muted);
  font-size: 0.95rem;
  padding-left: 38px;
}

/* --- Direct Contact Card --- */
.direct-contact {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-top: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(102, 126, 234, 0.06);
}

.direct-contact h3 {
  font-size: 1.15rem;
  margin-bottom: 16px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.contact-info-item .ci-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-subtle);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* --- Impressum specific --- */
.impressum-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(102, 126, 234, 0.06);
  margin-bottom: 32px;
}

/* --- Animations --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays for grid children */
.animate-in:nth-child(2) { transition-delay: 0.1s; }
.animate-in:nth-child(3) { transition-delay: 0.2s; }
.animate-in:nth-child(4) { transition-delay: 0.3s; }
.animate-in:nth-child(5) { transition-delay: 0.15s; }
.animate-in:nth-child(6) { transition-delay: 0.25s; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .leo-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .leo-content > p {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .worlds-grid {
    max-width: 500px;
    margin: 0 auto;
  }

  .trust-cards {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
    box-shadow: var(--shadow-lg);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding: 130px 20px 70px;
    min-height: auto;
  }

  .hero-app-icon {
    width: 96px;
    height: 96px;
  }

  .hero-features {
    gap: 10px;
  }

  .hero-chip {
    font-size: 0.82rem;
    padding: 6px 14px;
  }

  .hero-animal:nth-child(1) { width: 60px; height: 60px; }
  .hero-animal:nth-child(2) { width: 50px; height: 50px; }
  .hero-animal:nth-child(3) { width: 70px; height: 70px; }
  .hero-animal:nth-child(4) { width: 55px; height: 55px; }
  .hero-animal:nth-child(5) { display: none; }

  .modules-grid {
    grid-template-columns: 1fr;
  }

  .screenshots-carousel {
    gap: 24px;
    justify-content: flex-start;
    padding: 20px 24px 40px;
  }

  .phone-mockup {
    width: 220px;
  }

  .worlds-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .support-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 20px 80px;
  }

  .highlights-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 60px 20px;
  }

  .screenshots-section {
    padding: 60px 0;
  }

  .contact-form {
    padding: 28px;
  }

  .highlight-pill {
    font-size: 0.82rem;
    padding: 10px 16px;
  }

  .leo-section {
    padding: 60px 20px;
  }

  .leo-svg {
    width: 160px;
    height: 160px;
  }

  .animal-gallery-item {
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 480px) {
  .screenshots-carousel {
    gap: 16px;
    padding: 16px 16px 32px;
  }

  .phone-mockup {
    width: 200px;
  }

  .hero-cta {
    padding: 14px 28px;
    font-size: 0.95rem;
  }

  .highlight-pill {
    font-size: 0.78rem;
    padding: 8px 14px;
    gap: 6px;
  }

  .cta-section {
    padding: 60px 20px;
  }

  .trust-section {
    padding: 60px 20px;
  }
}
