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

:root {
  --background: hsl(0, 0%, 100%);
  --foreground: hsl(20, 14.3%, 4.1%);
  --muted: hsl(60, 4.8%, 95.9%);
  --muted-foreground: hsl(25, 5.3%, 44.7%);
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(20, 14.3%, 4.1%);
  --border: hsl(20, 5.9%, 90%);
  --primary: hsl(222, 84%, 35%);
  --primary-foreground: hsl(210, 20%, 98%);
  --primary-blue: hsl(222, 84%, 35%);
  --secondary: hsl(60, 4.8%, 95.9%);
  --secondary-foreground: hsl(24, 9.8%, 10%);
  --accent: hsl(60, 4.8%, 95.9%);
  --radius: 0.75rem;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.dark {
  --background: hsl(222, 84%, 4.9%);
  --foreground: hsl(0, 0%, 98%);
  --muted: hsl(217, 32.6%, 17.5%);
  --muted-foreground: hsl(215, 20.2%, 65.1%);
  --card: hsl(222, 47%, 11%);
  --card-foreground: hsl(0, 0%, 98%);
  --border: hsl(217, 32.6%, 17.5%);
  --primary: hsl(222, 84%, 35%);
  --primary-foreground: hsl(210, 20%, 98%);
  --primary-blue: hsl(222, 84%, 35%);
  --secondary: hsl(217, 32.6%, 17.5%);
  --secondary-foreground: hsl(0, 0%, 98%);
  --accent: hsl(217, 32.6%, 17.5%);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.2);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  transition: background-color 0.3s ease, color 0.3s ease;
  overflow-x: hidden;
  max-width: 100vw;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  text-decoration: none;
  font-family: inherit;
}

.btn-primary {
  background-color: var(--primary-blue);
  color: white;
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  background-color: hsl(222, 84%, 30%);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background-color: var(--card);
  color: var(--foreground);
  border: 2px solid var(--border);
}

.btn-secondary:hover {
  background-color: var(--muted);
  border-color: var(--primary-blue);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
}

.btn-outline:hover {
  background-color: var(--primary-blue);
  color: white;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--background);
  border-bottom: 1px solid var(--border);
  transition: background-color 0.3s ease;
  backdrop-filter: blur(10px);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.75rem 0;
  height: 104px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  cursor: pointer;
}

.logo img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.logo-black { display: block; }
.logo-white { display: none; }
.dark .logo-black { display: none; }
.dark .logo-white { display: block; }

.logo span {
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--foreground);
  line-height: 1;
}

nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

nav a {
  font-weight: 500;
  color: var(--muted-foreground);
  transition: color 0.2s ease;
}

nav a:hover {
  color: var(--primary-blue);
}

.nav-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.theme-toggle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--muted);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.theme-toggle:hover {
  background-color: var(--border);
}

.theme-toggle svg {
  width: 24px;
  height: 24px;
  color: var(--foreground);
}

.sun-icon { display: none; }
.moon-icon { display: block; }
.dark .sun-icon { display: block; }
.dark .moon-icon { display: none; }

.social-icons {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  color: var(--muted-foreground);
}

.social-link:hover {
  background-color: var(--primary-blue);
  color: white;
  transform: scale(1.1);
}

.social-link:active {
  transform: scale(0.95);
}

@media (hover: none) {
  .social-link:hover {
    background-color: var(--muted);
    color: var(--foreground);
    transform: none;
  }
  
  .social-link:active {
    background-color: var(--primary-blue);
    color: white;
    transform: scale(0.95);
  }
}

.social-link svg {
  width: 18px;
  height: 18px;
}

/* Mobile header right section */
.mobile-header-right {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

.theme-toggle-mobile {
  width: 44px;
  height: 44px;
}

.theme-toggle-mobile svg {
  width: 22px;
  height: 22px;
}

/* Desktop only elements */
.desktop-only {
  display: inline-flex;
}

/* Mobile nav download - hidden on desktop */
.mobile-nav-download {
  display: none !important;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 104px;
  background: linear-gradient(135deg, var(--background) 0%, var(--muted) 100%);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
}

.hero-logo {
  margin-bottom: 1.5rem;
}

.hero-logo img {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

.hero-logo-black { display: block; }
.hero-logo-white { display: none; }
.dark .hero-logo-black { display: none; }
.dark .hero-logo-white { display: block; }

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--foreground);
}

.hero-text h1 span {
  color: var(--primary-blue);
}

