/* CUTE VARIABLES - SOFT & PASTEL */
:root {
  --pastel-pink: #FFB5E8;
  --pastel-blue: #B5DEFF;
  --pastel-green: #BFFCC6;
  --pastel-yellow: #FFF5BA;
  --pastel-purple: #E7C6FF;
  --pastel-peach: #FFCBC1;
  --pastel-mint: #C1FFE0;
  --pastel-lavender: #DCD6F7;

  --soft-white: #FFFEF9;
  --soft-gray: #F8F9FA;
  --text-dark: #4A4A4A;
  --text-light: #7A7A7A;

  --font-display: 'Fredoka', sans-serif;
  --font-body: 'Nunito', sans-serif;
  --font-accent: 'Outfit', sans-serif;

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --radius-xl: 50px;
  --radius-full: 9999px;

  --shadow-soft: 0 4px 20px rgba(255, 181, 232, 0.2);
  --shadow-hover: 0 8px 30px rgba(255, 181, 232, 0.3);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--soft-white);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
}

/* SPARKLE CONTAINER */
.sparkle-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
}

/* CUTE NAVIGATION */
.nav-cute {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 1200px;
  padding: 15px 30px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
}

.logo-icon {
  font-size: 1.8rem;
  animation: spin-slow 8s linear infinite;
}

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

.nav-links {
  display: flex;
  gap: 10px;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all 0.3s ease;
}

.nav-link:hover {
  background: var(--pastel-pink);
  transform: translateY(-2px);
}

.link-icon {
  font-size: 1.1rem;
}

.nav-cta {
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--pastel-pink), var(--pastel-purple));
  border: none;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 181, 232, 0.4);
}

.nav-cta:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 25px rgba(255, 181, 232, 0.5);
}

/* HERO SECTION */
.hero-cute {
  min-height: 100vh;
  padding: 120px 40px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.badge-cute {
  display: inline-block;
  padding: 10px 20px;
  background: var(--pastel-yellow);
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
  animation: bounce-soft 2s ease-in-out infinite;
}

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

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.wavy-text {
  display: inline-flex;
  color: var(--pastel-pink);
  position: relative;
}

.wavy-text span {
  display: inline-block;
  animation: wave 1s ease-in-out infinite;
  animation-delay: calc(var(--i) * 0.1s);
}

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

.hero-desc {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 30px;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-primary {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--pastel-pink), #FF9CEE);
  border: none;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(255, 181, 232, 0.4);
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 181, 232, 0.5);
}

.btn-sparkle {
  animation: sparkle 1s ease-in-out infinite;
}

@keyframes sparkle {
  0%, 100% { opacity: 1; transform: scale(1) rotate(0deg); }
  50% { opacity: 0.5; transform: scale(1.2) rotate(180deg); }
}

.btn-secondary {
  padding: 16px 32px;
  background: transparent;
  border: 2px solid var(--pastel-pink);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--pastel-pink);
  color: white;
  transform: translateY(-3px);
}

/* HERO ILLUSTRATION */
.hero-illustration {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
}

.hero-blob {
  position: absolute;
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, var(--pastel-pink), var(--pastel-purple), var(--pastel-blue));
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  animation: blob-morph 8s ease-in-out infinite;
  opacity: 0.6;
}

@keyframes blob-morph {
  0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
  25% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
  50% { border-radius: 50% 60% 30% 60% / 30% 40% 70% 50%; }
  75% { border-radius: 40% 30% 60% 50% / 70% 50% 40% 60%; }
}

.cute-character {
  position: relative;
  width: 200px;
  height: 200px;
  background: var(--soft-white);
  border-radius: 50%;
  box-shadow: var(--shadow-soft);
  z-index: 2;
  animation: float 4s ease-in-out infinite;
}

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

.character-face {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.eye {
  position: absolute;
  width: 20px;
  height: 30px;
  background: var(--text-dark);
  border-radius: 50%;
  top: 35%;
  animation: blink 4s ease-in-out infinite;
}

.eye.left { left: 30%; }
.eye.right { right: 30%; }

.eye::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  top: 5px;
  left: 3px;
}

