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

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #ff006e 0%, #8338ec 25%, #3a86ff 50%, #06ffa5 75%, #ffbe0b 100%);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  color: #1a1a1a;
  overflow-x: hidden;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ========== TOP BAR ========== */
.top-bar-bright {
  background: linear-gradient(90deg, #ff006e, #8338ec, #3a86ff);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 8px 32px rgba(255, 0, 110, 0.4);
  backdrop-filter: blur(10px);
}

.bar-content-bright {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-bright {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 22px;
  font-weight: 800;
  background: linear-gradient(90deg, #fff, #ffbe0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-img-bright {
  width: 42px;
  height: 42px;
  filter: drop-shadow(0 4px 8px rgba(255, 0, 110, 0.3));
  animation: bounce 2s ease-in-out infinite;
}

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

.logo-text-bright {
  font-weight: 800;
}

.btn-cta-top {
  background: linear-gradient(135deg, #ffbe0b, #ff006e);
  color: #000;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 15px rgba(255, 190, 11, 0.3);
  letter-spacing: 0.5px;
}

.btn-cta-top:hover {
  transform: scale(1.12) rotate(2deg);
  box-shadow: 0 8px 25px rgba(255, 190, 11, 0.5);
}

/* ========== HERO SECTION ========== */
.hero-bright {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 100px 40px;
  position: relative;
  overflow: hidden;
}

.hero-bright::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 0, 110, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

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

.hero-diagonal {
  position: relative;
  z-index: 2;
  transform: skewY(-3deg);
}

.hero-text-bright {
  position: relative;
}

.title-playful {
  font-family: 'Poppins', sans-serif;
  font-size: 72px;
  font-weight: 800;
  background: linear-gradient(135deg, #ff006e 0%, #8338ec 50%, #ffbe0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1px;
  animation: slideInLeft 0.8s ease-out;
}

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

.subtitle-bright {
  font-size: 20px;
  color: #fff;
  margin-bottom: 32px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.btn-hero-bright {
  background: linear-gradient(135deg, #06ffa5, #3a86ff);
  color: #000;
  padding: 16px 40px;
  border: none;
  border-radius: 35px;
  font-weight: 800;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 8px 25px rgba(6, 255, 165, 0.4);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.btn-hero-bright:hover {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 12px 35px rgba(6, 255, 165, 0.6);
}

.btn-hero-bright:active {
  transform: scale(0.98);
}

.hero-image-bright {
  position: relative;
  animation: slideInRight 0.8s ease-out;
}

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

.img-floating {
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 30px 60px rgba(255, 0, 110, 0.3);
  animation: floatImg 3s ease-in-out infinite;
}

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

/* ========== FEATURE CARDS ========== */
.cards-bright-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 80px 40px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.card-vibrant {
  padding: 48px 32px;
  border-radius: 25px;
  text-align: center;
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.card-vibrant::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;
}

.card-vibrant:hover::before {
  left: 100%;
}

.card-1 {
  background: linear-gradient(135deg, rgba(255, 0, 110, 0.2), rgba(131, 56, 236, 0.2));
  box-shadow: 0 8px 32px rgba(255, 0, 110, 0.2);
}

.card-2 {
  background: linear-gradient(135deg, rgba(58, 134, 255, 0.2), rgba(6, 255, 165, 0.2));
  box-shadow: 0 8px 32px rgba(58, 134, 255, 0.2);
}

.card-3 {
  background: linear-gradient(135deg, rgba(255, 190, 11, 0.2), rgba(255, 0, 110, 0.2));
  box-shadow: 0 8px 32px rgba(255, 190, 11, 0.2);
}

.card-vibrant:hover {
  transform: translateY(-12px) scale(1.05);
  box-shadow: 0 20px 50px rgba(255, 0, 110, 0.3);
}

.card-icon {
  font-size: 52px;
  display: block;
  margin-bottom: 20px;
  animation: spin 3s linear infinite;
}

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

.card-vibrant h3 {
  color: #fff;
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: 700;
}

.card-vibrant p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  line-height: 1.6;
  font-weight: 500;
}

/* ========== PRODUCTS FLOW ========== */
.products-flow {
  padding: 100px 40px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.section-header-bright {
  text-align: center;
  margin-bottom: 80px;
  animation: slideDown 0.8s ease-out;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

.title-section-bright {
  font-size: 56px;
  font-weight: 800;
  background: linear-gradient(135deg, #ff006e 0%, #8338ec 50%, #3a86ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  line-height: 1.1;
}

.subtitle-section {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.product-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 120px;
  animation: fadeInUp 0.8s ease-out;
}

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

.product-left {
  grid-template-columns: 1fr 1fr;
  transform: skewY(-2deg);
}

.product-right {
  grid-template-columns: 1fr 1fr;
  direction: rtl;
  transform: skewY(2deg);
}

.product-right > * {
  direction: ltr;
}

.product-img {
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 30px 60px rgba(255, 0, 110, 0.25);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.product-card:hover .product-img {
  transform: scale(1.08) rotate(2deg);
  box-shadow: 0 40px 80px rgba(255, 0, 110, 0.35);
}

.product-details {
  position: relative;
  z-index: 2;
}

.product-badge {
  display: inline-block;
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.badge-purple {
  background: linear-gradient(135deg, #ff006e, #8338ec);
  box-shadow: 0 4px 15px rgba(255, 0, 110, 0.3);
}

.badge-orange {
  background: linear-gradient(135deg, #ffbe0b, #ff006e);
  box-shadow: 0 4px 15px rgba(255, 190, 11, 0.3);
}

.badge-pink {
  background: linear-gradient(135deg, #8338ec, #06ffa5);
  box-shadow: 0 4px 15px rgba(131, 56, 236, 0.3);
}

.badge-multi {
  background: linear-gradient(135deg, #3a86ff, #ffbe0b);
  box-shadow: 0 4px 15px rgba(58, 134, 255, 0.3);
}

.product-details h3 {
  font-size: 32px;
  font-weight: 800;
  background: linear-gradient(135deg, #ff006e, #ffbe0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  line-height: 1.2;
}

.product-details p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  margin-bottom: 24px;
  line-height: 1.7;
  font-weight: 500;
}

.price-bright {
  color: #06ffa5;
  font-weight: 800;
  font-size: 28px;
  margin-bottom: 24px;
  text-shadow: 0 4px 8px rgba(6, 255, 165, 0.3);
}

.btn-product-bright {
  background: linear-gradient(135deg, #06ffa5, #3a86ff);
  color: #000;
  border: none;
  padding: 16px 36px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 800;
  font-size: 15px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 8px 25px rgba(6, 255, 165, 0.35);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.btn-product-bright:hover {
  transform: scale(1.1) translateY(-4px) rotate(1deg);
  box-shadow: 0 12px 35px rgba(6, 255, 165, 0.5);
}

.btn-product-bright:active {
  transform: scale(0.96);
}

/* ========== STATS SECTION ========== */
.stats-vibrant {
  padding: 100px 40px;
  position: relative;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 60px auto 0;
}

.stat-bubble {
  aspect-ratio: 1;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(20px);
}

.stat-bubble::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.5s ease;
}

.stat-bubble:hover::before {
  left: 100%;
}

.stat-purple {
  background: linear-gradient(135deg, rgba(255, 0, 110, 0.3), rgba(131, 56, 236, 0.3));
  box-shadow: 0 8px 32px rgba(255, 0, 110, 0.25);
}

.stat-pink {
  background: linear-gradient(135deg, rgba(131, 56, 236, 0.3), rgba(58, 134, 255, 0.3));
  box-shadow: 0 8px 32px rgba(131, 56, 236, 0.25);
}

.stat-orange {
  background: linear-gradient(135deg, rgba(58, 134, 255, 0.3), rgba(6, 255, 165, 0.3));
  box-shadow: 0 8px 32px rgba(58, 134, 255, 0.25);
}

.stat-teal {
  background: linear-gradient(135deg, rgba(6, 255, 165, 0.3), rgba(255, 190, 11, 0.3));
  box-shadow: 0 8px 32px rgba(6, 255, 165, 0.25);
}

.stat-bubble:hover {
  transform: scale(1.15) rotateZ(10deg);
  box-shadow: 0 20px 50px rgba(255, 0, 110, 0.4);
  border-color: rgba(255, 255, 255, 0.6);
}

.stat-number {
  display: block;
  font-size: 44px;
  font-weight: 800;
  background: linear-gradient(135deg, #ffbe0b, #06ffa5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.stat-bubble p {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.3px;
}

/* ========== CONTACT SECTION ========== */
.contact-bright {
  padding: 100px 40px;
  position: relative;
  text-align: center;
}

.contact-bright-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.contact-card {
  padding: 40px;
  border-radius: 25px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(20px);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  transition: left 0.5s ease;
}

.contact-card:hover::before {
  left: 100%;
}

.contact-purple {
  background: linear-gradient(135deg, rgba(255, 0, 110, 0.2), rgba(131, 56, 236, 0.2));
  box-shadow: 0 8px 32px rgba(255, 0, 110, 0.2);
}

.contact-pink {
  background: linear-gradient(135deg, rgba(131, 56, 236, 0.2), rgba(58, 134, 255, 0.2));
  box-shadow: 0 8px 32px rgba(131, 56, 236, 0.2);
}

.contact-orange {
  background: linear-gradient(135deg, rgba(58, 134, 255, 0.2), rgba(6, 255, 165, 0.2));
  box-shadow: 0 8px 32px rgba(58, 134, 255, 0.2);
}

.contact-card:hover {
  transform: translateY(-12px) scale(1.05);
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 20px 50px rgba(255, 0, 110, 0.3);
}

.contact-card h4 {
  color: #ffbe0b;
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.contact-card p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  line-height: 1.8;
  font-weight: 500;
}

.contact-card a {
  color: #06ffa5;
  text-decoration: none;
  font-weight: 800;
  transition: all 0.3s;
}

.contact-card a:hover {
  text-shadow: 0 0 10px rgba(6, 255, 165, 0.5);
}

.btn-big-bright {
  background: linear-gradient(135deg, #ff006e, #8338ec);
  color: white;
  border: none;
  padding: 18px 50px;
  border-radius: 35px;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 8px 32px rgba(255, 0, 110, 0.4);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.btn-big-bright:hover {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 12px 40px rgba(255, 0, 110, 0.5);
}

.btn-big-bright:active {
  transform: scale(0.96);
}

/* ========== MODAL ========== */
.modal-bright {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  backdrop-filter: blur(8px);
  animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-bright-box {
  background: linear-gradient(135deg, rgba(255, 0, 110, 0.15), rgba(131, 56, 236, 0.15));
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 50px;
  border-radius: 35px;
  width: 90%;
  max-width: 520px;
  position: relative;
  box-shadow: 0 30px 80px rgba(255, 0, 110, 0.3);
  backdrop-filter: blur(20px);
  animation: slideUp 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

.modal-close-bright {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #ff006e, #8338ec);
  border: none;
  font-size: 32px;
  cursor: pointer;
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(255, 0, 110, 0.3);
}

.modal-close-bright:hover {
  transform: scale(1.15) rotate(90deg);
  box-shadow: 0 8px 25px rgba(255, 0, 110, 0.5);
}

.modal-bright-box h3 {
  background: linear-gradient(135deg, #ffbe0b, #06ffa5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 28px;
  margin-bottom: 24px;
  font-weight: 800;
}

.modal-bright-box form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modal-bright-box input,
.modal-bright-box select,
.modal-bright-box textarea {
  padding: 14px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  font-family: inherit;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
}

.modal-bright-box input::placeholder,
.modal-bright-box select::placeholder,
.modal-bright-box textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.modal-bright-box input:focus,
.modal-bright-box select:focus,
.modal-bright-box textarea:focus {
  outline: none;
  border-color: #06ffa5;
  box-shadow: 0 0 20px rgba(6, 255, 165, 0.3);
  background: rgba(6, 255, 165, 0.1);
}

.btn-submit-bright {
  background: linear-gradient(135deg, #06ffa5, #3a86ff);
  color: #000;
  border: none;
  padding: 16px;
  border-radius: 15px;
  font-weight: 800;
  cursor: pointer;
  margin-top: 12px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 8px 25px rgba(6, 255, 165, 0.3);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 15px;
}

.btn-submit-bright:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 12px 35px rgba(6, 255, 165, 0.5);
}

.btn-submit-bright:active {
  transform: scale(0.96);
}

/* Floating Logo in Modal */
.logo-floating {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, #ff006e, #8338ec);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 40px rgba(255, 0, 110, 0.3);
  animation: floatLogo 3s ease-in-out infinite;
  pointer-events: none;
}

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

.logo-floating img {
  width: 80%;
  filter: brightness(1.2);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  body {
    background-size: 600% 600%;
  }

  .hero-bright {
    grid-template-columns: 1fr;
    padding: 60px 20px;
    gap: 40px;
  }

  .title-playful {
    font-size: 48px;
  }

  .cards-bright-section {
    grid-template-columns: 1fr;
    padding: 60px 20px;
    gap: 20px;
  }

  .product-card {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 60px;
    transform: none !important;
  }

  .product-right {
    direction: ltr;
  }

  .product-right > * {
    direction: ltr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .contact-bright-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .title-section-bright {
    font-size: 40px;
  }

  .modal-bright-box {
    padding: 35px;
  }

  .logo-floating {
    width: 100px;
    height: 100px;
    bottom: -20px;
    right: -20px;
  }
}

@media (max-width: 480px) {
  .top-bar-bright {
    padding: 12px 0;
  }

  .bar-content-bright {
    padding: 0 20px;
  }

  .logo-img-bright {
    width: 36px;
    height: 36px;
  }

  .btn-cta-top {
    padding: 10px 20px;
    font-size: 12px;
  }

  .hero-bright {
    padding: 40px 20px;
  }

  .title-playful {
    font-size: 36px;
  }

  .subtitle-bright {
    font-size: 16px;
  }

  .title-section-bright {
    font-size: 32px;
  }

  .product-details h3 {
    font-size: 24px;
  }

  .stat-number {
    font-size: 36px;
  }

  .modal-bright-box {
    width: 95%;
    padding: 25px;
  }
}
