/* ================================
   KEEPOP - K-pop Collection App
   Ultra Colorful & Fun Stylesheet
   ================================ */

/* ========== RESET & BASE ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Vibrant Color Palette */
  --pink-bright: #FF0080;
  --pink-hot: #E91E8C;
  --pink-light: #FF4DA6;
  --pink-soft: #FFB3D9;
  --pink-pale: #FFE5F1;
  
  --purple-deep: #7B1FA2;
  --purple-main: #9C27B0;
  --purple-bright: #BA68C8;
  --purple-light: #E1BEE7;
  --purple-pale: #F3E5F5;
  
  --blue-bright: #2196F3;
  --blue-light: #64B5F6;
  
  --green-bright: #4CAF50;
  --green-light: #81C784;
  
  --orange-bright: #FF9800;
  --orange-light: #FFB74D;
  
  --red-bright: #F44336;
  --red-light: #EF5350;
  
  /* Gradients */
  --gradient-pink-purple: linear-gradient(135deg, #FF0080 0%, #E91E8C 50%, #9C27B0 100%);
  --gradient-purple-blue: linear-gradient(135deg, #9C27B0 0%, #7B1FA2 50%, #2196F3 100%);
  --gradient-rainbow: linear-gradient(135deg, #FF0080 0%, #FF4DA6 20%, #E91E8C 40%, #9C27B0 60%, #7B1FA2 80%, #2196F3 100%);
  --gradient-soft: linear-gradient(135deg, #FFE5F1 0%, #F3E5F5 100%);
  
  /* Neutral Colors */
  --white: #FFFFFF;
  --black: #000000;
  --gray-50: #FAFAFA;
  --gray-100: #F5F5F5;
  --gray-200: #EEEEEE;
  --gray-300: #E0E0E0;
  --gray-700: #616161;
  --gray-900: #212121;
  
  /* Shadows & Glows */
  --shadow-sm: 0 2px 8px rgba(255, 0, 128, 0.15);
  --shadow-md: 0 4px 16px rgba(255, 0, 128, 0.2);
  --shadow-lg: 0 8px 24px rgba(255, 0, 128, 0.25);
  --shadow-xl: 0 12px 32px rgba(255, 0, 128, 0.3);
  --glow-pink: 0 0 20px rgba(255, 0, 128, 0.5);
  --glow-purple: 0 0 20px rgba(156, 39, 176, 0.5);
  
  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-full: 9999px;
  
  /* Font */
  --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

/* ========== ANIMATED BACKGROUND ========== */
.bg-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  background: linear-gradient(180deg, #FAFAFA 0%, #FFF5F8 50%, #F5F0FF 100%);
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  animation: float 20s ease-in-out infinite;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--pink-bright) 0%, transparent 70%);
  top: -25%;
  right: -25%;
  animation-delay: 0s;
}

.orb-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--purple-main) 0%, transparent 70%);
  bottom: -30%;
  left: -30%;
  animation-delay: 7s;
}

.orb-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--blue-bright) 0%, transparent 70%);
  top: 40%;
  left: 40%;
  animation-delay: 14s;
  display: none; /* Hide on smaller screens */
}

.sparkle-container {
  position: absolute;
  width: 100%;
  height: 100%;
}

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