.hero-text p {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-tagline {
  font-size: 1.25rem;
  color: var(--foreground);
  font-weight: 600;
  line-height: 1.8;
}

.tagline-paw {
  width: 1.3em;
  height: 1.3em;
  vertical-align: middle;
  margin-left: 0.3em;
  display: inline-block;
}

.tagline-paw-black { display: inline-block; }
.tagline-paw-white { display: none; }
.dark .tagline-paw-black { display: none; }
.dark .tagline-paw-white { display: inline-block; }

.hero-tagline-sub {
  color: var(--muted-foreground);
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-store-badges {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.store-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  background-color: var(--card);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.2s ease;
  cursor: pointer;
}

.store-badge:hover {
  border-color: var(--primary-blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.store-badge svg {
  width: 28px;
  height: 28px;
  color: var(--foreground);
}

.store-badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.store-badge-soon {
  font-size: 0.7rem;
  color: var(--muted-foreground);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.store-badge-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.paw-animation-container {
  width: 350px;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#paw-animation {
  width: 100%;
  height: 100%;
}

.dark #paw-animation path {
  fill: white !important;
  stroke: white !important;
}

/* Centered Hero Layout */
.hero-centered {
  text-align: center;
}

.hero-content-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4rem 1.5rem;
  gap: 1.5rem;
}

.hero-logo-centered {
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
}

.hero-logo-centered img {
  width: 140px;
  height: 140px;
  object-fit: contain;
}

.hero-lottie-animation {
  width: 200px !important;
  height: 200px !important;
  max-width: 200px !important;
  max-height: 200px !important;
}

.hero-lottie-animation.hero-lottie-small {
  width: 200px !important;
  height: 200px !important;
  max-width: 200px !important;
  max-height: 200px !important;
}

.hero-brand-name {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--foreground);
  margin: 0.3rem 0 1.5rem 0;
  text-align: center;
  letter-spacing: -0.02em;
}

.hero-headline-centered {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--foreground);
  max-width: 700px;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .hero-headline-centered {
    font-size: 2.8rem;
  }
}

/* USP Cards */
.hero-usp-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  width: 100%;
  max-width: 1000px;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .hero-usp-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.usp-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow);
  border: 2px solid var(--border);
  text-align: left;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .usp-card {
    padding: 1.25rem 1.5rem;
  }
}

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

/* All USP cards: black/white/grey/blue theme */
.usp-verified,
.usp-refresh,
.usp-ai,
.usp-privacy {
  border-color: var(--border);
  background: var(--card);
}

.usp-verified {
  border-left: 4px solid var(--primary-blue);
}

.usp-refresh {
  border-left: 4px solid var(--primary-blue);
}

.usp-ai {
  border-left: 4px solid var(--primary-blue);
}

.usp-privacy {
  border-left: 4px solid #8b5cf6;
}

.usp-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .usp-icon {
    width: 44px;
    height: 44px;
  }
}

/* Icons keep their original colors */
.usp-verified .usp-icon {
  background: hsl(142, 76%, 45%);
  color: white;
}

.usp-refresh .usp-icon {
  background: var(--primary-blue);
  color: white;
}

.usp-ai .usp-icon {
  background: hsl(280, 84%, 55%);
  color: white;
}

.usp-privacy .usp-icon {
  background: #8b5cf6;
  color: white;
}

.usp-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
  .usp-card h3 {
    font-size: 1.05rem;
  }
}

.usp-gratis {
  display: inline-block;
  background: var(--primary-blue);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  margin-left: 0.5rem;
  vertical-align: middle;
}

.usp-exklusiv,
.usp-geprueft {
  display: inline-block;
  background: #22c55e;
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  margin-left: 0.5rem;
  vertical-align: middle;
}

.usp-fair {
  display: inline-block;
  background: #3b82f6;
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  margin-left: 0.5rem;
  vertical-align: middle;
}

.usp-geschuetzt {
  display: inline-block;
  background: #8b5cf6;
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  margin-left: 0.5rem;
  vertical-align: middle;
}

.usp-subtitle {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted-foreground);
  margin-bottom: 0.75rem;
}

.usp-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.usp-list li {
  font-size: 0.8rem;
  color: var(--foreground);
  padding: 0.25rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .usp-list li {
    font-size: 0.85rem;
    padding: 0.3rem 0;
    padding-left: 1.5rem;
  }
}

/* All checkmarks: blue to match app brand */
.usp-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%231a47b0' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* BONUS Section */
.hero-bonus-section {
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  text-align: center;
  margin-bottom: 2rem;
  max-width: 600px;
  width: 100%;
}

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

.bonus-badge {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: #1a1a1a;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

.bonus-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--foreground);
}

.bonus-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}

