/* ============================================
   Emhash Website Styles
   Modern, Social Media-Inspired Design
   ============================================ */

/* ============================================
   CSS Variables - Emhash Theme
   ============================================ */
:root {
  /* Brand Colors */
  --primary: #4B412B;
  --primary-dark: #383020;
  --primary-light: #978256;
  --gradient-start: #171410;
  --gradient-end: #896B2E;
  
  /* Text Colors */
  --text-primary: #1F2937;
  --text-secondary: #6B7280;
  --text-light: #9CA3AF;
  
  /* Background Colors */
  --bg-primary: #FFFFFF;
  --bg-secondary: #F9FAFB;
  --bg-tertiary: #F3F4F6;
  
  /* Emotion Colors */
  --emotion-happy: #FFD700;
  --emotion-love: #FF1493;
  --emotion-peaceful: #4CAF50;
  --emotion-sad: #2196F3;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 6rem;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;
}

/* ============================================
   Site Header Navigation
   ============================================ */
.site-header-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  padding: 0.75rem 0;
}

.site-header-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.site-logo img {
  height: 32px;
  width: auto;
}

.site-logo span {
  font-family: 'Pacifico', cursive;
  font-size: 1.25rem;
  color: var(--text-primary);
}

/* Navigation Menu */
.site-nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.site-nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.site-nav-link:hover {
  color: var(--primary);
  background: rgba(75, 65, 43, 0.05);
}

.site-nav-link.active {
  color: var(--primary);
  font-weight: 600;
}

.site-nav-btn {
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  color: white;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.8rem;
  transition: var(--transition-base);
  box-shadow: 0 4px 16px rgba(75, 65, 43, 0.2);
  margin-left: 0.5rem;
}

.site-nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(75, 65, 43, 0.3);
}

/* Mobile Menu Toggle */
.site-nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  color: var(--text-primary);
}

.site-nav-toggle svg {
  width: 24px;
  height: 24px;
}

/* Site Header Mobile Responsive */
@media (max-width: 768px) {
  .site-header-nav {
    padding: 0.5rem 0;
  }
  
  .site-logo img {
    height: 28px;
  }
  
  .site-logo span {
    font-size: 1.1rem;
  }
  
  .site-nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 1rem;
    gap: 0.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: none;
  }
  
  .site-nav-menu.open {
    display: flex;
  }
  
  .site-nav-link {
    width: 100%;
    text-align: center;
    padding: 0.75rem;
  }
  
  .site-nav-btn {
    width: 100%;
    text-align: center;
    margin-left: 0;
    margin-top: 0.5rem;
  }
  
  .site-nav-toggle {
    display: block;
  }
}

@media (max-width: 480px) {
  .site-header-nav {
    padding: 0.5rem 0;
  }
  
  .site-logo img {
    height: 24px;
  }
  
  .site-logo span {
    font-size: 1rem;
  }
  
  .site-nav-btn {
    padding: 0.4rem 0.75rem;
    font-size: 0.7rem;
  }
}

/* ============================================
   Reset & Base Styles
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.pacifico-text {
  font-family: 'Pacifico', cursive;
  font-weight: 400;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-base);
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* ============================================
   Container
   ============================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  z-index: 1000;
  transition: var(--transition-base);
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-md) 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.logo-image {
  height: 32px;
  width: auto;
  object-fit: contain;
}

.logo-icon {
  font-size: 1.75rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
}

.nav-link {
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.nav-link:hover {
  color: var(--primary);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: var(--spacing-xs);
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--primary);
  transition: var(--transition-fast);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 73px;
  left: 0;
  right: 0;
  background: white;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: var(--spacing-md);
  flex-direction: column;
  gap: var(--spacing-sm);
  z-index: 999;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu-link {
  padding: var(--spacing-sm);
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.mobile-menu-link:hover {
  background: var(--bg-secondary);
  color: var(--primary);
}

/* ============================================
   Buttons
   ============================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  color: white;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: var(--transition-base);
  box-shadow: var(--shadow-md);
}

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

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  padding: 0.75rem 1.5rem;
  background: white;
  color: var(--primary);
  font-weight: 600;
  border: 2px solid var(--primary);
  border-radius: var(--radius-full);
  transition: var(--transition-base);
}

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

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

/* ============================================
   Brand Header
   ============================================ */
.brand-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-xl);
  padding-top: var(--spacing-xl);
}

.brand-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.brand-name {
  font-family: 'Pacifico', cursive;
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* ============================================
   Hero Section - Single Page
   ============================================ */
.hero-single {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 var(--spacing-lg);
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
  overflow: hidden;
  position: relative;
}

.hero-single::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(135deg, rgba(248, 249, 250, 0.92) 0%, rgba(255, 255, 255, 0.88) 40%, rgba(248, 249, 250, 0.92) 100%),
    url('../assets/map.png');
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  pointer-events: none;
}

.hero-single::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at 20% 30%, rgba(75, 65, 43, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(151, 130, 86, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-single-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--spacing-3xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text-content {
  max-width: 600px;
}

.hero-main-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.hero-tagline {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: var(--spacing-xl);
  line-height: 1.6;
}

.hero-download-buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
  align-items: center;
  justify-content: flex-start;
}

.store-button-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  background: white;
  color: var(--text-primary);
  border-radius: 50px;
  transition: var(--transition-base);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border: 2px solid rgba(0, 0, 0, 0.06);
  min-width: 160px;
  flex: 0 1 auto;
  white-space: nowrap;
}

.store-button-hero:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-light);
  background: linear-gradient(135deg, #ffffff, #f8f9fa);
}

.hero-download-note {
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
}

/* Phone Mockups */
.hero-phones {
  position: relative;
  height: 650px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup-hero {
  position: absolute;
  transition: var(--transition-slow);
}

.phone-frame {
  width: 280px;
  height: 570px;
  background: #1a1a1a;
  border-radius: 45px;
  padding: 12px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25),
              0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  position: relative;
  overflow: hidden;
}

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

.phone-screen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 36px;
}

/* Phone Positions */
.phone-1 {
  z-index: 3;
  transform: translateX(0) rotate(0deg);
}

.phone-2 {
  z-index: 2;
  transform: translateX(-180px) rotate(-8deg);
}

.phone-3 {
  z-index: 1;
  transform: translateX(180px) rotate(8deg);
}

/* Phone Hover Effects */
.hero-phones:hover .phone-1 {
  transform: translateX(0) rotate(0deg) translateY(-10px);
}

.hero-phones:hover .phone-2 {
  transform: translateX(-200px) rotate(-12deg) translateY(-5px);
}

.hero-phones:hover .phone-3 {
  transform: translateX(200px) rotate(12deg) translateY(-5px);
}

/* Emotions Container - Spans entire section */
.emotions-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

/* Floating Emotion Icons */
.floating-emotion {
  position: absolute;
  animation: float 4s ease-in-out infinite;
  pointer-events: auto;
  background: none !important;
  width: fit-content;
  height: fit-content;
}

.floating-emotion svg {
  display: block;
  background: none !important;
  overflow: visible;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
  -webkit-filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
}

/* Remove any potential background from SVG root */
.floating-emotion svg > * {
  background: none !important;
}

/* Emotion Positions - Scattered across all areas */
/* Upper Left */
.emotion-pos-1 {
  top: 8%;
  left: 3%;
  animation-delay: 0s;
}

/* Upper Right */
.emotion-pos-2 {
  top: 12%;
  right: 5%;
  animation-delay: 0.8s;
}

/* Lower Left */
.emotion-pos-3 {
  bottom: 15%;
  left: 6%;
  animation-delay: 1.6s;
}

/* Lower Right */
.emotion-pos-4 {
  bottom: 10%;
  right: 8%;
  animation-delay: 2.4s;
}

/* Left Side (middle) */
.emotion-pos-5 {
  top: 45%;
  left: 1%;
  animation-delay: 3.2s;
}

/* Upper Left (inner) */
.emotion-pos-6 {
  top: 25%;
  left: 12%;
  animation-delay: 1.2s;
}

/* Right Side (middle-lower) */
.emotion-pos-7 {
  top: 55%;
  right: 3%;
  animation-delay: 2s;
}

/* Lower Right (inner) */
.emotion-pos-8 {
  bottom: 30%;
  right: 10%;
  animation-delay: 2.8s;
}

/* Upper Right (inner) */
.emotion-pos-9 {
  top: 20%;
  right: 15%;
  animation-delay: 0.4s;
}

/* Lower Left (inner) */
.emotion-pos-10 {
  bottom: 25%;
  left: 15%;
  animation-delay: 3.6s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) scale(1);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-25px) scale(1.1);
    opacity: 1;
  }
}

/* ============================================
   Privacy Footer
   ============================================ */
.privacy-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-xl) var(--spacing-md) var(--spacing-lg);
  margin-top: var(--spacing-xl);
  flex-wrap: wrap;
}

.privacy-link {
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  transition: var(--transition-fast);
  white-space: nowrap;
}

.privacy-link:hover {
  color: var(--primary);
}

.separator {
  color: var(--text-light);
  font-size: 0.875rem;
}