/* ========== NAVIGATION ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--pink-pale);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-4);
  padding-bottom: var(--space-4);
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  padding-right: var(--space-10);
}

.logo-icon-svg {
  height: 45px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(255, 0, 128, 0.2));
}

.logo-text-svg {
  height: 50px;
  width: auto;
  transform: scale(1.6);
  transform-origin: left center;
  margin-left: var(--space-4);
}

.logo-img {
  height: 45px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(255, 0, 128, 0.2));
}

.logo-icon {
  width: 50px;
  height: 50px;
  filter: drop-shadow(0 2px 8px rgba(255, 0, 128, 0.3));
}

.brand-name {
  font-size: 1.75rem;
  font-weight: 900;
  background: var(--gradient-pink-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -1px;
}

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

.nav-link {
  text-decoration: none;
  color: var(--gray-900);
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  padding: var(--space-2) 0;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: var(--gradient-pink-purple);
  transition: all 0.3s ease;
  transform: translateX(-50%);
  border-radius: var(--radius-full);
}

.nav-link:hover::before,
.nav-link.active::before {
  width: 100%;
}

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

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-2);
}

.menu-toggle span {
  width: 28px;
  height: 3px;
  background: var(--gradient-pink-purple);
  border-radius: var(--radius-full);
  transition: all 0.3s ease;
}

/* ========== HERO SECTION ========== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: var(--space-20);
  position: relative;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.hero-text {
  animation: fadeInUp 0.8s ease;
}

/* Hero Download Section Styles */
.hero-download-section {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.download-logo-big {
  margin-bottom: var(--space-6);
}

.hero-logo-animated {
  width: 180px;
  height: auto;
  animation: bounce 2s ease-in-out infinite;
  filter: drop-shadow(0 8px 16px rgba(255, 0, 128, 0.3));
}

.download-emoji-big {
  font-size: 5rem;
  margin-bottom: var(--space-6);
  animation: bounce 2s ease-in-out infinite;
}

.hero-title-download {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: var(--space-6);
  letter-spacing: -1px;
  color: var(--gray-900);
}

.hero-description-download {
  font-size: 1.3rem;
  color: var(--gray-700);
  margin-bottom: var(--space-10);
  line-height: 1.7;
}

.store-buttons-hero {
  display: flex;
  flex-direction: row;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
  justify-content: center;
  flex-wrap: wrap;
}

.coming-soon-hero {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-700);
  margin-top: var(--space-4);
}


.gradient-text {
  background: var(--gradient-rainbow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradient-shift 5s ease infinite;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--gray-700);
  margin-bottom: var(--space-8);
  line-height: 1.8;
  max-width: 550px;
}

.hero-features {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-bottom: var(--space-8);
}

.mini-feature {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--white);
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--gray-200);
  transition: all 0.3s ease;
}

.mini-feature:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--pink-light);
}

.mini-icon {
  font-size: 1.3rem;
}

.cta-buttons {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-bottom: var(--space-10);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-5) var(--space-8);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-pink-purple);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.btn-primary.btn-glow {
  box-shadow: var(--shadow-lg), var(--glow-pink);
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl), var(--glow-pink);
}

.btn-shine {
  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.5s ease;
}

.btn-primary:hover .btn-shine {
  left: 100%;
}

.btn-secondary {
  background: var(--white);
  color: var(--pink-hot);
  border: 3px solid var(--pink-hot);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--pink-pale);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.btn-icon {
  font-size: 1.3rem;
}



/* ========== PHONE SHOWCASE ========== */
.hero-visual {
  animation: fadeInRight 0.8s ease;
}

.phone-showcase {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-device {
  width: 340px;
  height: 680px;
  background: var(--gray-900);
  border-radius: 50px;
  padding: 14px;
  box-shadow: var(--shadow-xl);
  position: relative;
  transition: transform 0.5s ease;
}

.phone-device:hover {
  transform: scale(1.02);
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 32px;
  background: var(--gray-900);
  border-radius: 0 0 20px 20px;
  z-index: 2;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--gradient-pink-purple);
  border-radius: 38px;
  overflow: hidden;
  position: relative;
}

.app-interface-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}


.float-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* ========== SECTIONS ========== */
section {
  padding: var(--space-20) 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-16);
}

.section-label {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--pink-hot);
  background: var(--pink-pale);
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
}

.section-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: var(--space-6);
  letter-spacing: -2px;
}

.section-description {
  font-size: 1.2rem;
  color: var(--gray-700);
  line-height: 1.8;
}

/* ========== FEATURES ========== */
.features {
  background: var(--gray-50);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-8);
}

.feature-card {
  background: var(--white);
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 3px solid transparent;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
}

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

.feature-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 0, 128, 0.05) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.feature-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: var(--shadow-xl);
}

.feature-pink {
  border-color: var(--pink-light);
}