.bonus-step {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--foreground);
  padding: 0.4rem 0.75rem;
  background: var(--muted);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.bonus-step-panda {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.bonus-paw {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.bonus-paw-black { display: inline-block; }
.bonus-paw-white { display: none; }
.dark .bonus-paw-black { display: none; }
.dark .bonus-paw-white { display: inline-block; }

.bonus-step-highlight {
  background: linear-gradient(135deg, var(--primary-blue), hsl(222, 84%, 25%));
  color: white;
}

.bonus-arrow {
  color: var(--muted-foreground);
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

.bonus-info {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin: 0;
}

/* Header Button Smaller */
.btn-header {
  font-size: 0.85rem;
  padding: 0.6rem 1.25rem;
}

/* Hero Provokativ Headline */
.hero-headline-provokativ {
  font-size: 2rem;
  font-weight: 800;
  color: var(--foreground);
  text-align: center;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.hero-subtitle-provokativ {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--muted-foreground);
  text-align: center;
  margin-bottom: 0.5rem;
}

.hero-subtitle-audience {
  font-size: 1rem;
  font-weight: 400;
  color: var(--muted-foreground);
  text-align: center;
  margin-bottom: 2rem;
}

@media (max-width: 767px) {
  .hero-subtitle-audience {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-headline-provokativ {
    font-size: 1.5rem;
  }
  
  .hero-subtitle-provokativ {
    font-size: 1rem;
  }
}

/* USP Card Header (icon next to title) */
.usp-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.usp-card-header .usp-icon {
  margin-bottom: 0;
  flex-shrink: 0;
}

.usp-card-header h3 {
  margin-bottom: 0;
}

/* Note text for verification card - grey like subtitles */
.usp-note {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted-foreground);
  margin-bottom: 0.75rem;
}

.hero-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding: 1rem 1.5rem;
  background-color: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 2px solid var(--border);
}

.flow-step {
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
  padding: 0.5rem 1rem;
  background: var(--muted);
  border-radius: var(--radius);
}

.flow-step-highlight {
  background: linear-gradient(135deg, var(--primary-blue), hsl(222, 84%, 25%));
  color: white;
}

.flow-step-panda {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.flow-paw {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.flow-paw-black { display: inline-block; }
.flow-paw-white { display: none; }
.dark .flow-paw-black { display: none; }
.dark .flow-paw-white { display: inline-block; }

.flow-arrow {
  color: var(--primary-blue);
  flex-shrink: 0;
}

.hero-tagline-centered {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--foreground);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.inline-paw {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.inline-paw-black { display: inline-block; }
.inline-paw-white { display: none; }
.dark .inline-paw-black { display: none; }
.dark .inline-paw-white { display: inline-block; }

.hero-ai-line {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--foreground);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.ki-icon-inline {
  width: 24px;
  height: 24px;
  color: var(--primary-blue);
  vertical-align: middle;
}

.hero-features-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.5rem 0;
  width: 100%;
  max-width: 500px;
}

@media (min-width: 768px) {
  .hero-features-grid {
    flex-direction: row;
    max-width: 900px;
    gap: 1.5rem;
  }
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background-color: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  flex: 1;
  text-align: left;
}

.hero-feature-item span {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--foreground);
}

.feature-icon-circle {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.feature-icon-circle.ai-circle {
  background: linear-gradient(135deg, var(--primary-blue), hsl(222, 84%, 25%));
}

.feature-icon-circle.ai-circle svg {
  stroke: white;
}

.feature-icon-circle.filter-circle {
  background: linear-gradient(135deg, #6366f1, #4f46e5);
  gap: 2px;
}

.feature-icon-circle.filter-circle svg {
  stroke: white;
  width: 18px;
  height: 18px;
}

.feature-icon-circle.filter-circle .building-icon {
  width: 14px;
  height: 14px;
  position: absolute;
  right: 4px;
  bottom: 4px;
}

.feature-icon-circle.panda-circle {
  background: linear-gradient(135deg, #10b981, #059669);
}

.feature-paw {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.feature-paw-black { display: block; }
.feature-paw-white { display: none; }
.dark .feature-paw-black { display: none; }
.dark .feature-paw-white { display: block; }

.hero-buttons-centered {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.hero-store-badges-centered {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-social-icons {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 0.5rem;
}

.hero-social-icons .social-link {
  width: 40px;
  height: 40px;
}

.categories {
  padding: 6rem 0;
  background-color: var(--background);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.section-header p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 600px;
  margin: 0 auto;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
}

.category-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-blue);
}

.category-card svg {
  width: 48px;
  height: 48px;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.category-card h3 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--foreground);
}

.features {
  padding: 6rem 0;
  background-color: var(--muted);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1200px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

@media (max-width: 480px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  background-color: var(--card);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

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

.feature-card .feature-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.feature-card .feature-header h3 {
  margin-bottom: 0;
}

.feature-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--primary-blue) 0%, hsl(222, 84%, 45%) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 22px;
  height: 22px;
  color: white;
}

.feature-icon.panda-points {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
}

.feature-icon.panda-points-icon {
  background: transparent;
  border: 2px solid var(--border);
}

.feature-icon.panda-points-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.panda-icon-black { display: block; }
.panda-icon-white { display: none; }
.dark .panda-icon-black { display: none; }
.dark .panda-icon-white { display: block; }

.feature-icon.verified-icon {
  background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
}

.feature-icon.refresh-icon {
  background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
}

.section-header-with-paw .section-title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.section-paw {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.section-paw-black { display: block; }
.section-paw-white { display: none; }
.dark .section-paw-black { display: none; }
.dark .section-paw-white { display: block; }

.section-header-with-paw h2 {
  margin-bottom: 0;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--foreground);
}

.feature-card p {
  color: var(--muted-foreground);
  line-height: 1.7;
}

.featured-properties {
  padding: 6rem 0;
  background-color: var(--muted);
}

.properties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.property-card {
  background-color: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  cursor: pointer;
}

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

.property-image {
  height: 180px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.property-image-slideshow {
  height: 180px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
}

.slideshow-track {
  width: 100%;
  height: 100%;
  position: relative;
}

.slideshow-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.slideshow-image.active {
  opacity: 1;
}

.slideshow-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
}

.slideshow-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.2s ease;
}

.slideshow-dots .dot.active {
  background-color: white;
  transform: scale(1.2);
}

.slideshow-dots .dot:hover {
  background-color: rgba(255, 255, 255, 0.8);
}

.property-placeholder-icon {
  opacity: 0.3;
}

.property-placeholder-icon svg {
  color: white;
}

.property-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: var(--primary-blue);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.property-badge.luxury {
  background-color: var(--primary-blue);
  color: white;
}

.property-verified {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background-color: #16a34a;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.property-verified svg {
  width: 14px;
  height: 14px;
}

.property-content {
  padding: 1.25rem;
}

.property-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

.property-location svg {
  flex-shrink: 0;
}

.property-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.75rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.property-details {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.property-details span {
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.property-details span:not(:last-child)::after {
  content: "•";
  margin-left: 0.75rem;
  color: var(--border);
}

.property-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-blue);
}

.properties-cta {
  text-align: center;
  margin-top: 3rem;
}

.properties-cta p {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.properties-cta .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

@media (max-width: 992px) {
  .properties-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .properties-grid {
    grid-template-columns: 1fr;
  }
  
  .property-image {
    height: 160px;
  }
}

/* App Preview Section with Phone Mockups */
.app-preview {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary-blue) 0%, hsl(222, 84%, 25%) 100%);
  color: white;
}

.dark .app-preview {
  background: linear-gradient(135deg, hsl(222, 84%, 20%) 0%, hsl(222, 84%, 10%) 100%);
}

.app-preview-header h2 {
  color: white;
}

.app-preview-header p {
  color: rgba(255, 255, 255, 0.9);
}

.mockup-showcase {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.mockup-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}

.mockup-item:hover {
  transform: translateY(-10px);
}

.mockup-item img {
  width: 220px;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
}

.mockup-label {
  margin-top: 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
}

@media (max-width: 992px) {
  .mockup-showcase {
    gap: 1.5rem;
  }
  
  .mockup-item img {
    width: 180px;
  }
}

@media (max-width: 768px) {
  .app-preview {
    padding: 4rem 0;
  }
  
  .mockup-showcase {
    gap: 1.25rem;
  }
  
  .mockup-item img {
    width: 150px;
    border-radius: 18px;
  }
  
  .mockup-label {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .mockup-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .mockup-item img {
    width: 100%;
    max-width: 160px;
    border-radius: 14px;
  }
  
  .mockup-label {
    font-size: 0.8rem;
  }
}


.packages {
  padding: 4rem 0;
  background-color: var(--background);
}

/* 5-Column Packages Grid */
/* Horizontal Swipe Carousel for Packages */
.packages-carousel-wrapper {
  position: relative;
  margin-top: 2rem;
}

.packages-grid-5 {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 0.5rem 0 1.5rem;
  margin: 0 -1rem;
  padding-left: 1rem;
  padding-right: 1rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.packages-grid-5::-webkit-scrollbar {
  display: none;
}

.packages-grid-5 .package-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

/* Desktop: Show all packages centered */
@media (min-width: 1200px) {
  .packages-grid-5 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    overflow-x: visible;
    margin: 0;
    padding: 0.5rem 0 1.5rem;
    gap: 1.25rem;
  }
  
  .packages-grid-5 .package-card {
    flex: 0 0 240px;
  }
}

/* Carousel Navigation Arrows */
.carousel-nav {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  cursor: pointer;
  z-index: 10;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.carousel-nav:hover {
  background: var(--primary-blue);
  color: white;
  border-color: var(--primary-blue);
}

.carousel-nav svg {
  width: 20px;
  height: 20px;
}

.carousel-nav-left {
  left: -22px;
}

.carousel-nav-right {
  right: -22px;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .carousel-nav {
    display: flex;
  }
}

.packages-grid-5 .package-card {
  min-width: 260px;
  max-width: 300px;
  padding: 1.25rem;
  flex-shrink: 0;
}

@media (min-width: 1200px) {
  .packages-grid-5 .package-card {
    min-width: unset;
    max-width: unset;
  }
}

.packages-grid-5 .package-header h3 {
  font-size: 0.95rem;
}

.packages-grid-5 .price {
  font-size: 1.2rem;
}

.packages-grid-5 .package-features {
  margin-top: 1rem;
}

.packages-grid-5 .package-features li {
  font-size: 0.8rem;
  padding: 0.25rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.packages-grid-5 .package-features li svg {
  flex-shrink: 0;
  color: hsl(142, 76%, 45%);
}

/* Business Paket with Blur Effect */
.package-business-blur {
  position: relative;
  overflow: hidden;
}

.package-business-blur .package-header {
  position: relative;
  z-index: 2;
}

.package-business-blur .package-header h3 {
  font-weight: 700;
  color: var(--foreground);
}

.blur-overlay {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 160px;
}

.blur-content {
  filter: blur(6px);
  opacity: 0.4;
  user-select: none;
  pointer-events: none;
  text-align: center;
}

.price-blurred {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.package-features-blurred {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.8rem;
  color: var(--foreground);
}

.package-features-blurred li {
  padding: 0.2rem 0;
}

.blur-cta {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  font-size: 0.85rem;
  padding: 0.75rem 1.25rem;
  white-space: nowrap;
}

.packages-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.package-tab {
  padding: 0.75rem 2rem;
  border: 2px solid var(--border);
  border-radius: 9999px;
  background-color: var(--card);
  color: var(--foreground);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}

.package-tab:hover {
  border-color: var(--primary-blue);
}

.package-tab.active {
  background-color: var(--primary-blue);
  border-color: var(--primary-blue);
  color: white;
}

.packages-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.packages-slider {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 1rem 0.5rem 1rem 0.5rem;
  flex: 1;
}

.packages-slider::-webkit-scrollbar {
  display: none;
}

.packages-slider.hidden {
  display: none;
}

.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background-color: var(--card);
  color: var(--foreground);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.slider-btn:hover {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
}

.package-card {
  background-color: var(--card);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  transition: all 0.3s ease;
  min-width: 280px;
  max-width: 320px;
  flex-shrink: 0;
}

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

.package-card.featured {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 2px var(--primary-blue);
}

.package-card.featured:hover {
  transform: translateY(-4px);
}

.package-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary-blue);
  color: white;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
}

.package-header {
  text-align: center;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.5rem;
}

.package-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.package-title-with-paw {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.package-paw {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.package-paw-black {
  display: block;
}

.package-paw-white {
  display: none;
}

.dark .package-paw-black {
  display: none;
}

.dark .package-paw-white {
  display: block;
  color: var(--foreground);
}

.package-card .price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-blue);
}

.package-card .price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--muted-foreground);
}

.package-features {
  list-style: none;
}

.package-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--foreground);
  font-size: 0.9375rem;
}

.package-features li svg {
  width: 20px;
  height: 20px;
  color: #22c55e;
  flex-shrink: 0;
}

.package-hint {
  font-size: 0.75rem;
  color: var(--text-muted, #94a3b8);
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-color, #e2e8f0);
  line-height: 1.4;
}

.cta {
  padding: 6rem 0;
  background-color: var(--muted);
  text-align: center;
}

/* CTA Text Block with proper hierarchy */
.cta-text-block {
  max-width: 400px;
  margin: 0 auto 2rem;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.cta-headline {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0;
  line-height: 1.4;
  display: inline;
}

.cta-subline {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
  display: inline;
}

.cta-headline-wrapper {
  margin-bottom: 1rem;
}

.cta-features {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--muted-foreground);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.cta-conclusion {
  font-size: 1.35rem;
  font-weight: 700;
  font-style: normal;
  color: var(--foreground);
  line-height: 1.5;
  margin-bottom: 0;
}

.cta-panda-logo {
  height: 1.2em;
  width: auto;
  vertical-align: middle;
  margin-right: 0.15em;
  display: inline;
}

.cta-panda-logo-black {
  display: inline;
}

.cta-panda-logo-white {
  display: none;
}

.dark .cta-panda-logo-black {
  display: none;
}

.dark .cta-panda-logo-white {
  display: inline;
}

.cta-brand {
  color: var(--foreground);
  font-weight: 700;
}

/* Mobile responsive for CTA - Huawei P30 Pro (360px) */
@media (max-width: 480px) {
  .cta-text-block {
    max-width: 100%;
    padding: 0 0.75rem;
  }
  
  .cta-headline {
    font-size: 1.1rem;
    display: block;
  }
  
  .cta-subline {
    font-size: 1.1rem;
    display: block;
  }
  
  .cta-features {
    font-size: 0.85rem;
  }
  
  .cta-conclusion {
    font-size: 1.1rem;
  }
}

/* Legacy support */
.cta h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.cta p {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons-badges {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.store-badge-cta {
  background: var(--card);
}

.cta-app-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  min-height: 52px;
}

@media (max-width: 480px) {
  .cta-app-btn {
    width: 100%;
    max-width: 280px;
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }
}

.app-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.5rem;
  background-color: #000;
  color: white;
  border-radius: var(--radius);
  transition: all 0.2s ease;
}

.app-store-btn:hover {
  background-color: #333;
  transform: translateY(-2px);
}

.app-store-btn svg {
  width: 28px;
  height: 28px;
}

.app-store-btn .text {
  text-align: left;
}

.app-store-btn .text small {
  font-size: 0.7rem;
  opacity: 0.8;
  display: block;
}

.app-store-btn .text strong {
  display: block;
  font-size: 1rem;
}

footer {
  background-color: var(--card);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  max-width: 300px;
}

.footer-brand .logo {
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--muted-foreground);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* Mobile: Center footer brand */
@media (max-width: 768px) {
  .footer-brand {
    text-align: center;
    margin: 0 auto;
  }
  
  .footer-brand .logo {
    justify-content: center;
  }
}

.footer-column h4 {
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--foreground);
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 0.75rem;
}

.footer-column ul li a {
  color: var(--muted-foreground);
  transition: color 0.2s ease;
}

.footer-column ul li a:hover {
  color: var(--primary-blue);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: var(--primary-blue);
}

.mobile-menu-btn {
  display: none;
  width: 48px;
  height: 48px;
  border: none;
  background: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.mobile-menu-btn span {
  display: block;
  width: 28px;
  height: 3px;
  background-color: var(--foreground);
  transition: all 0.3s ease;
  border-radius: 2px;
}

@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-text p {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .features-grid,
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .package-card.featured {
    transform: none;
  }
  
  .package-card.featured:hover {
    transform: translateY(-4px);
  }
}

@media (max-width: 768px) {
  nav {
    display: none;
  }
  
  nav.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    background-color: var(--background);
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border);
    gap: 1rem;
    z-index: 999;
  }
  
  nav.mobile-open .mobile-nav-download {
    display: inline-flex !important;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
    width: 100%;
    justify-content: center;
  }
  
  .mobile-header-right {
    display: flex;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  .nav-buttons .btn {
    display: none;
  }
  
  .nav-buttons .theme-toggle {
    display: none;
  }
  
  .desktop-only {
    display: none !important;
  }
  
  .social-icons {
    gap: 0.25rem;
  }
  
  .social-link {
    width: 36px;
    height: 36px;
  }
  
  .hero-store-badges {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .store-badge {
    width: 100%;
    justify-content: center;
  }
  
  .hero-text h1 {
    font-size: 2.5rem;
  }
  
  .paw-animation-container {
    width: 250px;
    height: 250px;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .features-grid,
  .packages-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-brand {
    max-width: 100%;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero {
    padding-top: 72px;
  }
  
  .hero-text h1 {
    font-size: 2rem;
  }
  
  .btn {
    width: 100%;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .category-card {
    padding: 1.5rem 0.75rem;
  }
  
  .category-card svg {
    width: 36px;
    height: 36px;
  }
  
  .category-card h3 {
    font-size: 0.8rem;
  }
}

.page-content {
  padding-top: 100px;
  padding-bottom: 4rem;
  min-height: 100vh;
  background-color: var(--background);
}

.page-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--foreground);
}

.page-content h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.page-content p {
  margin-bottom: 1rem;
  color: var(--muted-foreground);
  line-height: 1.8;
}

.page-content ul {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  color: var(--muted-foreground);
}

.page-content ul li {
  margin-bottom: 0.5rem;
}

.page-content a {
  color: var(--primary-blue);
}

.page-content a:hover {
  text-decoration: underline;
}

/* Hero Hook Styles */
.hero-hook {
  font-size: 1.4rem;
  color: var(--foreground);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.hero-hook strong {
  color: var(--primary-blue);
  font-weight: 700;
}

.hero-hook-highlight {
  color: var(--primary-blue);
  font-weight: 600;
}

.hero-ai-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  padding: 0.75rem 1rem;
  background-color: var(--muted);
  border-radius: var(--radius);
  border-left: 3px solid var(--primary-blue);
}

.hero-ai-feature svg {
  color: var(--primary-blue);
  flex-shrink: 0;
}

/* Panda Points Explainer */
.panda-points-explainer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
  padding: 1.5rem;
  background-color: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 2px solid var(--border);
  flex-wrap: wrap;
}

.points-step {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem;
}

.points-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), #1a1a1a);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.points-icon svg {
  color: white;
  stroke: white;
}

.dark .points-icon {
  background: linear-gradient(135deg, var(--primary-color), #444);
}

.points-text {
  display: flex;
  flex-direction: column;
}

.points-text strong {
  font-size: 1rem;
  color: var(--foreground);
}

.points-text span {
  font-size: 0.8rem;
  color: var(--muted-foreground);
}

.points-arrow {
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

.points-arrow svg {
  stroke: var(--primary-blue);
}

/* Social Icons Colored */
.social-instagram:hover {
  background: linear-gradient(45deg, #FFDC80, #F77737, #E1306C, #C13584, #833AB4);
}

.social-facebook:hover {
  background-color: #1877F2;
}

.social-share {
  background-color: var(--muted);
  border: none;
  cursor: pointer;
}

.social-share:hover {
  background-color: var(--primary-blue);
  color: white;
}

.social-share svg {
  color: var(--foreground);
}

.social-share:hover svg {
  color: white;
}

/* Feature Icons - Fixed to be white inside like other icons */
.feature-icon.ai-icon,
.feature-icon.filter-icon {
  background: linear-gradient(135deg, var(--primary-blue) 0%, hsl(222, 84%, 45%) 100%);
}

.feature-icon.ai-icon svg,
.feature-icon.filter-icon svg {
  color: white;
  stroke: white;
}

.feature-icon.privacy-icon {
  background: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 100%);
}

.feature-icon.privacy-icon svg {
  color: white;
  stroke: white;
}

.feature-icon.favorites-icon svg {
  fill: #ff1f57;
  stroke: #1f4fd6;
}

/* Packages Slider Responsive Improvements */
.packages-slider-wrapper {
  position: relative;
  padding: 0 3rem;
}

.packages-slider {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 1rem 0.5rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.packages-slider::-webkit-scrollbar {
  display: none;
}

.package-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--card);
  border: 2px solid var(--border);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.2s ease;
  box-shadow: var(--shadow);
}

.slider-btn:hover {
  background-color: var(--primary-blue);
  color: white;
  border-color: var(--primary-blue);
}

.slider-btn svg {
  color: var(--foreground);
}

.slider-btn:hover svg {
  color: white;
}

.slider-prev {
  left: 0;
}

.slider-next {
  right: 0;
}

.swipe-indicator {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin-top: 1rem;
  animation: swipeHint 1.5s ease-in-out infinite;
}

.swipe-indicator svg {
  color: var(--primary-blue);
}

@keyframes swipeHint {
  0%, 100% { transform: translateX(0); opacity: 0.7; }
  50% { transform: translateX(8px); opacity: 1; }
}

@media (max-width: 768px) {
  .swipe-indicator {
    display: flex;
  }
}

/* Mobile Responsive Improvements */
@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-visual {
    order: -1;
  }
  
  .hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-ai-feature {
    text-align: left;
  }
  
  .panda-points-explainer {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .points-arrow {
    transform: rotate(90deg);
  }
}

@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 2.2rem;
  }
  
  .hero-hook {
    font-size: 1.1rem;
  }
  
  .packages-slider-wrapper {
    padding: 0 0.5rem;
  }
  
  .slider-btn {
    display: none;
  }
  
  .package-card {
    flex: 0 0 calc(90vw - 2rem);
  }
  
  .packages-slider {
    scroll-padding-left: 1rem;
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-hook {
    font-size: 1rem;
  }
  
  .hero-ai-feature {
    font-size: 0.9rem;
    flex-direction: column;
    text-align: center;
    padding: 1rem;
  }
  
  .points-step {
    flex-direction: column;
    text-align: center;
  }
  
  .package-card {
    flex: 0 0 calc(100vw - 3rem);
  }
}

/* Mobile Optimization - Compact Design */
@media (max-width: 768px) {
  /* Smaller base font for mobile */
  body {
    font-size: 13px;
  }
  
  /* Header adjustments */
  .header-content {
    padding: 0.4rem 0.75rem;
    height: 56px;
  }
  
  .logo span {
    font-size: 1.375rem;
  }
  
  .logo img {
    width: 36px;
    height: 36px;
  }
  
  /* Hero section compact */
  .hero {
    padding-top: 56px;
  }
  
  .hero-content-centered {
    padding: 1rem 1rem;
    gap: 0.5rem;
  }
  
  .hero-logo-centered {
    margin-bottom: 0.2rem;
  }
  
  .hero-lottie-animation {
    width: 130px !important;
    height: 130px !important;
    max-width: 130px !important;
    max-height: 130px !important;
  }
  
  .hero-lottie-animation.hero-lottie-small {
    width: 130px !important;
    height: 130px !important;
    max-width: 130px !important;
    max-height: 130px !important;
  }
  
  .hero-brand-name {
    font-size: 1.6rem;
    margin: 0.15rem 0 0 0;
  }
  
  .hero-headline-centered {
    font-size: 1.4rem;
    line-height: 1.2;
    margin-bottom: 0.5rem;
  }
  
  /* Hero flow - compact vertical layout */
  .hero-flow {
    flex-direction: column;
    gap: 0.35rem;
    padding: 0.5rem 0.75rem;
    width: 100%;
    max-width: 220px;
    margin: 0 auto;
    border-radius: 10px;
  }
  
  .flow-step {
    font-size: 0.75rem;
    padding: 0.3rem 0.5rem;
    width: 100%;
    text-align: center;
    border-radius: 6px;
  }
  
  .flow-arrow {
    transform: rotate(90deg);
    width: 14px;
    height: 14px;
  }
  
  .flow-paw {
    width: 14px;
    height: 14px;
  }
  
  /* Tagline and AI line - larger and closer together */
  .hero-tagline-centered {
    font-size: 0.85rem;
    margin-bottom: 0.1rem !important;
  }
  
  .hero-ai-line {
    font-size: 0.8rem;
    margin-top: 0 !important;
    margin-bottom: 0.5rem;
  }
  
  .ki-icon-inline {
    width: 14px;
    height: 14px;
  }
  
  /* Buttons - BIGGER on mobile for better visibility */
  .hero-buttons-centered {
    gap: 0.75rem;
    margin-top: 1.25rem !important;
    margin-bottom: 1rem;
  }
  
  .hero-buttons-centered .btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
    width: 100%;
    max-width: 280px;
  }
  
  .hero-buttons-centered .btn svg {
    width: 20px;
    height: 20px;
  }
  
  /* Section headers */
  .section-header {
    margin-bottom: 1.5rem;
  }
  
  .section-header h2 {
    font-size: 1.25rem;
  }
  
  .section-header p {
    font-size: 0.8rem;
  }
  
  .section-paw {
    width: 26px;
    height: 26px;
  }
  
  /* Sections padding */
  .features,
  .featured-properties,
  .categories,
  .quiz-section,
  .packages,
  .download {
    padding: 2.5rem 0;
  }
  
  /* Feature cards */
  .feature-card {
    padding: 1rem;
  }
  
  .feature-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 0.75rem;
  }
  
  .feature-icon svg {
    width: 20px;
    height: 20px;
  }
  
  .feature-card h3 {
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
  }
  
  .feature-card p {
    font-size: 0.75rem;
    line-height: 1.5;
  }
  
  /* Property cards */
  .property-image-slideshow {
    height: 140px;
  }
  
  .property-info {
    padding: 0.75rem;
  }
  
  .property-info h3 {
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
  }
  
  .property-price {
    font-size: 0.95rem !important;
  }
  
  .property-details {
    font-size: 0.7rem;
  }
  
  /* Category cards */
  .category-card {
    padding: 1rem 0.5rem;
  }
  
  .category-card svg {
    width: 28px;
    height: 28px;
  }
  
  .category-card h3 {
    font-size: 0.7rem;
  }
  
  
  
  /* Package cards */
  .package-card {
    padding: 1.25rem;
  }
  
  .package-card h3 {
    font-size: 1rem;
  }
  
  .package-card .price {
    font-size: 1.25rem;
  }
  
  .package-features li {
    font-size: 0.75rem;
  }
  
  /* Download section */
  .download h2 {
    font-size: 1.25rem;
  }
  
  .download p {
    font-size: 0.8rem;
  }
  
  /* Inline paw smaller */
  .inline-paw {
    width: 16px;
    height: 16px;
  }
  
  /* Footer compact */
  footer {
    padding: 2rem 0 1rem;
  }
  
  .footer-brand p {
    font-size: 0.75rem;
  }
  
  .footer-links h4 {
    font-size: 0.85rem;
  }
  
  .footer-links a {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  /* Even smaller for very small phones */
  body {
    font-size: 12px;
  }
  
  .header-content {
    height: 50px;
    padding: 0.3rem 0.5rem;
  }
  
  .logo span {
    font-size: 1.25rem;
  }
  
  .logo img {
    width: 32px;
    height: 32px;
  }
  
  .hero {
    padding-top: 50px;
  }
  
  .hero-content-centered {
    padding: 0.5rem 0.75rem;
    gap: 0.4rem;
  }
  
  .hero-logo-centered {
    margin-bottom: 0.1rem;
  }
  
  .hero-lottie-animation {
    width: 100px !important;
    height: 100px !important;
    max-width: 100px !important;
    max-height: 100px !important;
  }
  
  .hero-lottie-animation.hero-lottie-small {
    width: 100px !important;
    height: 100px !important;
    max-width: 100px !important;
    max-height: 100px !important;
  }
  
  .hero-brand-name {
    font-size: 1.4rem;
    margin: 0.05rem 0 0 0;
  }
  
  .hero-headline-centered {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
  }
  
  .hero-flow {
    max-width: 200px;
    padding: 0.4rem 0.5rem;
    gap: 0.25rem;
  }
  
  .flow-step {
    font-size: 0.7rem;
    padding: 0.25rem 0.4rem;
  }
  
  .flow-arrow {
    width: 12px;
    height: 12px;
  }
  
  .flow-paw {
    width: 12px;
    height: 12px;
  }
  
  .hero-tagline-centered {
    font-size: 0.75rem;
    margin-bottom: 0.05rem !important;
  }
  
  .hero-ai-line {
    font-size: 0.7rem;
    margin-top: 0 !important;
  }
  
  .ki-icon-inline {
    width: 12px;
    height: 12px;
  }
  
  .hero-buttons-centered .btn {
    padding: 0.85rem 1.4rem;
    font-size: 0.9rem;
    width: 100%;
    max-width: 260px;
  }
  
  .hero-buttons-centered .btn svg {
    width: 18px;
    height: 18px;
  }
  
  .section-header h2 {
    font-size: 1.1rem;
  }
  
  .section-header p {
    font-size: 0.72rem;
  }
  
  .section-paw {
    width: 22px;
    height: 22px;
  }
  
  .features,
  .featured-properties,
  .categories,
  .quiz-section,
  .packages,
  .download {
    padding: 2rem 0;
  }
  
  .feature-icon {
    width: 36px;
    height: 36px;
  }
  
  .feature-icon svg {
    width: 18px;
    height: 18px;
  }
  
  .feature-card h3 {
    font-size: 0.85rem;
  }
  
  .feature-card p {
    font-size: 0.7rem;
  }
  
  .property-image-slideshow {
    height: 120px;
  }
  
  .property-info {
    padding: 0.5rem;
  }
  
  .property-info h3 {
    font-size: 0.78rem;
  }
  
  .property-price {
    font-size: 0.88rem !important;
  }
  
  .property-details {
    font-size: 0.65rem;
  }
  
  .category-card svg {
    width: 24px;
    height: 24px;
  }
  
  .category-card h3 {
    font-size: 0.65rem;
  }
  
  .inline-paw {
    width: 14px;
    height: 14px;
  }
  
}