@keyframes blink {
  0%, 90%, 100% { transform: scaleY(1); }
  95% { transform: scaleY(0.1); }
}

.blush {
  position: absolute;
  width: 30px;
  height: 15px;
  background: var(--pastel-pink);
  border-radius: 50%;
  top: 55%;
  opacity: 0.6;
}

.blush.left { left: 15%; }
.blush.right { right: 15%; }

.mouth {
  position: absolute;
  width: 30px;
  height: 15px;
  border: 4px solid var(--text-dark);
  border-top: none;
  border-radius: 0 0 30px 30px;
  top: 60%;
}

.float-cloud {
  position: absolute;
  font-size: 4rem;
  opacity: 0.5;
  animation: cloud-float 6s ease-in-out infinite;
}

.cloud-1 { top: 10%; left: 10%; animation-delay: 0s; }
.cloud-2 { top: 20%; right: 5%; animation-delay: 2s; }
.cloud-3 { bottom: 20%; left: 5%; animation-delay: 4s; }

@keyframes cloud-float {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(20px); }
}

.floating-items {
  position: absolute;
  width: 100%;
  height: 100%;
}

.float-item {
  position: absolute;
  left: 50%;
  top: 50%;
  font-size: 2rem;
  transform: translate(var(--x), var(--y));
  animation: float-item 3s ease-in-out infinite;
  animation-delay: var(--delay);
}

@keyframes float-item {
  0%, 100% { transform: translate(var(--x), var(--y)) scale(1); }
  50% { transform: translate(var(--x), calc(var(--y) - 15px)) scale(1.1); }
}

/* SECTIONS */
.section-cute {
  padding: 100px 40px;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 15px;
  animation: bounce-soft 2s ease-in-out infinite;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 15px;
}

.section-desc {
  font-size: 1.2rem;
  color: var(--text-light);
}

/* FEATURES */
.features {
  background: linear-gradient(180deg, var(--soft-white) 0%, var(--soft-gray) 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: white;
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--accent);
}

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

.card-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--text-light);
}

.card-decoration {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 4rem;
  opacity: 0.1;
  font-family: var(--font-display);
  transition: all 0.3s ease;
}

.feature-card:hover .card-decoration {
  opacity: 0.3;
  transform: scale(1.2) rotate(10deg);
}

/* MARQUEE */
.marquee-container {
  overflow: hidden;
  padding: 30px 0;
  background: var(--pastel-yellow);
  margin-bottom: 60px;
}

.marquee {
  display: flex;
  gap: 60px;
  animation: marquee 20s linear infinite;
}

.marquee span {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  white-space: nowrap;
  color: var(--text-dark);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* SHOWCASE */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 250px);
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.showcase-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: all 0.4s ease;
}

.showcase-item.large {
  grid-column: span 2;
}

.showcase-item.tall {
  grid-row: span 2;
}

.showcase-item:hover {
  transform: scale(1.02);
}

.item-image {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.item-emoji {
  font-size: 5rem;
  transition: all 0.4s ease;
}

.showcase-item:hover .item-emoji {
  transform: scale(1.2) rotate(10deg);
}

.item-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.5));
  color: white;
}

.item-info h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.item-info p {
  font-size: 0.9rem;
  opacity: 0.9;
}

.item-hover {
  position: absolute;
  inset: 0;
  background: rgba(255, 181, 232, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: all 0.4s ease;
}

.item-hover span {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.showcase-item:hover .item-hover {
  opacity: 1;
}

.showcase-item:hover .item-hover span {
  transform: translateY(0);
}

/* TESTIMONIALS */
.testimonials {
  background: linear-gradient(135deg, var(--pastel-lavender) 0%, var(--pastel-blue) 100%);
}

.testimonial-carousel {
  display: flex;
  justify-content: center;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto 30px;
  perspective: 1000px;
}

.testimonial-card {
  background: white;
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  max-width: 350px;
  text-align: center;
  transform: scale(0.9);
  opacity: 0.5;
  transition: all 0.5s ease;
}

.testimonial-card.active {
  transform: scale(1);
  opacity: 1;
}

.quote-icon {
  font-size: 2rem;
  margin-bottom: 15px;
}

.quote-text {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 25px;
  line-height: 1.7;
}

.quote-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: var(--pastel-yellow);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
}

.author-info {
  text-align: left;
}

.author-name {
  display: block;
  font-weight: 700;
}

.author-role {
  font-size: 0.85rem;
  color: var(--text-light);
}

.card-stars {
  margin-top: 20px;
  color: #FFD700;
  font-size: 1.2rem;
  letter-spacing: 5px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  background: white;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0.5;
}

.dot.active {
  background: var(--pastel-pink);
  opacity: 1;
  transform: scale(1.2);
}

/* STATS */
.stats {
  background: white;
  padding: 60px 40px;
}

.stats-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

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

.stat-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 10px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--pastel-pink);
}