.feature-pink:hover {
  background: linear-gradient(180deg, #FFF 0%, #FFF5F8 100%);
  box-shadow: 0 12px 32px rgba(255, 0, 128, 0.3), var(--glow-pink);
}

.feature-purple {
  border-color: var(--purple-bright);
}

.feature-purple:hover {
  background: linear-gradient(180deg, #FFF 0%, #F5F0FF 100%);
  box-shadow: 0 12px 32px rgba(156, 39, 176, 0.3), var(--glow-purple);
}

.feature-blue {
  border-color: var(--blue-light);
}

.feature-blue:hover {
  background: linear-gradient(180deg, #FFF 0%, #E3F2FD 100%);
  box-shadow: 0 12px 32px rgba(33, 150, 243, 0.3);
}

.feature-green {
  border-color: var(--green-light);
}

.feature-green:hover {
  background: linear-gradient(180deg, #FFF 0%, #E8F5E9 100%);
  box-shadow: 0 12px 32px rgba(76, 175, 80, 0.3);
}

.feature-orange {
  border-color: var(--orange-light);
}

.feature-orange:hover {
  background: linear-gradient(180deg, #FFF 0%, #FFF3E0 100%);
  box-shadow: 0 12px 32px rgba(255, 152, 0, 0.3);
}

.feature-red {
  border-color: var(--red-light);
}

.feature-red:hover {
  background: linear-gradient(180deg, #FFF 0%, #FFEBEE 100%);
  box-shadow: 0 12px 32px rgba(244, 67, 54, 0.3);
}

.feature-icon-wrap {
  width: 100px;
  height: 100px;
  margin: 0 auto var(--space-6);
  background: var(--gradient-soft);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.4s ease;
}

.feature-card:hover .feature-icon-wrap {
  transform: scale(1.1) rotate(5deg);
}

.feature-icon {
  font-size: 3rem;
  animation: bounce-slow 3s ease-in-out infinite;
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: var(--space-4);
  color: var(--gray-900);
}

.feature-card p {
  color: var(--gray-700);
  line-height: 1.7;
  font-size: 1rem;
}

.feature-tag {
  display: inline-block;
  background: var(--gradient-pink-purple);
  color: var(--white);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: var(--space-4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ========== PRICING ========== */
.pricing {
  background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
  overflow-x: hidden;
  position: relative;
  padding-top: calc(var(--space-20) + var(--space-10)) !important;
}

.pricing-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-2xl);
  padding: var(--space-10);
  position: relative;
  overflow: hidden;
  border: 3px solid var(--gray-200);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

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

.free-card {
  border-color: var(--gray-300);
}

.free-card:hover {
  border-color: var(--gray-700);
}

.premium-card {
  background: linear-gradient(180deg, #FFFFFF 0%, #FFF5F8 100%);
  border: 3px solid var(--pink-hot);
  box-shadow: var(--shadow-lg);
  position: relative;
}

.premium-card:hover {
  box-shadow: var(--shadow-xl), var(--glow-pink);
  border-color: var(--pink-bright);
}

.popular-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-pink-purple);
  color: var(--white);
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  box-shadow: var(--shadow-md);
  z-index: 10;
  white-space: nowrap;
}

.popular-badge.best-value {
  background: linear-gradient(135deg, #FF6B00 0%, #FF0080 100%);
  animation: glow-pulse 2s ease-in-out infinite;
}

.price-comparison {
  text-align: center;
  margin-bottom: var(--space-2);
}

.price-old {
  font-size: 1.2rem;
  color: var(--gray-700);
  text-decoration: line-through;
  opacity: 0.6;
  font-weight: 600;
}

.savings-badge {
  background: linear-gradient(135deg, #4CAF50 0%, #2196F3 100%);
  color: var(--white);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-lg);
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: var(--space-3);
  display: inline-block;
}

.feature-item.highlighted {
  background: var(--pink-pale);
  padding: var(--space-3);
  margin: var(--space-2) calc(-1 * var(--space-3));
  border-radius: var(--radius-md);
  border-left: 4px solid var(--pink-hot);
}

.annual-btn {
  background: linear-gradient(135deg, #FF6B00 0%, #FF0080 50%, #9C27B0 100%);
}

.annual-price {
  border-color: #FF6B00;
}

.plan-header {
  text-align: center;
  margin-bottom: var(--space-8);
  position: relative;
  z-index: 1;
}

.plan-icon-big {
  font-size: 4rem;
  margin-bottom: var(--space-4);
  display: inline-block;
  animation: bounce-slow 3s ease-in-out infinite;
}

.gradient-icon {
  background: var(--gradient-pink-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 8px rgba(255, 0, 128, 0.3));
}

.plan-title {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: var(--space-2);
  color: var(--gray-900);
}

.gradient-title {
  background: var(--gradient-pink-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.plan-subtitle {
  font-size: 1rem;
  color: var(--gray-700);
  font-weight: 500;
}

.plan-price-box {
  background: var(--gray-50);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  margin-bottom: var(--space-8);
  text-align: center;
  position: relative;
  z-index: 1;
}

.premium-price {
  background: var(--gradient-soft);
  border: 2px solid var(--pink-light);
}

.price-tag {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: var(--space-3);
  line-height: 1;
}

.price-currency {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-right: var(--space-1);
}

.price-value {
  font-size: 4rem;
  font-weight: 900;
  color: var(--gray-900);
  letter-spacing: -2px;
}

.price-term {
  font-size: 1.2rem;
  color: var(--gray-700);
  font-weight: 600;
  margin-left: var(--space-2);
}

.price-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gray-700);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.trial-offer {
  background: var(--gradient-pink-purple);
  color: var(--white);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-lg);
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-3);
  animation: pulse 2s ease-in-out infinite;
  box-shadow: var(--shadow-sm);
}

.trial-icon {
  font-size: 1.2rem;
}

.features-list {
  list-style: none;
  margin-bottom: var(--space-8);
  flex: 1;
  position: relative;
  z-index: 1;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-900);
  line-height: 1.5;
}

.feature-item.disabled {
  opacity: 0.5;
}

.feature-check,
.feature-cross {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.plan-button {
  display: block;
  width: 100%;
  padding: var(--space-5) var(--space-6);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1.1rem;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 3px solid;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-outline {
  background: var(--white);
  color: var(--gray-900);
  border-color: var(--gray-900);
}

.btn-outline:hover {
  background: var(--gray-900);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-gradient {
  background: var(--gradient-pink-purple);
  color: var(--white);
  border-color: transparent;
  box-shadow: var(--shadow-md);
}

.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), var(--glow-pink);
}

.button-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s ease;
}

.btn-gradient:hover .button-shine {
  left: 150%;
}

.plan-disclaimer {
  text-align: center;
  font-size: 0.85rem;
  color: var(--gray-700);
  margin-top: var(--space-4);
  font-style: italic;
  position: relative;
  z-index: 1;
}

/* ========== DOWNLOAD ========== */
.download {
  background: var(--gradient-rainbow);
  background-size: 200% 200%;
  animation: gradient-shift 10s ease infinite;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.download::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.download-box {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-2xl);
  padding: var(--space-16);
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

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

.download-emoji {
  font-size: 4rem;
  margin-bottom: var(--space-6);
  animation: bounce 2s ease-in-out infinite;
}

.download-content h2 {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: var(--space-6);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.download-content > p {
  font-size: 1.3rem;
  margin-bottom: var(--space-10);
  opacity: 0.95;
}

.store-buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-6);
  flex-wrap: wrap;
  margin-bottom: var(--space-6);
}

.store-btn {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  background: var(--white);
  color: var(--gray-900);
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-lg);
  min-width: 220px;
}

.store-btn:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: var(--shadow-xl);
}

.store-icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.apple .store-icon {
  color: var(--gray-900);
}

.google .store-icon {
  color: #34A853;
}

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

.store-line1 {
  font-size: 0.75rem;
  color: var(--gray-700);
  font-weight: 500;
}

.store-line2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1;
}

.coming-soon {
  font-size: 1.1rem;
  font-weight: 700;
  opacity: 0.9;
}

.download-decoration {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.deco-emoji {
  position: absolute;
  font-size: 3rem;
  opacity: 0.3;
  animation: float-decoration 8s ease-in-out infinite;
}

.d1 { top: 10%; left: 5%; animation-delay: 0s; }
.d2 { top: 20%; right: 8%; animation-delay: 2s; }
.d3 { bottom: 15%; left: 10%; animation-delay: 4s; }
.d4 { bottom: 10%; right: 5%; animation-delay: 6s; }

/* ========== FOOTER ========== */
.footer {
  background: var(--gray-900);
  color: var(--white);
  padding: var(--space-20) 0 var(--space-8);
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: var(--space-16);
  margin-bottom: var(--space-12);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.footer-logo-icon {
  height: 40px;
  width: auto;
}

.footer-logo-text {
  height: 45px;
  width: auto;
}

.footer-logo-img {
  height: 40px;
  width: auto;
}

.footer-logo .logo-icon {
  width: 45px;
  height: 45px;
}

.footer-brand-name {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--white);
}

.footer-tagline {
  opacity: 0.8;
  margin-bottom: var(--space-6);
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: var(--space-4);
}

.social-link {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.social-link:hover {
  background: var(--gradient-pink-purple);
  transform: translateY(-4px) rotate(5deg);
  border-color: rgba(255, 255, 255, 0.3);
}

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

.footer-column h4 {
  margin-bottom: var(--space-5);
  font-weight: 700;
  font-size: 1.1rem;
}

.footer-column a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  margin-bottom: var(--space-3);
  transition: all 0.3s ease;
  font-weight: 500;
}

.footer-column a:hover {
  color: var(--white);
  padding-left: var(--space-3);
  color: var(--pink-light);
}

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

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) translateX(0);
  }
  25% {
    transform: translateY(-20px) translateX(10px);
  }
  50% {
    transform: translateY(-10px) translateX(-10px);
  }
  75% {
    transform: translateY(-30px) translateX(5px);
  }
}

@keyframes sparkle-float {
  0%, 100% {
    transform: translateY(0) scale(1) rotate(0deg);
    opacity: 0.6;
  }
  25% {
    transform: translateY(-30px) scale(1.2) rotate(90deg);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-15px) scale(0.9) rotate(180deg);
    opacity: 0.4;
  }
  75% {
    transform: translateY(-40px) scale(1.1) rotate(270deg);
    opacity: 0.7;
  }
}

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