.copyright-text {
  color: var(--text-light);
  font-size: 0.875rem;
  white-space: nowrap;
}

/* ============================================
   Hide Navbar and Old Footer
   ============================================ */
.navbar,
.mobile-menu,
.footer-minimal,
.footer {
  display: none;
}

/* Old Hero (keep for reference, can be removed) */
.hero {
  padding: calc(73px + var(--spacing-3xl)) 0 var(--spacing-3xl);
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  overflow: hidden;
  display: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-3xl);
  align-items: center;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--spacing-md);
  color: var(--text-primary);
}

.gradient-text {
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: var(--spacing-xl);
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-xl);
}

.hero-stats {
  display: flex;
  gap: var(--spacing-xl);
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: var(--spacing-xs);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup {
  position: relative;
  width: 300px;
  height: 600px;
  background: white;
  border-radius: 40px;
  padding: 12px;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.app-screenshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 32px;
}

.floating-emoji {
  position: absolute;
  font-size: 3rem;
  animation: float 3s ease-in-out infinite;
}

.emoji-1 {
  top: 10%;
  left: -10%;
  animation-delay: 0s;
}

.emoji-2 {
  top: 30%;
  right: -10%;
  animation-delay: 0.5s;
}

.emoji-3 {
  bottom: 30%;
  left: -5%;
  animation-delay: 1s;
}

.emoji-4 {
  bottom: 10%;
  right: -5%;
  animation-delay: 1.5s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

/* ============================================
   Section Headers
   ============================================ */
.section-header {
  text-align: center;
  margin-bottom: var(--spacing-3xl);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: var(--spacing-md);
  color: var(--text-primary);
}

.section-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   Features Section
   ============================================ */
.features {
  padding: var(--spacing-3xl) 0;
  background: var(--bg-primary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
}

.feature-card {
  background: white;
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition-base);
}

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

.feature-icon {
  font-size: 3rem;
  margin-bottom: var(--spacing-md);
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  color: var(--text-primary);
}

.feature-description {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   How It Works Section
   ============================================ */
.how-it-works {
  padding: var(--spacing-3xl) 0;
  background: var(--bg-secondary);
}

.steps {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-3xl);
}

.step {
  display: grid;
  grid-template-columns: 80px 1fr 400px;
  gap: var(--spacing-xl);
  align-items: center;
}

.step-reverse {
  grid-template-columns: 80px 1fr 400px;
}

.step-reverse .step-content {
  order: 2;
}

.step-reverse .step-image {
  order: 1;
}

.step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  color: white;
  font-size: 2rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}

.step-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  color: var(--text-primary);
}

.step-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.step-image {
  position: relative;
}

.screenshot {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

/* ============================================
   App Download Section
   ============================================ */
.app-download {
  padding: var(--spacing-3xl) 0;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
}

.download-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-3xl);
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: var(--spacing-3xl);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.download-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: var(--spacing-md);
  line-height: 1.2;
}

.download-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--spacing-xl);
  line-height: 1.7;
}

.download-buttons {
  display: flex;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

.store-button {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-md) var(--spacing-lg);
  background: white;
  color: var(--text-primary);
  border-radius: var(--radius-md);
  transition: var(--transition-base);
  box-shadow: var(--shadow-md);
}

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

.store-icon {
  width: 32px;
  height: 32px;
}

.store-icon svg {
  width: 100%;
  height: 100%;
}

.store-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  white-space: nowrap;
}

.store-label {
  font-size: 0.75rem;
  color: var(--text-light);
  line-height: 1;
  white-space: nowrap;
}

.store-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1;
  white-space: nowrap;
}

.download-note {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
}

.phone-stack {
  position: relative;
  height: 500px;
}

.phone-stack-img {
  position: absolute;
  width: 250px;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  transition: var(--transition-base);
}

.phone-1 {
  top: 0;
  left: 50%;
  transform: translateX(-50%) rotate(-5deg);
  z-index: 3;
}

.phone-2 {
  top: 40px;
  left: 20%;
  transform: rotate(-10deg);
  z-index: 2;
}

.phone-3 {
  top: 40px;
  right: 20%;
  transform: rotate(10deg);
  z-index: 1;
}

.phone-stack:hover .phone-1 {
  transform: translateX(-50%) rotate(0deg) translateY(-10px);
}

.phone-stack:hover .phone-2 {
  transform: rotate(-5deg) translateY(-5px);
}

.phone-stack:hover .phone-3 {
  transform: rotate(5deg) translateY(-5px);
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--text-primary);
  color: white;
  padding: var(--spacing-3xl) 0 var(--spacing-lg);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: var(--spacing-3xl);
  margin-bottom: var(--spacing-xl);
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.7);
  margin: var(--spacing-md) 0;
}

.social-links {
  display: flex;
  gap: var(--spacing-md);
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-base);
}

.social-link:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
}

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

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-xl);
}

.footer-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: var(--spacing-md);
  color: white;
}

.footer-link {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--spacing-sm);
  transition: var(--transition-fast);
}

.footer-link:hover {
  color: white;
  padding-left: var(--spacing-xs);
}

.footer-bottom {
  padding-top: var(--spacing-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
  .brand-name {
    font-size: 2.5rem;
  }
  
  .brand-logo {
    height: 40px;
  }
  
  .hero-main-title {
    font-size: 2.5rem;
  }
  
  .hero-tagline {
    font-size: 1.125rem;
  }
  
  .hero-single-content {
    gap: var(--spacing-lg);
  }
  
  .phone-frame {
    width: 240px;
    height: 490px;
  }
  
  .phone-2 {
    transform: translateX(-150px) rotate(-8deg);
  }
  
  .phone-3 {
    transform: translateX(150px) rotate(8deg);
  }
  
  .hero-phones {
    height: 550px;
  }
  
  .store-button-hero {
    padding: 0.75rem 1.25rem;
    min-width: 160px;
  }
  
  .store-icon {
    width: 30px;
    height: 30px;
  }
  
  .store-label {
    font-size: 0.625rem;
  }
  
  .store-name {
    font-size: 1rem;
  }
  
  .floating-emotion svg {
    width: 50px;
    height: 50px;
    background: transparent !important;
    background-color: transparent !important;
  }
}

@media (max-width: 768px) {
  .brand-header {
    margin-bottom: var(--spacing-lg);
    padding-top: var(--spacing-lg);
  }
  
  .brand-name {
    font-size: 2rem;
  }
  
  .brand-logo {
    height: 35px;
  }
  
  .hero-single {
    min-height: auto;
    padding: 80px 0 var(--spacing-md);
  }
  
  .hero-single-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }
  
  .hero-text-content {
    max-width: 100%;
    text-align: center;
  }
  
  .hero-main-title {
    font-size: 2rem;
  }
  
  .hero-tagline {
    font-size: 1rem;
    margin-bottom: var(--spacing-lg);
  }
  
  .hero-download-buttons {
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    justify-content: center;
  }
  
  .store-button-hero {
    padding: 0.625rem 1rem;
    min-width: 135px;
    flex: 0 1 auto;
    gap: 0.375rem;
  }
  
  .store-icon {
    width: 28px;
    height: 28px;
  }
  
  .store-label {
    font-size: 0.625rem;
  }
  
  .store-name {
    font-size: 1rem;
  }
  
  .hero-download-note {
    font-size: 0.75rem;
    margin-top: var(--spacing-xs);
  }
  
  .hero-phones {
    height: 500px;
    margin-top: var(--spacing-xl);
  }
  
  .privacy-footer {
    flex-direction: column;
    gap: var(--spacing-xs);
    text-align: center;
  }
  
  .separator {
    display: none;
  }
  
  .phone-frame {
    width: 200px;
    height: 410px;
  }
  
  .phone-1 {
    transform: translateX(0) rotate(0deg) scale(1.1);
  }
  
  .phone-2 {
    transform: translateX(-120px) rotate(-10deg) scale(0.85);
  }
  
  .phone-3 {
    transform: translateX(120px) rotate(10deg) scale(0.85);
  }
  
  .hero-phones:hover .phone-1 {
    transform: translateX(0) rotate(0deg) scale(1.1) translateY(-10px);
  }
  
  .hero-phones:hover .phone-2 {
    transform: translateX(-130px) rotate(-12deg) scale(0.85) translateY(-5px);
  }
  
  .hero-phones:hover .phone-3 {
    transform: translateX(130px) rotate(12deg) scale(0.85) translateY(-5px);
  }
  
  .floating-emotion svg {
    width: 50px;
    height: 50px;
    background: transparent !important;
    background-color: transparent !important;
  }
  
  .footer-minimal-content {
    flex-direction: column;
    gap: var(--spacing-md);
    text-align: center;
  }
  
  .footer-minimal-left {
    flex-direction: column;
    gap: var(--spacing-sm);
  }
}