.stat-suffix {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--pastel-pink);
}

.stat-label {
  display: block;
  font-size: 1rem;
  color: var(--text-light);
  margin-top: 5px;
}

.stat-divider {
  font-size: 2rem;
  color: var(--pastel-purple);
  opacity: 0.5;
}

/* CTA */
.cta {
  background: linear-gradient(135deg, var(--pastel-pink) 0%, var(--pastel-purple) 100%);
  position: relative;
  overflow: hidden;
}

.cta-blob {
  position: absolute;
  width: 600px;
  height: 600px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  top: -200px;
  right: -200px;
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-icon {
  font-size: 4rem;
  display: block;
  margin-bottom: 20px;
  animation: float 3s ease-in-out infinite;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  color: white;
  margin-bottom: 15px;
}

.cta-desc {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
}

.cta-form {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.email-input {
  padding: 16px 24px;
  border: none;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 1rem;
  width: 300px;
  background: white;
  box-shadow: var(--shadow-soft);
  outline: none;
  transition: all 0.3s ease;
}

.email-input:focus {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.5);
}

.submit-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: white;
  border: none;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-heart {
  animation: heartbeat 1s ease-in-out infinite;
}

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

.cta-decoration {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 30px;
  font-size: 2rem;
}

.cta-decoration span {
  animation: float-item 3s ease-in-out infinite;
}

.cta-decoration span:nth-child(2) { animation-delay: 0.5s; }
.cta-decoration span:nth-child(3) { animation-delay: 1s; }

/* FOOTER */
.footer-cute {
  background: var(--text-dark);
  color: white;
  position: relative;
}

.footer-wave {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  color: var(--pastel-purple);
}

.footer-wave svg {
  display: block;
  width: 100%;
  height: 80px;
}

.footer-content {
  padding: 120px 40px 60px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.footer-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  display: block;
  margin-bottom: 15px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 15px;
}

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

.social-link:hover {
  background: var(--pastel-pink);
  transform: translateY(-3px);
}

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

.link-group h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--pastel-pink);
}

.link-group a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.link-group a:hover {
  color: white;
  transform: translateX(5px);
}

.footer-bottom {
  padding: 30px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.footer-mascot {
  font-size: 1.5rem;
  animation: wave 1s ease-in-out infinite;
}

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

  .hero-content {
    order: 2;
  }

  .hero-illustration {
    order: 1;
    min-height: 350px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .showcase-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .showcase-item.large,
  .showcase-item.tall {
    grid-column: auto;
    grid-row: auto;
  }

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

@media (max-width: 768px) {
  .nav-cute {
    padding: 12px 20px;
  }

  .nav-links {
    display: none;
  }

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

  .testimonial-carousel {
    flex-direction: column;
    align-items: center;
  }

  .testimonial-card {
    transform: scale(1);
    opacity: 1;
    max-width: 100%;
  }

  .stats-container {
    gap: 30px;
  }

  .stat-divider {
    display: none;
  }

  .cta-form {
    flex-direction: column;
    align-items: center;
  }

  .email-input {
    width: 100%;
    max-width: 300px;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

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

/* CUSTOM SCROLLBAR */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--soft-gray);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--pastel-pink), var(--pastel-purple));
  border-radius: var(--radius-full);
}

/* SELECTION */
::selection {
  background: var(--pastel-pink);
  color: white;
}