@keyframes bounce-slow {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

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

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

@keyframes gradient-shift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

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

@keyframes glow-pulse {
  0%, 100% {
    box-shadow: 0 0 15px rgba(255, 107, 0, 0.5);
  }
  50% {
    box-shadow: 0 0 25px rgba(255, 107, 0, 0.8);
  }
}

@keyframes rotate-slow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 968px) {
  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: var(--space-8);
    gap: var(--space-4);
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .menu-toggle {
    display: flex;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(9px, -9px);
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-visual {
    order: -1;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-features,
  .cta-buttons,
  .hero-stats {
    justify-content: center;
  }

  .section-title {
    font-size: 2.5rem;
  }

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

  .why-content {
    grid-template-columns: 1fr;
  }

  .why-features {
    grid-template-columns: 1fr;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .pricing-wrapper {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .pricing-card.featured:hover {
    transform: translateY(-10px);
  }

  .premium-card {
    transform: none;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .phone-device {
    width: 300px;
    height: 600px;
  }

  .float-card {
    width: 60px;
    height: 75px;
    font-size: 1.5rem;
  }

  .why-text h2 {
    font-size: 2rem;
  }

  .download-content h2 {
    font-size: 2rem;
  }

  .store-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .cards-display {
    height: 400px;
  }

  .display-card {
    width: 150px;
    height: 120px;
  }

  .dc-emoji {
    font-size: 2rem;
  }

  .dc-text {
    font-size: 1.3rem;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }
}

/* ========== LEGAL PAGES ========== */
.legal-page, .support-page {
  padding: var(--space-20) 0;
  background: var(--white);
  min-height: 80vh;
}

.container-legal {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.legal-header, .support-header {
  text-align: center;
  margin-bottom: var(--space-16);
}

.legal-header h1, .support-header h1 {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: var(--space-4);
  color: var(--gray-900);
}

.last-updated {
  color: var(--gray-700);
  font-size: 0.95rem;
  font-style: italic;
}

.support-header p {
  font-size: 1.2rem;
  color: var(--gray-700);
  margin-top: var(--space-4);
}

.legal-content {
  line-height: 1.8;
  color: var(--gray-900);
}

.legal-content .intro {
  font-size: 1.15rem;
  color: var(--gray-800);
  margin-bottom: var(--space-10);
  padding: var(--space-6);
  background: var(--pink-pale);
  border-left: 4px solid var(--pink-hot);
  border-radius: var(--radius-lg);
}

.legal-content h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-top: var(--space-12);
  margin-bottom: var(--space-6);
  color: var(--gray-900);
  border-bottom: 3px solid var(--pink-light);
  padding-bottom: var(--space-3);
}

.legal-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-top: var(--space-8);
  margin-bottom: var(--space-4);
  color: var(--pink-hot);
}

.legal-content h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-top: var(--space-6);
  margin-bottom: var(--space-3);
  color: var(--gray-900);
}

.legal-content p {
  margin-bottom: var(--space-4);
  font-size: 1rem;
}

.legal-content ul, .legal-content ol {
  margin-left: var(--space-8);
  margin-bottom: var(--space-6);
}

.legal-content li {
  margin-bottom: var(--space-3);
}

.legal-content a {
  color: var(--pink-hot);
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.3s ease;
}

.legal-content a:hover {
  color: var(--pink-bright);
}

.info-box {
  background: var(--gray-50);
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  margin: var(--space-6) 0;
  border: 2px solid var(--gray-200);
}

.info-box h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: var(--space-4);
  margin-bottom: var(--space-2);
  color: var(--gray-900);
}

.info-box h3:first-child {
  margin-top: 0;
}

.contact-info {
  background: var(--gradient-soft);
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  margin: var(--space-8) 0;
  border: 3px solid var(--pink-light);
}

.contact-info p {
  margin-bottom: var(--space-2);
}

.legal-footer {
  margin-top: var(--space-16);
  padding-top: var(--space-8);
  border-top: 2px solid var(--gray-200);
  text-align: center;
  color: var(--gray-700);
  font-style: italic;
}

/* Support Page Specific Styles */
.contact-section {
  margin-bottom: var(--space-16);
}

.contact-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: var(--space-6);
  color: var(--gray-900);
}

.contact-box {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  margin-top: var(--space-8);
}

.contact-method {
  background: var(--gradient-soft);
  padding: var(--space-10);
  border-radius: var(--radius-2xl);
  text-align: center;
  border: 3px solid var(--pink-light);
  transition: all 0.3s ease;
}

.contact-method:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--pink-hot);
}