@media (max-width: 480px) {
  .brand-header {
    gap: var(--spacing-sm);
    padding-top: var(--spacing-md);
    margin-bottom: var(--spacing-md);
  }
  
  .brand-name {
    font-size: 1.75rem;
  }
  
  .brand-logo {
    height: 30px;
  }
  
  .hero-main-title {
    font-size: 1.5rem;
  }
  
  .hero-tagline {
    font-size: 0.875rem;
    margin-bottom: var(--spacing-md);
  }
  
  .hero-download-buttons {
    gap: 0.5rem;
  }
  
  .store-button-hero {
    padding: 0.5rem 0.75rem;
    min-width: 125px;
    flex: 0 1 auto;
    gap: 0.3rem;
  }
  
  .hero-download-note {
    font-size: 0.625rem;
    margin-top: 0.25rem;
  }
  
  .hero-phones {
    height: 350px;
  }
  
  .phone-frame {
    width: 160px;
    height: 330px;
    border-radius: 35px;
    padding: 10px;
  }
  
  .phone-notch {
    width: 90px;
    height: 22px;
  }
  
  .phone-screen {
    border-radius: 28px;
  }
  
  .phone-1 {
    transform: translateX(0) rotate(0deg) scale(1);
  }
  
  .phone-2 {
    transform: translateX(-90px) rotate(-12deg) scale(0.75);
  }
  
  .phone-3 {
    transform: translateX(90px) rotate(12deg) scale(0.75);
  }
  
  .floating-emotion svg {
    width: 40px;
    height: 40px;
    background: transparent !important;
    background-color: transparent !important;
  }
  
  .store-icon {
    width: 24px;
    height: 24px;
  }
  
  .store-label {
    font-size: 0.5rem;
  }
  
  .store-name {
    font-size: 0.875rem;
  }
  
  .privacy-footer {
    padding: var(--spacing-lg) var(--spacing-sm) var(--spacing-md);
    gap: var(--spacing-xs);
  }
  
  .privacy-link,
  .copyright-text {
    font-size: 0.75rem;
  }
}

/* ============================================
   Safari-Specific Fixes for SVG Background
   ============================================ */
@supports (-webkit-appearance:none) {
  .floating-emotion {
    background: none !important;
    background-color: rgba(0, 0, 0, 0) !important;
    isolation: isolate;
  }
  
  .floating-emotion svg {
    background: none !important;
    background-color: rgba(0, 0, 0, 0) !important;
    -webkit-background-size: 0 0 !important;
    background-size: 0 0 !important;
    /* Remove filter for Safari to prevent background rendering */
    filter: none !important;
    -webkit-filter: none !important;
  }
  
  .floating-emotion svg * {
    background: none !important;
  }
  
  .floating-emotion svg circle,
  .floating-emotion svg path,
  .floating-emotion svg ellipse {
    background: none !important;
    background-color: transparent !important;
  }
}

/* ============================================
   Emotions Section - Playful Floating Style
   ============================================ */
.emotions-section {
  padding: var(--spacing-3xl) 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  overflow: hidden;
}

.emotions-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-3xl);
  align-items: center;
}

.emotions-text .section-title {
  text-align: left;
  margin-bottom: var(--spacing-md);
}

.emotions-text .section-description {
  text-align: left;
  margin: 0 0 var(--spacing-xl) 0;
  max-width: none;
}

.emotions-features {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.emotion-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-md);
  padding: var(--spacing-md);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: var(--transition-base);
}

.emotion-feature:hover {
  transform: translateX(8px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.emotion-feature-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.emotion-feature-text h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.emotion-feature-text p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin: 0;
}

.emotions-visual {
  position: relative;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.emotions-cloud {
  position: relative;
  width: 100%;
  height: 450px;
}

.emotion-bubble {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: var(--transition-base);
}

.emotion-bubble:hover {
  transform: scale(1.15);
  z-index: 10;
}

.emotion-bubble svg {
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
  transition: var(--transition-base);
}

.emotion-bubble-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-primary);
  background: white;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
}

.emotion-more {
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.emotion-more-text {
  color: white;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
}

.emotion-more .emotion-bubble-label {
  position: absolute;
  bottom: -25px;
}

/* Emotion bubble floating positions */
.emotion-float-1 { top: 5%; left: 10%; animation: emotionFloat 4s ease-in-out infinite; }
.emotion-float-2 { top: 15%; right: 5%; animation: emotionFloat 3.5s ease-in-out infinite 0.5s; }
.emotion-float-3 { top: 35%; left: 5%; animation: emotionFloat 4.2s ease-in-out infinite 1s; }
.emotion-float-4 { top: 8%; left: 45%; animation: emotionFloat 3.8s ease-in-out infinite 0.3s; }
.emotion-float-5 { top: 45%; right: 15%; animation: emotionFloat 4.5s ease-in-out infinite 0.8s; }
.emotion-float-6 { top: 60%; left: 15%; animation: emotionFloat 3.6s ease-in-out infinite 1.2s; }
.emotion-float-7 { top: 30%; right: 35%; animation: emotionFloat 4.1s ease-in-out infinite 0.6s; }
.emotion-float-8 { bottom: 15%; left: 40%; animation: emotionFloat 3.9s ease-in-out infinite 0.9s; }
.emotion-float-9 { bottom: 25%; right: 5%; animation: emotionFloat 4.3s ease-in-out infinite 1.4s; }
.emotion-float-10 { top: 55%; left: 50%; animation: emotionFloat 3.7s ease-in-out infinite 0.4s; }
.emotion-float-11 { bottom: 5%; right: 30%; animation: emotionFloat 4.4s ease-in-out infinite 1.1s; }

@keyframes emotionFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(3deg);
  }
}

/* ============================================
   Hashtags Section
   ============================================ */
.hashtags-section {
  padding: var(--spacing-3xl) 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
  overflow: hidden;
}

.hashtags-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-3xl);
  align-items: center;
}

.hashtags-text .section-title {
  text-align: left;
  margin-bottom: var(--spacing-md);
}

.hashtags-text .section-description {
  text-align: left;
  margin: 0 0 var(--spacing-xl) 0;
  max-width: none;
}

.hashtags-features {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.hashtag-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-md);
  padding: var(--spacing-md);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: var(--transition-base);
}

.hashtag-feature:hover {
  transform: translateX(8px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.hashtag-feature-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.hashtag-feature-text h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.hashtag-feature-text p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin: 0;
}

.hashtags-visual {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hashtags-cloud {
  position: relative;
  width: 100%;
  height: 400px;
}

.hashtag {
  position: absolute;
  padding: 0.5rem 1rem;
  background: white;
  border-radius: var(--radius-full);
  font-weight: 600;
  color: var(--primary);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: var(--transition-base);
  cursor: pointer;
  white-space: nowrap;
}

.hashtag:hover {
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  color: white;
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(75, 65, 43, 0.2);
}

.hashtag-sm {
  font-size: 0.75rem;
  padding: 0.375rem 0.75rem;
}

.hashtag-md {
  font-size: 0.875rem;
}

.hashtag-lg {
  font-size: 1rem;
  padding: 0.625rem 1.25rem;
}

/* Hashtag positions with floating animation */
.hashtag-float-1 { top: 10%; left: 5%; animation: hashtagFloat 4s ease-in-out infinite; }
.hashtag-float-2 { top: 25%; left: 55%; animation: hashtagFloat 3.5s ease-in-out infinite 0.5s; }
.hashtag-float-3 { top: 5%; right: 10%; animation: hashtagFloat 4.2s ease-in-out infinite 1s; }
.hashtag-float-4 { top: 40%; left: 15%; animation: hashtagFloat 3.8s ease-in-out infinite 0.3s; }
.hashtag-float-5 { top: 55%; right: 5%; animation: hashtagFloat 4.5s ease-in-out infinite 0.8s; }
.hashtag-float-6 { top: 70%; left: 40%; animation: hashtagFloat 3.6s ease-in-out infinite 1.2s; }
.hashtag-float-7 { top: 35%; right: 25%; animation: hashtagFloat 4.1s ease-in-out infinite 0.6s; }
.hashtag-float-8 { bottom: 10%; left: 10%; animation: hashtagFloat 3.9s ease-in-out infinite 0.9s; }
.hashtag-float-9 { top: 15%; left: 35%; animation: hashtagFloat 4.3s ease-in-out infinite 1.4s; }
.hashtag-float-10 { bottom: 25%; right: 15%; animation: hashtagFloat 3.7s ease-in-out infinite 0.4s; }
.hashtag-float-11 { top: 60%; left: 5%; animation: hashtagFloat 4.4s ease-in-out infinite 1.1s; }
.hashtag-float-12 { bottom: 5%; right: 35%; animation: hashtagFloat 3.4s ease-in-out infinite 0.7s; }

@keyframes hashtagFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-12px) rotate(2deg);
  }
}

/* ============================================
   Tracking Section
   ============================================ */
.tracking-section {
  padding: var(--spacing-3xl) 0;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  overflow: hidden;
}

.tracking-content {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--spacing-3xl);
  align-items: center;
}

.tracking-text .section-title {
  text-align: left;
  margin-bottom: var(--spacing-md);
}

.tracking-text .section-description {
  text-align: left;
  margin: 0 0 var(--spacing-xl) 0;
  max-width: none;
}

.tracking-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-md);
}

.tracking-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-sm);
  padding: var(--spacing-md);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: var(--transition-base);
}

.tracking-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.tracking-feature-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.tracking-feature-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.tracking-feature-text p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.4;
}