.contact-icon {
  font-size: 4rem;
  margin-bottom: var(--space-4);
}

.contact-method h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: var(--space-3);
  color: var(--gray-900);
}

.contact-method p {
  font-size: 1.1rem;
  color: var(--gray-800);
  margin-bottom: var(--space-2);
}

.contact-method a {
  color: var(--pink-hot);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
}

.contact-method a:hover {
  text-decoration: underline;
}

.response-time {
  font-size: 0.9rem !important;
  color: var(--gray-600) !important;
  font-style: italic;
  margin-top: var(--space-2) !important;
}

.faq-section {
  margin-top: var(--space-16);
}

.faq-section > h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: var(--space-10);
  text-align: center;
  color: var(--gray-900);
}

.faq-category {
  margin-bottom: var(--space-12);
}

.faq-category > h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: var(--space-6);
  color: var(--pink-hot);
  border-bottom: 2px solid var(--pink-light);
  padding-bottom: var(--space-3);
}

.faq-item {
  background: var(--white);
  padding: var(--space-6);
  margin-bottom: var(--space-4);
  border-radius: var(--radius-xl);
  border: 2px solid var(--gray-200);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--pink-light);
  box-shadow: var(--shadow-md);
  transform: translateX(5px);
}

.faq-item h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: var(--space-3);
  color: var(--gray-900);
}