.tracking-visual {
  position: relative;
}

.tracking-phones {
  position: relative;
  height: 550px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tracking-phone {
  position: absolute;
  transition: var(--transition-slow);
}

.tracking-phone-frame {
  background: #1a1a1a;
  border-radius: 35px;
  padding: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.tracking-phone-screen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
}

/* Phone positions - stacked fan layout */
.tracking-phone-1 {
  z-index: 1;
  transform: translateX(-140px) rotate(-8deg);
}

.tracking-phone-1 .tracking-phone-frame {
  width: 200px;
  height: 420px;
}

.tracking-phone-2 {
  z-index: 3;
  transform: translateX(0) rotate(0deg);
}

.tracking-phone-2 .tracking-phone-frame {
  width: 220px;
  height: 460px;
}

.tracking-phone-3 {
  z-index: 2;
  transform: translateX(140px) rotate(8deg);
}

.tracking-phone-3 .tracking-phone-frame {
  width: 200px;
  height: 420px;
}

/* Hover effects */
.tracking-phones:hover .tracking-phone-1 {
  transform: translateX(-160px) rotate(-12deg) translateY(-5px);
}

.tracking-phones:hover .tracking-phone-2 {
  transform: translateX(0) rotate(0deg) translateY(-10px);
}

.tracking-phones:hover .tracking-phone-3 {
  transform: translateX(160px) rotate(12deg) translateY(-5px);
}

/* ============================================
   Map Section
   ============================================ */
.map-section {
  padding: var(--spacing-3xl) 0;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

/* Full-width map section */
.map-section-fullwidth {
  padding: var(--spacing-2xl) 0;
}

.map-header-centered {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.map-fullwidth-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

.map-container-large {
  position: relative;
  width: 100%;
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  padding: var(--spacing-lg);
}

.world-map-img-large {
  width: 100%;
  height: auto;
  opacity: 0.25;
  display: block;
}

.map-pin-overlay-large {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* Large map pin positions - spread across full width */
.pin-large-1 { top: 30%; left: 18%; }      /* USA West */
.pin-large-2 { top: 35%; left: 25%; }      /* USA East */
.pin-large-3 { top: 65%; left: 28%; }      /* South America */
.pin-large-4 { top: 25%; left: 47%; }      /* UK */
.pin-large-5 { top: 32%; left: 52%; }      /* Europe */
.pin-large-6 { top: 50%; left: 52%; }      /* Africa */
.pin-large-7 { top: 35%; left: 72%; }      /* China */
.pin-large-8 { top: 30%; left: 80%; }      /* Japan */
.pin-large-9 { top: 48%; left: 76%; }      /* Southeast Asia */
.pin-large-10 { top: 72%; left: 85%; }     /* Australia */
.pin-large-11 { top: 42%; left: 60%; }     /* India */
.pin-large-12 { top: 38%; left: 42%; }     /* Spain */

.pin-large-1 .pin-pulse-ring { background: #FFE564; }
.pin-large-2 .pin-pulse-ring { background: #64B5F6; }
.pin-large-3 .pin-pulse-ring { background: #9BE7C4; }
.pin-large-4 .pin-pulse-ring { background: #FF66A8; }
.pin-large-5 .pin-pulse-ring { background: #CFA8FF; }
.pin-large-6 .pin-pulse-ring { background: #FFCD72; }
.pin-large-7 .pin-pulse-ring { background: #FF7A3D; }
.pin-large-8 .pin-pulse-ring { background: #FFE564; }
.pin-large-9 .pin-pulse-ring { background: #9BE7C4; }
.pin-large-10 .pin-pulse-ring { background: #64B5F6; }
.pin-large-11 .pin-pulse-ring { background: #FF66A8; }
.pin-large-12 .pin-pulse-ring { background: #CFA8FF; }

/* Large map bubbles */
.map-bubble-large {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: white;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  animation: bubbleFloat 3s ease-in-out infinite;
}

.bubble-large-1 { top: 40%; left: 78%; animation-delay: 0s; }      /* Manila/Philippines */
.bubble-large-2 { top: 25%; left: 82%; animation-delay: 0.5s; }    /* Tokyo */
.bubble-large-3 { top: 32%; left: 20%; animation-delay: 1s; }      /* New York */
.bubble-large-4 { top: 22%; left: 45%; animation-delay: 1.5s; }    /* London */
.bubble-large-5 { top: 68%; left: 83%; animation-delay: 2s; }      /* Sydney */

/* Old map styles (keep for backward compatibility) */
.map-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--spacing-3xl);
  align-items: center;
}

.map-visual {
  position: relative;
}

.map-container {
  position: relative;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.world-map-img {
  width: 100%;
  height: auto;
  opacity: 0.15;
  transition: var(--transition-base);
}

.map-container:hover .world-map-img {
  opacity: 0.25;
}

/* Map pin overlay */
.map-pin-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.map-emotion-pin {
  position: absolute;
  pointer-events: auto;
  cursor: pointer;
  transition: var(--transition-base);
}

.map-emotion-pin:hover {
  transform: scale(1.3);
  z-index: 10;
}

.map-emotion-pin svg {
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.2));
}

/* Pulse ring animation - fixed size for perfect circle */
.pin-pulse-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: inherit;
  animation: pinRingPulse 2s ease-out infinite;
  pointer-events: none;
}

@keyframes pinRingPulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}

/* Pin positions on map - approximate geographic locations */
.pin-pos-1 { top: 35%; left: 18%; animation-delay: 0s; }      /* North America */
.pin-pos-2 { top: 28%; left: 48%; animation-delay: 0.3s; }    /* Europe */
.pin-pos-3 { top: 45%; left: 55%; animation-delay: 0.6s; }    /* Middle East */
.pin-pos-4 { top: 65%; left: 25%; animation-delay: 0.9s; }    /* South America */
.pin-pos-5 { top: 38%; left: 78%; animation-delay: 1.2s; }    /* Asia - Japan */
.pin-pos-6 { top: 50%; left: 70%; animation-delay: 1.5s; }    /* Southeast Asia */
.pin-pos-7 { top: 70%; left: 82%; animation-delay: 1.8s; }    /* Australia */

.pin-pos-1 .pin-pulse-ring { background: #FFE564; }
.pin-pos-2 .pin-pulse-ring { background: #FF66A8; }
.pin-pos-3 .pin-pulse-ring { background: #9BE7C4; }
.pin-pos-4 .pin-pulse-ring { background: #64B5F6; }
.pin-pos-5 .pin-pulse-ring { background: #CFA8FF; }
.pin-pos-6 .pin-pulse-ring { background: #FF7A3D; }
.pin-pos-7 .pin-pulse-ring { background: #FFCD72; }

/* Floating bubbles on map */
.map-bubble {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: white;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  animation: bubbleFloat 3s ease-in-out infinite;
}

.bubble-1 {
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}

.bubble-2 {
  top: 30%;
  right: 15%;
  animation-delay: 1s;
}

.bubble-3 {
  bottom: 20%;
  left: 25%;
  animation-delay: 2s;
}

.bubble-emotion {
  font-size: 1.25rem;
}

.bubble-location {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
}

@keyframes bubbleFloat {
  0%, 100% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(-8px);
    opacity: 0.9;
  }
}

.map-text .section-title {
  text-align: left;
  margin-bottom: var(--spacing-md);
}

.map-text .section-description {
  text-align: left;
  margin: 0 0 var(--spacing-xl) 0;
  max-width: none;
}

.map-stats {
  display: flex;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-lg);
}

.map-stat {
  text-align: center;
}

.map-stat-number {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.map-stat-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.map-privacy-note {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 500;
  padding: var(--spacing-md);
  background: rgba(75, 65, 43, 0.05);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--primary);
}

/* ============================================
   Business Section
   ============================================ */
.business-section {
  padding: var(--spacing-3xl) 0;
  background: linear-gradient(180deg, #f0f4f8 0%, #e8ecf0 100%);
  overflow: hidden;
}

.business-header {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
}

.business-badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius-full);
  margin-bottom: var(--spacing-md);
}

.business-section .section-title {
  color: var(--text-primary);
}

.business-section .section-description {
  color: var(--text-secondary);
}

.business-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--spacing-2xl);
  align-items: center;
  margin-bottom: var(--spacing-2xl);
}

.business-subtitle {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--spacing-lg);
}

.business-steps {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.business-step {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-md);
}

.business-step-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.business-step-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.business-step-content p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
}

/* Business Map Preview */
.business-visual {
  position: relative;
}

.business-map-preview {
  position: relative;
  background: white;
  border-radius: var(--radius-xl);
  padding: var(--spacing-lg);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.business-map-img {
  width: 100%;
  height: auto;
  opacity: 0.15;
}

.business-pins {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.business-pin {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: var(--transition-base);
}

.business-pin:hover {
  transform: scale(1.1);
  z-index: 10;
}

.business-pin-icon {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}

.business-pin-emotions {
  display: flex;
  gap: 0.25rem;
  margin-top: 0.5rem;
  background: rgba(0, 0, 0, 0.6);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-full);
}

.pin-emotion {
  font-size: 0.875rem;
}

.business-pin-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(75, 65, 43, 0.2);
  animation: businessPulse 2s ease-out infinite;
  z-index: 1;
}

@keyframes businessPulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}

.business-pin-1 { top: 30%; left: 20%; }
.business-pin-2 { top: 50%; left: 55%; }
.business-pin-3 { top: 25%; right: 20%; }

.business-pin-1 .business-pin-pulse { animation-delay: 0s; }
.business-pin-2 .business-pin-pulse { animation-delay: 0.7s; }
.business-pin-3 .business-pin-pulse { animation-delay: 1.4s; }

/* Business Hashtags */
.business-hashtags {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.business-hashtag {
  position: absolute;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  animation: hashtagFloat 4s ease-in-out infinite;
}

.bh-1 { bottom: 20%; left: 10%; animation-delay: 0s; }
.bh-2 { top: 15%; left: 40%; animation-delay: 1s; }
.bh-3 { bottom: 30%; right: 10%; animation-delay: 2s; }

/* Use Cases Grid */
.business-use-cases {
  margin-bottom: var(--spacing-2xl);
}

.business-use-cases .business-subtitle {
  text-align: center;
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
}

.use-case {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  text-align: center;
  transition: var(--transition-base);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.use-case:hover {
  background: white;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.1);
}

.use-case-icon {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-sm);
}

.use-case h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.use-case p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
}

/* Business CTA */
.business-cta {
  text-align: center;
  padding-top: var(--spacing-lg);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.business-cta-text {
  font-size: 1.125rem;
  color: var(--text-primary);
  margin-bottom: var(--spacing-md);
}

.business-cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  color: white;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  transition: var(--transition-base);
  box-shadow: 0 4px 20px rgba(75, 65, 43, 0.25);
}

.business-cta-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(75, 65, 43, 0.35);
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
  padding: var(--spacing-3xl) 0;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 50%);
  animation: ctaGlow 15s linear infinite;
}

@keyframes ctaGlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-text {
  margin-bottom: var(--spacing-xl);
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: var(--spacing-md);
  line-height: 1.2;
}

.cta-gradient-text {
  background: linear-gradient(135deg, #FFE564, #FF66A8, #9BE7C4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--spacing-lg);
}

.cta-store-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.75rem;
  background: white;
  color: var(--text-primary);
  border-radius: var(--radius-full);
  transition: var(--transition-base);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}

.cta-store-button:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.cta-store-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.cta-store-icon svg {
  width: 100%;
  height: 100%;
}

.cta-store-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.cta-store-label {
  font-size: 0.625rem;
  color: var(--text-secondary);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cta-store-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.cta-note {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  font-weight: 500;
}

/* ============================================
   Site Footer
   ============================================ */
.site-footer {
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  padding: var(--spacing-2xl) 0 var(--spacing-lg);
  color: white;
}

.footer-main {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-sm);
}

.footer-logo {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-brand-name {
  font-family: 'Pacifico', cursive;
  font-size: 1.75rem;
  color: white;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  margin: 0;
}

.footer-links-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
  flex-wrap: wrap;
}

.footer-link {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  font-weight: 500;
  transition: var(--transition-fast);
}

.footer-link:hover {
  color: white;
  text-decoration: underline;
}

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

.footer-bottom-row {
  text-align: center;
  padding-top: var(--spacing-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

/* ============================================
   Responsive - New Sections
   ============================================ */
@media (max-width: 1024px) {
  .emotions-content {
    gap: var(--spacing-xl);
  }
  
  .emotions-cloud {
    height: 400px;
  }
  
  .emotions-visual {
    min-height: 400px;
  }
  
  .emotion-bubble svg {
    transform: scale(0.85);
  }
  
  .hashtags-content {
    gap: var(--spacing-xl);
  }
  
  .map-content {
    gap: var(--spacing-xl);
  }
  
  .map-emotion-pin svg {
    transform: scale(0.85);
  }
  
  .tracking-content {
    gap: var(--spacing-xl);
  }
  
  .tracking-phones {
    height: 480px;
  }
  
  .tracking-phone-1 .tracking-phone-frame,
  .tracking-phone-3 .tracking-phone-frame {
    width: 170px;
    height: 360px;
  }
  
  .tracking-phone-2 .tracking-phone-frame {
    width: 190px;
    height: 400px;
  }
  
  .tracking-phone-1 {
    transform: translateX(-120px) rotate(-8deg);
  }
  
  .tracking-phone-3 {
    transform: translateX(120px) rotate(8deg);
  }
  
  .business-content {
    gap: var(--spacing-xl);
  }
  
  .use-cases-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .business-pin-icon {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }
  
  .business-pin-pulse {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 768px) {
  .emotions-section {
    padding: var(--spacing-2xl) 0;
  }
  
  .emotions-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }
  
  .emotions-text .section-title,
  .emotions-text .section-description {
    text-align: center;
  }
  
  .emotions-visual {
    min-height: 350px;
  }
  
  .emotions-cloud {
    height: 350px;
  }
  
  .emotion-bubble svg {
    transform: scale(0.75);
  }
  
  .emotion-bubble-label {
    font-size: 0.625rem;
    padding: 0.2rem 0.4rem;
  }
  
  .hashtags-section {
    padding: var(--spacing-2xl) 0;
  }
  
  .hashtags-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }
  
  .hashtags-text .section-title,
  .hashtags-text .section-description {
    text-align: center;
  }
  
  .hashtags-visual {
    min-height: 300px;
  }
  
  .hashtags-cloud {
    height: 300px;
  }
  
  .map-section {
    padding: var(--spacing-2xl) 0;
  }
  
  .map-section-fullwidth {
    padding: var(--spacing-lg) 0;
  }
  
  .map-fullwidth-container {
    padding: 0 var(--spacing-md);
  }
  
  .map-container-large {
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
  }
  
  .map-bubble-large {
    padding: 0.35rem 0.75rem;
  }
  
  .map-bubble-large .bubble-emotion {
    font-size: 1rem;
  }
  
  .map-bubble-large .bubble-location {
    font-size: 0.65rem;
  }
  
  .map-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }
  
  .map-visual {
    order: 1;
  }
  
  .map-text {
    order: 2;
  }
  
  .map-text .section-title,
  .map-text .section-description {
    text-align: center;
  }
  
  .map-stats {
    justify-content: center;
  }
  
  .map-privacy-note {
    text-align: center;
  }
  
  .map-emotion-pin svg {
    transform: scale(0.7);
  }
  
  .tracking-section {
    padding: var(--spacing-2xl) 0;
  }
  
  .tracking-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }
  
  .tracking-text .section-title,
  .tracking-text .section-description {
    text-align: center;
  }
  
  .tracking-features {
    grid-template-columns: 1fr;
  }
  
  .tracking-phones {
    height: 420px;
  }
  
  .tracking-phone-1 .tracking-phone-frame,
  .tracking-phone-3 .tracking-phone-frame {
    width: 150px;
    height: 320px;
  }
  
  .tracking-phone-2 .tracking-phone-frame {
    width: 170px;
    height: 360px;
  }
  
  .tracking-phone-1 {
    transform: translateX(-100px) rotate(-10deg);
  }
  
  .tracking-phone-3 {
    transform: translateX(100px) rotate(10deg);
  }
  
  .business-section {
    padding: var(--spacing-2xl) 0;
  }
  
  .business-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }
  
  .business-how-it-works {
    order: 2;
  }
  
  .business-visual {
    order: 1;
  }
  
  .use-cases-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
  }
  
  .use-case-icon {
    font-size: 2rem;
  }
  
  .use-case h4 {
    font-size: 0.9rem;
  }
  
  .use-case p {
    font-size: 0.75rem;
  }
  
  .business-pin-icon {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
  
  .business-pin-pulse {
    width: 35px;
    height: 35px;
  }
  
  .business-pin-emotions {
    display: none;
  }
  
  .business-hashtag {
    font-size: 0.625rem;
    padding: 0.375rem 0.75rem;
  }
  
  .cta-section {
    padding: var(--spacing-2xl) 0;
  }
  
  .cta-title {
    font-size: 2rem;
  }
  
  .cta-description {
    font-size: 1rem;
  }
  
  .footer-links-row {
    flex-direction: column;
    gap: var(--spacing-sm);
  }
  
  .footer-separator {
    display: none;
  }
}

@media (max-width: 480px) {
  /* Section Headers */
  .section-header {
    margin-bottom: var(--spacing-xl);
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .section-description {
    font-size: 0.875rem;
  }
  
  /* Emotions Section */
  .emotions-visual {
    min-height: 300px;
  }
  
  .emotions-cloud {
    height: 300px;
  }
  
  .emotion-bubble svg {
    transform: scale(0.6);
  }
  
  .emotion-bubble-label {
    font-size: 0.5rem;
  }
  
  .emotion-more {
    width: 50px;
    height: 50px;
  }
  
  .emotion-more-text {
    font-size: 1rem;
  }
  
  .emotions-text .section-title {
    font-size: 1.35rem;
  }
  
  .emotions-text .section-description {
    font-size: 0.8rem;
  }
  
  /* Emotions Feature Cards */
  .emotions-features {
    gap: 0.5rem;
  }
  
  .emotion-feature {
    padding: 0.75rem;
    gap: 0.5rem;
  }
  
  .emotion-feature-icon {
    font-size: 1.25rem;
  }
  
  .emotion-feature-text h4 {
    font-size: 0.8rem;
  }
  
  .emotion-feature-text p {
    font-size: 0.65rem;
  }
  
  /* Hashtags Section */
  .hashtag {
    font-size: 0.625rem;
    padding: 0.25rem 0.5rem;
  }
  
  .hashtag-lg {
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
  }
  
  .hashtags-text .section-title {
    font-size: 1.35rem;
  }
  
  .hashtags-text .section-description {
    font-size: 0.8rem;
  }
  
  /* Hashtag Feature Cards */
  .hashtags-features {
    gap: 0.5rem;
  }
  
  .hashtag-feature {
    padding: 0.75rem;
    gap: 0.5rem;
  }
  
  .hashtag-feature-icon {
    font-size: 1.25rem;
  }
  
  .hashtag-feature-text h4 {
    font-size: 0.8rem;
  }
  
  .hashtag-feature-text p {
    font-size: 0.65rem;
  }
  
  /* Map Section - Full Width */
  .map-section-fullwidth {
    padding: var(--spacing-md) 0;
  }
  
  .map-header-centered .section-title {
    font-size: 1.35rem;
  }
  
  .map-header-centered .section-description {
    font-size: 0.8rem;
  }
  
  .map-fullwidth-container {
    padding: 0 var(--spacing-sm);
  }
  
  .map-container-large {
    padding: var(--spacing-sm);
    border-radius: var(--radius-md);
  }
  
  .map-emotion-pin svg {
    transform: scale(0.5);
  }
  
  .map-bubble-large {
    padding: 0.25rem 0.5rem;
    display: none;
  }
  
  .bubble-large-1,
  .bubble-large-2 {
    display: flex;
  }
  
  .map-bubble-large .bubble-emotion {
    font-size: 0.85rem;
  }
  
  .map-bubble-large .bubble-location {
    font-size: 0.55rem;
  }
  
  /* Old map styles */
  .map-stats {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-sm);
  }
  
  .map-stat {
    flex: 0 1 auto;
    min-width: 70px;
  }
  
  .map-stat-number {
    font-size: 1.1rem;
  }
  
  .map-stat-label {
    font-size: 0.6rem;
  }
  
  .map-bubble {
    padding: 0.375rem 0.75rem;
    display: none;
  }
  
  .map-bubble.bubble-1 {
    display: flex;
  }
  
  .bubble-emotion {
    font-size: 1rem;
  }
  
  .bubble-location {
    font-size: 0.625rem;
  }
  
  .map-text .section-title {
    font-size: 1.35rem;
  }
  
  .map-text .section-description {
    font-size: 0.8rem;
  }
  
  /* Tracking Section */
  .tracking-phones {
    height: 350px;
  }
  
  .tracking-phone-1 .tracking-phone-frame,
  .tracking-phone-3 .tracking-phone-frame {
    width: 120px;
    height: 260px;
    border-radius: 25px;
    padding: 6px;
  }
  
  .tracking-phone-2 .tracking-phone-frame {
    width: 140px;
    height: 300px;
    border-radius: 28px;
    padding: 6px;
  }
  
  .tracking-phone-1 {
    transform: translateX(-75px) rotate(-12deg);
  }
  
  .tracking-phone-3 {
    transform: translateX(75px) rotate(12deg);
  }
  
  .tracking-phone-screen {
    border-radius: 20px;
  }
  
  .tracking-feature-icon {
    font-size: 1.25rem;
  }
  
  .tracking-feature-text h4 {
    font-size: 0.85rem;
  }
  
  .tracking-feature-text p {
    font-size: 0.7rem;
  }
  
  .tracking-text .section-title {
    font-size: 1.35rem;
  }
  
  .tracking-text .section-description {
    font-size: 0.8rem;
  }
  
  .tracking-features {
    gap: 0.75rem;
  }
  
  .tracking-feature {
    padding: 0.75rem;
  }
  
  /* Business Section */
  .business-section .section-title {
    font-size: 1.35rem;
  }
  
  .business-section .section-description {
    font-size: 0.8rem;
  }
  
  .use-cases-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-sm);
  }
  
  .use-case {
    padding: var(--spacing-md);
  }
  
  .use-case-icon {
    font-size: 1.5rem;
  }
  
  .use-case h4 {
    font-size: 0.75rem;
  }
  
  .use-case p {
    font-size: 0.6rem;
  }
  
  .business-step-number {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }
  
  .business-step-content h4 {
    font-size: 0.9rem;
  }
  
  .business-step-content p {
    font-size: 0.75rem;
  }
  
  .business-cta-button {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
  }
  
  .business-cta-text {
    font-size: 0.875rem;
  }
  
  .business-hashtag {
    display: none;
  }
  
  .business-pin-icon {
    width: 30px;
    height: 30px;
    font-size: 0.875rem;
  }
  
  .business-pin-pulse {
    width: 30px;
    height: 30px;
  }
  
  .business-how-it-works {
    gap: 0.75rem;
  }
  
  .business-step {
    padding: 0.75rem;
  }
  
  /* CTA Section */
  .cta-title {
    font-size: 1.35rem;
  }
  
  .cta-description {
    font-size: 0.8rem;
  }
  
  .cta-store-button {
    padding: 0.6rem 1rem;
  }
  
  .cta-store-icon {
    width: 22px;
    height: 22px;
  }
  
  .cta-store-label {
    font-size: 0.5rem;
  }
  
  .cta-store-name {
    font-size: 0.85rem;
  }
  
  .cta-note {
    font-size: 0.7rem;
  }
  
  /* Footer */
  .footer-main {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .footer-brand {
    justify-content: center;
  }
  
  .footer-logo {
    height: 28px;
  }
  
  .footer-brand-name {
    font-size: 1rem;
  }
  
  .footer-tagline {
    font-size: 0.75rem;
    text-align: center;
  }
  
  .footer-links-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
  }
  
  .footer-link {
    font-size: 0.7rem;
  }
  
  .footer-separator {
    display: none;
  }
  
  .footer-copyright {
    font-size: 0.65rem;
  }
}

/* ============================================
   NEW Hero Moment Section
   ============================================ */
.hero-moment {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1510 50%, #2d2518 100%);
}

.hero-moment-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.hero-moment-map {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../assets/map.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.4;
}

.hero-moment-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 50% 50%, transparent 0%, rgba(10, 10, 10, 0.3) 100%),
    radial-gradient(ellipse at 30% 20%, rgba(137, 107, 46, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(151, 130, 86, 0.08) 0%, transparent 50%);
}

/* Centered Hero Layout */
.hero-moment-centered .hero-moment-content-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.hero-moment-centered .hero-moment-prelude {
  text-align: center;
}

.hero-moment-centered .hero-moment-title {
  text-align: center;
}

.hero-moment-centered .hero-moment-subtitle {
  text-align: center;
  max-width: 600px;
}

.hero-moment-centered .hero-moment-cta {
  margin: 0 auto;
}

.hero-moment-centered .hero-moment-note {
  text-align: center;
}

.hero-moment-prelude {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: var(--spacing-sm);
  letter-spacing: 0.05em;
  font-weight: 500;
}

.hero-moment-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: var(--spacing-lg);
  letter-spacing: -0.02em;
}

.hero-moment-title .gradient-text {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF8C00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-moment-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: var(--spacing-xl);
  max-width: 520px;
}

.hero-moment-cta {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 2.5rem;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF8C00 100%);
  color: #1a1a1a;
  font-weight: 700;
  font-size: 1.15rem;
  border-radius: 60px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 
    0 8px 32px rgba(255, 165, 0, 0.3),
    0 4px 16px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.hero-moment-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.hero-moment-cta:hover::before {
  left: 100%;
}

.hero-moment-cta:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 
    0 12px 40px rgba(255, 165, 0, 0.4),
    0 6px 20px rgba(0, 0, 0, 0.3);
}

.hero-moment-cta .cta-icon {
  font-size: 1.3rem;
  line-height: 1;
  display: flex;
  align-items: center;
}

.hero-moment-cta .cta-text {
  letter-spacing: 0.02em;
  line-height: 1;
  display: flex;
  align-items: center;
  margin: 0;
}

.hero-moment-cta .cta-arrow {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  line-height: 1;
  display: flex;
  align-items: center;
}

.hero-moment-cta:hover .cta-arrow {
  transform: translateX(4px);
}

.hero-moment-note {
  margin-top: var(--spacing-md);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

/* Hero Moment Visual - Emotion Ring */
.hero-moment-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.moment-emotion-ring {
  position: relative;
  width: 400px;
  height: 400px;
}

.emotion-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 50%;
  animation: orbitRotate 30s linear infinite;
}

.emotion-orbit-1 {
  width: 280px;
  height: 280px;
  animation-direction: normal;
}

.emotion-orbit-2 {
  width: 380px;
  height: 380px;
  animation-duration: 45s;
  animation-direction: reverse;
}

@keyframes orbitRotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.orbit-emotion {
  position: absolute;
  font-size: 2rem;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
  animation: emotionPulse 3s ease-in-out infinite;
}

.emotion-orbit-1 .oe-1 { top: -15px; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.emotion-orbit-1 .oe-2 { bottom: 20%; right: -15px; animation-delay: 1s; }
.emotion-orbit-1 .oe-3 { bottom: -15px; left: 30%; animation-delay: 2s; }

.emotion-orbit-2 .oe-4 { top: 10%; left: -10px; animation-delay: 0.5s; }
.emotion-orbit-2 .oe-5 { top: -10px; right: 30%; animation-delay: 1.5s; }
.emotion-orbit-2 .oe-6 { bottom: 10%; right: -10px; animation-delay: 2.5s; }
.emotion-orbit-2 .oe-7 { bottom: -10px; left: 20%; animation-delay: 3.5s; }

@keyframes emotionPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.15);
    opacity: 1;
  }
}