.faq-item p, .faq-item ul, .faq-item ol {
  color: var(--gray-800);
  line-height: 1.7;
}

.faq-item ul, .faq-item ol {
  margin-left: var(--space-6);
  margin-top: var(--space-3);
}

.faq-item li {
  margin-bottom: var(--space-2);
}

.help-cta {
  text-align: center;
  padding: var(--space-16) var(--space-8);
  background: var(--gradient-soft);
  border-radius: var(--radius-2xl);
  margin-top: var(--space-16);
  border: 3px solid var(--pink-light);
}

.help-cta h2 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: var(--space-4);
  color: var(--gray-900);
}

.help-cta p {
  font-size: 1.2rem;
  color: var(--gray-700);
  margin-bottom: var(--space-8);
}

.btn-support {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-5) var(--space-10);
  background: var(--gradient-pink-purple);
  color: var(--white);
  text-decoration: none;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-lg);
}

.btn-support:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl), var(--glow-pink);
}

/* Responsive */
@media (max-width: 768px) {
  .legal-header h1, .support-header h1 {
    font-size: 2.5rem;
  }

  .legal-content h2, .faq-section > h2, .help-cta h2 {
    font-size: 1.8rem;
  }

  .legal-content h3, .faq-category > h3 {
    font-size: 1.3rem;
  }

  .contact-section h2 {
    font-size: 2rem;
  }
}