.emotion-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 165, 0, 0.1));
  border-radius: 50%;
  border: 2px solid rgba(255, 215, 0, 0.3);
}

.center-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(255, 215, 0, 0.1);
  animation: centerPulse 2s ease-in-out infinite;
}

@keyframes centerPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.3);
    opacity: 0;
  }
}

.center-icon {
  font-size: 3rem;
  z-index: 1;
  animation: iconGlow 3s ease-in-out infinite;
}

@keyframes iconGlow {
  0%, 100% {
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
  }
  50% {
    filter: drop-shadow(0 0 25px rgba(255, 215, 0, 0.8));
  }
}

/* Hero Moment Responsive */
@media (max-width: 1024px) {
  .hero-moment-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-moment-text {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-moment-subtitle {
    max-width: 100%;
  }
  
  .moment-emotion-ring {
    width: 320px;
    height: 320px;
    margin-top: var(--spacing-xl);
  }
  
  .emotion-orbit-1 {
    width: 220px;
    height: 220px;
  }
  
  .emotion-orbit-2 {
    width: 300px;
    height: 300px;
  }
}

@media (max-width: 768px) {
  .hero-moment {
    padding: 100px 0 60px;
  }
  
  .hero-moment-title {
    font-size: 2.5rem;
  }
  
  .hero-moment-subtitle {
    font-size: 1rem;
  }
  
  .hero-moment-cta {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
  
  .moment-emotion-ring {
    width: 280px;
    height: 280px;
  }
  
  .emotion-orbit-1 {
    width: 180px;
    height: 180px;
  }
  
  .emotion-orbit-2 {
    width: 260px;
    height: 260px;
  }
  
  .emotion-center {
    width: 90px;
    height: 90px;
  }
  
  .center-icon {
    font-size: 2.5rem;
  }
  
  .orbit-emotion {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-moment-title {
    font-size: 2rem;
  }
  
  .hero-moment-prelude {
    font-size: 0.875rem;
  }
  
  .hero-moment-cta {
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
    gap: 0.75rem;
  }
  
  .moment-emotion-ring {
    width: 240px;
    height: 240px;
  }
  
  .emotion-orbit-1 {
    width: 150px;
    height: 150px;
  }
  
  .emotion-orbit-2 {
    width: 220px;
    height: 220px;
  }
  
  .orbit-emotion {
    font-size: 1.25rem;
  }
}

/* ============================================
   NEW Playful Hero Section
   ============================================ */
.hero-playful {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
  background: linear-gradient(135deg, #FFFBF5 0%, #FFF8ED 50%, #FFFBF5 100%);
  position: relative;
  overflow: hidden;
}

.hero-playful .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Floating Bubbles Background */
.hero-bubbles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.bubble {
  position: absolute;
  font-size: 2rem;
  opacity: 0.6;
  animation: bubbleFloat 6s ease-in-out infinite;
}

.bubble-1 { top: 15%; left: 5%; animation-delay: 0s; font-size: 2.5rem; }
.bubble-2 { top: 25%; right: 8%; animation-delay: 1s; font-size: 1.8rem; }
.bubble-3 { top: 60%; left: 3%; animation-delay: 2s; font-size: 2rem; }
.bubble-4 { bottom: 20%; right: 5%; animation-delay: 0.5s; font-size: 2.2rem; }
.bubble-5 { top: 40%; left: 8%; animation-delay: 1.5s; font-size: 1.6rem; }
.bubble-6 { bottom: 35%; left: 12%; animation-delay: 2.5s; font-size: 1.8rem; }
.bubble-7 { top: 10%; right: 15%; animation-delay: 3s; font-size: 2rem; }
.bubble-8 { bottom: 15%; right: 12%; animation-delay: 0.8s; font-size: 1.5rem; }

@keyframes bubbleFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
  25% {
    transform: translateY(-15px) rotate(5deg) scale(1.05);
  }
  50% {
    transform: translateY(-25px) rotate(-3deg) scale(1.1);
  }
  75% {
    transform: translateY(-10px) rotate(3deg) scale(1.05);
  }
}

/* Hero Content */
.hero-playful-content {
  max-width: 560px;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(75, 65, 43, 0.08);
  border-radius: 50px;
  margin-bottom: 24px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #22C55E;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}

/* Title */
.hero-playful-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.highlight-word {
  position: relative;
  display: inline-block;
  color: var(--primary);
}

.highlight-word::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 12px;
  background: linear-gradient(135deg, #FFD93D 0%, #FF6B9D 100%);
  opacity: 0.3;
  border-radius: 4px;
  z-index: -1;
  animation: highlightPulse 3s ease-in-out infinite;
}

@keyframes highlightPulse {
  0%, 100% { opacity: 0.3; transform: scaleX(1); }
  50% { opacity: 0.5; transform: scaleX(1.02); }
}

/* Subtitle */
.hero-playful-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 32px;
}

/* CTA Group */
.hero-cta-group {
  margin-bottom: 40px;
}

.hero-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  color: white;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 60px;
  box-shadow: 0 8px 32px rgba(75, 65, 43, 0.25), 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.hero-cta-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.hero-cta-primary:hover::before {
  left: 100%;
}

.hero-cta-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 40px rgba(75, 65, 43, 0.35), 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta-icon {
  font-size: 1.25rem;
  animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
  0%, 100% { transform: scale(1) rotate(0deg); }
  25% { transform: scale(1.1) rotate(-5deg); }
  50% { transform: scale(1) rotate(5deg); }
  75% { transform: scale(1.1) rotate(-3deg); }
}

.cta-arrow {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.cta-arrow svg {
  width: 20px;
  height: 20px;
}

.hero-cta-primary:hover .cta-arrow {
  transform: translateX(4px);
}

.hero-cta-note {
  margin-top: 12px;
  font-size: 0.875rem;
  color: var(--text-light);
}

/* Emotion Preview */
.hero-emotion-preview {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.preview-label {
  font-size: 0.875rem;
  color: var(--text-light);
  font-weight: 500;
}

.preview-emotions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.preview-emotion {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-primary);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.2s ease;
  cursor: pointer;
}

.preview-emotion:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-color: var(--emotion-color, #ddd);
}

/* Large Map Preview - No Card */
.hero-map-large {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 500px;
  border-radius: 32px;
  overflow: hidden;
}

.hero-map-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../assets/map.png') center/cover no-repeat;
  filter: saturate(1.1) brightness(1.02);
}

.hero-map-signals {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

/* Emotion Signal Pins with SVG */
.hero-signal {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.hero-signal svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
  position: relative;
  z-index: 2;
}

.hero-signal:hover {
  transform: scale(1.25);
  z-index: 10;
}

/* Signal Pulse Animation */
.signal-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--signal-color);
  border-radius: 50%;
  opacity: 0.4;
  animation: signalPulse 2.5s ease-out infinite;
}

.signal-pulse-2 {
  animation-delay: 1.25s;
}

@keyframes signalPulse {
  0% { 
    transform: scale(1); 
    opacity: 0.4; 
  }
  100% { 
    transform: scale(2.5); 
    opacity: 0; 
  }
}

/* Signal Positions - Scattered across map */
.hero-signal-1 { 
  top: 15%; 
  left: 15%; 
  width: 56px; 
  height: 56px; 
}

.hero-signal-2 { 
  top: 25%; 
  right: 20%; 
  width: 52px; 
  height: 52px; 
}

.hero-signal-3 { 
  top: 50%; 
  left: 25%; 
  width: 48px; 
  height: 48px; 
}

.hero-signal-4 { 
  top: 35%; 
  left: 55%; 
  width: 44px; 
  height: 44px; 
}

.hero-signal-5 { 
  bottom: 30%; 
  right: 15%; 
  width: 50px; 
  height: 50px; 
}

.hero-signal-6 { 
  bottom: 20%; 
  left: 40%; 
  width: 46px; 
  height: 46px; 
}

.hero-signal-7 { 
  top: 65%; 
  right: 35%; 
  width: 42px; 
  height: 42px; 
}

/* Staggered pulse animations */
.hero-signal-1 .signal-pulse { animation-delay: 0s; }
.hero-signal-1 .signal-pulse-2 { animation-delay: 1.25s; }
.hero-signal-2 .signal-pulse { animation-delay: 0.3s; }
.hero-signal-2 .signal-pulse-2 { animation-delay: 1.55s; }
.hero-signal-3 .signal-pulse { animation-delay: 0.6s; }
.hero-signal-3 .signal-pulse-2 { animation-delay: 1.85s; }
.hero-signal-4 .signal-pulse { animation-delay: 0.9s; }
.hero-signal-4 .signal-pulse-2 { animation-delay: 2.15s; }
.hero-signal-5 .signal-pulse { animation-delay: 1.2s; }
.hero-signal-5 .signal-pulse-2 { animation-delay: 2.45s; }
.hero-signal-6 .signal-pulse { animation-delay: 0.4s; }
.hero-signal-6 .signal-pulse-2 { animation-delay: 1.65s; }
.hero-signal-7 .signal-pulse { animation-delay: 0.8s; }
.hero-signal-7 .signal-pulse-2 { animation-delay: 2.05s; }

/* Live indicator */
.hero-map-live {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.live-dot {
  width: 8px;
  height: 8px;
  background: #22C55E;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

/* Hero Playful Responsive */
@media (max-width: 1024px) {
  .hero-playful .container {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  
  .hero-playful-content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-playful-title {
    font-size: 2.75rem;
  }
  
  .preview-emotions {
    justify-content: center;
  }
  
  .hero-map-large {
    min-height: 420px;
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .hero-playful {
    min-height: auto;
    padding: 100px 0 48px;
  }
  
  .hero-playful-title {
    font-size: 2.25rem;
  }
  
  .hero-playful-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-cta-primary {
    padding: 16px 28px;
    font-size: 1rem;
  }
  
  .hero-map-large {
    min-height: 360px;
    max-width: 420px;
    border-radius: 24px;
  }
  
  .hero-signal-1 { width: 48px; height: 48px; }
  .hero-signal-2 { width: 44px; height: 44px; }
  .hero-signal-3 { width: 40px; height: 40px; }
  .hero-signal-4 { width: 38px; height: 38px; }
  .hero-signal-5 { width: 42px; height: 42px; }
  .hero-signal-6 { width: 38px; height: 38px; }
  .hero-signal-7 { width: 36px; height: 36px; }
  
  .bubble {
    font-size: 1.5rem;
  }
  
  .bubble-1, .bubble-4 { font-size: 1.8rem; }
}

@media (max-width: 480px) {
  .hero-playful {
    padding: 90px 0 40px;
  }
  
  .hero-playful-title {
    font-size: 1.875rem;
  }
  
  .hero-playful-subtitle {
    font-size: 1rem;
    margin-bottom: 24px;
  }
  
  .hero-cta-primary {
    padding: 14px 24px;
    font-size: 0.95rem;
    width: 100%;
    justify-content: center;
  }
  
  .hero-emotion-preview {
    width: 100%;
  }
  
  .preview-emotions {
    width: 100%;
  }
  
  .preview-emotion {
    font-size: 0.8rem;
    padding: 6px 12px;
  }
  
  .hero-map-large {
    min-height: 300px;
    max-width: 100%;
    border-radius: 20px;
  }
  
  .hero-signal-1 { width: 40px; height: 40px; }
  .hero-signal-2 { width: 36px; height: 36px; }
  .hero-signal-3 { width: 34px; height: 34px; }
  .hero-signal-4 { width: 32px; height: 32px; }
  .hero-signal-5 { width: 36px; height: 36px; }
  .hero-signal-6 { width: 32px; height: 32px; }
  .hero-signal-7 { width: 30px; height: 30px; }
  
  .hero-map-live {
    padding: 8px 16px;
    font-size: 0.75rem;
    bottom: 12px;
  }
  
  .bubble {
    font-size: 1.2rem;
  }
  
  .bubble-1, .bubble-4 { font-size: 1.5rem; }
}

/* ============================================
   Download Section (formerly Hero)
   ============================================ */
.download-section {
  padding: var(--spacing-3xl) 0;
  padding-bottom: calc(var(--spacing-3xl) + 4rem);
  margin-bottom: var(--spacing-3xl);
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
  overflow: visible;
  position: relative;
}



.download-section-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--spacing-3xl);
  align-items: center;
}

.download-text-content {
  max-width: 600px;
}

.download-badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  margin-bottom: var(--spacing-md);
}

.download-title {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.download-tagline {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: var(--spacing-xl);
  line-height: 1.6;
}

.download-buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
  align-items: center;
  justify-content: flex-start;
}

.download-note {
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
}

.download-phones {
  position: relative;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Download Section Responsive */
@media (max-width: 1024px) {
  .download-section-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .download-text-content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .download-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .download-phones {
    height: 400px;
    margin-top: var(--spacing-xl);
  }
}

@media (max-width: 768px) {
  .download-section {
    padding: var(--spacing-2xl) 0;
  }
  
  .download-title {
    font-size: 2rem;
  }
  
  .download-tagline {
    font-size: 1rem;
  }
  
  .download-phones {
    height: 350px;
  }
}

@media (max-width: 480px) {
  .download-title {
    font-size: 1.75rem;
  }
  
  .download-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .download-buttons .store-button-hero {
    width: 100%;
    justify-content: center;
  }
  
  .download-phones {
    height: 300px;
  }
}

/* ============================================
   Page Hero & Content Styles
   ============================================ */
.page-hero {
  padding: 8rem 0 3rem;
  background: linear-gradient(135deg, #f8f7f4 0%, #fff 100%);
  text-align: center;
}

.page-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.page-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto;
}

.page-content {
  padding: 3rem 0 4rem;
}

/* Coming Soon Card */
.coming-soon-card {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
  padding: 3rem 2rem;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.coming-soon-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.coming-soon-card h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.coming-soon-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.coming-soon-cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition-base);
}

.coming-soon-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(75, 65, 43, 0.3);
}

/* About Page Styles */
.about-content {
  max-width: 640px;
  margin: 0 auto;
}

.about-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.about-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.about-card h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.about-card p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.about-card p:last-child {
  margin-bottom: 0;
}

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

.about-list li {
  color: var(--text-secondary);
  line-height: 1.7;
  padding: 0.5rem 0;
  border-bottom: 1px solid #f0f0f0;
}

.about-list li:last-child {
  border-bottom: none;
}

.about-cta {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, #f8f7f4 0%, #fff 100%);
  border-radius: var(--radius-lg);
  margin-top: 2rem;
}

.about-cta p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.about-cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  color: white;
  padding: 0.75rem 2rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  transition: var(--transition-base);
}

.about-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(75, 65, 43, 0.3);
}

/* Contact Page Styles */
.contact-content {
  max-width: 640px;
  margin: 0 auto;
}

.contact-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.contact-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.contact-card h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.contact-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.contact-email {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  padding: 0.5rem 1rem;
  background: rgba(75, 65, 43, 0.05);
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.contact-email:hover {
  background: rgba(75, 65, 43, 0.1);
}

.contact-link {
  color: var(--primary);
  font-weight: 600;
  transition: var(--transition-fast);
}

.contact-link:hover {
  text-decoration: underline;
}

.contact-social {
  text-align: center;
  padding: 2rem;
  background: #f8f7f4;
  border-radius: var(--radius-lg);
  margin-top: 1rem;
}

.contact-social p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social-link {
  color: var(--primary);
  font-weight: 500;
  padding: 0.5rem 1rem;
  background: #fff;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

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

/* Mobile Responsive for Pages */
@media (max-width: 768px) {
  .page-hero {
    padding: 6rem 0 2rem;
  }
  
  .page-title {
    font-size: 2rem;
  }
  
  .page-subtitle {
    font-size: 1rem;
  }
  
  .page-content {
    padding: 2rem 0 3rem;
  }
  
  .about-card,
  .contact-card {
    padding: 1.5rem;
  }
  
  .coming-soon-card {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .page-hero {
    padding: 5rem 0 1.5rem;
  }
  
  .page-title {
    font-size: 1.75rem;
  }
  
  .social-links {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* ============================================
   Pulse Blog Posts Styles
   ============================================ */
.pulse-posts {
  display: grid;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.pulse-post-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
  text-decoration: none;
}

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

.pulse-post-image {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.pulse-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-base);
}

.pulse-post-card:hover .pulse-post-image img {
  transform: scale(1.05);
}

.pulse-post-content {
  padding: 1.5rem;
}

.pulse-post-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.pulse-post-category {
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  color: white;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
}

.pulse-post-date {
  color: var(--text-light);
  font-size: 0.8rem;
}

.pulse-post-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.pulse-post-excerpt {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.pulse-post-link {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.875rem;
  transition: var(--transition-fast);
}

.pulse-post-card:hover .pulse-post-link {
  color: var(--primary-dark);
}

@media (min-width: 600px) {
  .pulse-post-card {
    flex-direction: row;
  }
  
  .pulse-post-image {
    width: 280px;
    flex-shrink: 0;
    aspect-ratio: auto;
  }
  
  .pulse-post-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .pulse-post-content {
    padding: 1.25rem;
  }
  
  .pulse-post-title {
    font-size: 1.1rem;
  }
  
  .pulse-post-excerpt {
    font-size: 0.85rem;
  }
}
