:root {
  --primary: #E94B5A;        /* Luxury pink-red */
  --secondary: #FFF1F2;      /* Soft blush background */
  --dark: #0F0F0F;           /* Premium black */
  --text-dark: #2B2B2B;
  --text-light: #777777;
  --card-bg: #FFFFFF;
  --accent: #F9C5D1;         /* Floating elements */
  --gradient: linear-gradient(135deg, #E94B5A 0%, #F9C5D1 100%);
  --shadow: 0 20px 40px rgba(233, 75, 90, 0.15);
  --border-radius: 20px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
}

/* TEXT ANIMATIONS */
.animate-text {
  animation: slideInUp 1s ease-out;
}

.animate-text-delay {
  animation: slideInUp 1s ease-out 0.3s both;
}

.animate-text-delay-2 {
  animation: slideInUp 1s ease-out 0.6s both;
}

.animate-text-delay-3 {
  animation: slideInUp 1s ease-out 0.9s both;
}

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

.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  text-align: center;
}

.section-subtitle {
  font-size: clamp(1rem, 3vw, 1.4rem);
  color: var(--text-light);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.highlight {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}

/* FLOATING ANIMATIONS */
.floating {
  position: absolute;
  font-size: 40px;
  opacity: 0.8;
  animation: floatAround 12s infinite ease-in-out;
  z-index: 1;
}

.floating-1 { top: 20%; left: 10%; animation-delay: 0s; }
.floating-2 { top: 60%; left: 15%; animation-delay: 3s; }
.floating-3 { top: 30%; right: 12%; animation-delay: 6s; }
.floating-4 { bottom: 15%; right: 18%; animation-delay: 9s; }

@keyframes floatAround {
  0%   { transform: translateY(0) rotate(0deg); }
  50%  { transform: translateY(-40px) rotate(8deg); }
  100% { transform: translateY(0) rotate(0deg); }
}

.scissors-icon {
  display: inline-block;
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}

.scissors-icon:hover {
  transform: rotate(180deg) scale(1.1);
}

/* LOGO STYLING */
.logo-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.company-logo {
  height: clamp(50px, 8vw, 80px);
  width: auto;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
  transition: all 0.3s ease;
}

.company-logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 6px 12px rgba(233, 75, 90, 0.4));
}

@media (max-width: 768px) {
  .logo-title {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .company-logo {
    height: clamp(40px, 10vw, 60px);
  }
}
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 2;
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(5px);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
  border-radius: var(--border-radius);
  max-width: 85%;
  width: 100%;
  max-width: 600px;
  border: 1px solid rgba(255,255,255,0.1);
  margin-top: 15vh;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  letter-spacing: 4px;
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 400;
  margin-bottom: 1.5rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hero p {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  line-height: 1.8;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* UX FLOW */
.ux-flow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0;
  flex-wrap: wrap;
  justify-content: center;
}

.flow-step {
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid rgba(255,255,255,0.3);
}

.flow-arrow {
  font-size: 1.5rem;
  color: var(--accent);
  font-weight: bold;
}

.store-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2rem;
}

.store-buttons img {
  height: clamp(45px, 8vw, 60px);
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 10px;
}

.store-buttons img:hover {
  transform: scale(1.05) translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* SCROLL BUTTON */
.scroll-btn {
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255,255,255,0.3);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.scroll-btn:hover {
  background: rgba(255,255,255,0.3);
  transform: translateY(-3px);
}

.scroll-btn i {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

/* ABOUT */
.about {
  background: var(--secondary);
  padding: clamp(4rem, 10vw, 8rem) 2rem;
  text-align: center;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.stats div {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.stats div:hover {
  transform: translateY(-10px);
}

.stats div strong {
  display: block;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.stats div span {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-light);
  font-weight: 600;
}

/* FEATURES */
.features {
  padding: clamp(4rem, 10vw, 8rem) 2rem;
  text-align: center;
  position: relative;
  background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
}

/* CAROUSEL */
.feature-carousel {
  margin-top: 3rem;
  overflow: hidden;
  position: relative;
}

.carousel-container {
  display: flex;
  gap: 2rem;
  animation: autoSlide 20s linear infinite;
  width: max-content;
}

@keyframes autoSlide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.carousel-container:hover {
  animation-play-state: paused;
}

/* SOFT CARDS */
.soft-card {
  background: white;
  border-radius: 25px;
  padding: 2.5rem 2rem;
  min-width: 280px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  border: 1px solid rgba(233, 75, 90, 0.1);
  position: relative;
  overflow: hidden;
}

.soft-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.soft-card:hover::before {
  transform: scaleX(1);
}

.soft-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 50px rgba(233, 75, 90, 0.2);
}

.soft-card i {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  display: block;
}

.soft-card h3 {
  font-size: 1.4rem;
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 1rem;
}

.soft-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* TRUST */
.trust {
  padding: clamp(4rem, 10vw, 8rem) 2rem;
  text-align: center;
  background: var(--secondary);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 3rem auto 0;
}

.trust-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  box-shadow: 
    0 20px 40px rgba(0,0,0,0.08),
    0 8px 16px rgba(0,0,0,0.04),
    inset 0 1px 0 rgba(255,255,255,0.8);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  border: 2px solid rgba(233, 75, 90, 0.1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.trust-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #E94B5A, #F9C5D1, #E94B5A);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.trust-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 
    0 30px 60px rgba(233, 75, 90, 0.15),
    0 15px 30px rgba(0,0,0,0.1),
    inset 0 2px 4px rgba(255,255,255,0.9);
  border-color: rgba(233, 75, 90, 0.3);
}

.trust-card:hover::before {
  transform: scaleX(1);
}

.trust-card i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.trust-card h4 {
  font-size: 1.3rem;
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 1rem;
}

.trust-card p {
  color: var(--text-light);
  font-size: 1rem;
  font-weight: 600;
}

/* DOWNLOAD */
.download {
  padding: clamp(4rem, 10vw, 8rem) 2rem;
  background: linear-gradient(135deg, var(--secondary) 0%, #ffffff 100%);
}

.download-box {
  max-width: 1200px;
  margin: auto;
  background: white;
  border-radius: 30px;
  padding: clamp(3rem, 8vw, 5rem);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 3rem;
  box-shadow: 0 30px 80px rgba(233, 75, 90, 0.15);
  border: 1px solid rgba(233, 75, 90, 0.1);
}

.phone {
  height: clamp(300px, 40vw, 400px);
  border-radius: 30px;
  box-shadow: 
    0 30px 60px rgba(0,0,0,0.4),
    0 15px 30px rgba(0,0,0,0.2),
    0 5px 15px rgba(0,0,0,0.1),
    inset 0 2px 4px rgba(255,255,255,0.3),
    inset 0 -2px 4px rgba(0,0,0,0.1);
  border: 4px solid #2c2c2c;
  background: linear-gradient(145deg, #1a1a1a, #333333);
  padding: 12px;
  transition: all 0.4s ease;
  transform: perspective(1200px) rotateY(-8deg) rotateX(2deg);
  filter: 
    contrast(1.2) 
    brightness(1.1) 
    saturate(1.3)
    drop-shadow(0 0 20px rgba(233, 75, 90, 0.3));
  position: relative;
}

.phone::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  background: linear-gradient(45deg, #E94B5A, #F9C5D1, #E94B5A);
  border-radius: 34px;
  z-index: -1;
  animation: phoneGlow 3s ease-in-out infinite alternate;
}

.phone:hover {
  transform: perspective(1200px) rotateY(0deg) rotateX(0deg) translateY(-15px) scale(1.05);
  box-shadow: 
    0 40px 80px rgba(0,0,0,0.5),
    0 20px 40px rgba(0,0,0,0.3),
    0 10px 20px rgba(0,0,0,0.2),
    inset 0 3px 6px rgba(255,255,255,0.4),
    inset 0 -3px 6px rgba(0,0,0,0.2);
  filter: 
    contrast(1.3) 
    brightness(1.2) 
    saturate(1.4)
    drop-shadow(0 0 30px rgba(233, 75, 90, 0.5));
}

@keyframes phoneGlow {
  0% { opacity: 0.7; }
  100% { opacity: 1; }
}

/* LUXURY FOOTER */
.luxury-footer {
  background: linear-gradient(135deg, var(--dark) 0%, #1a1a1a 100%);
  color: #ccc;
  position: relative;
  overflow: hidden;
}

.luxury-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient);
}

.footer-hero {
  text-align: center;
  padding: 4rem 2rem 2rem;
  border-bottom: 1px solid #333;
}

.footer-brand {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.footer-tagline {
  font-size: 1.2rem;
  color: var(--accent);
  font-style: italic;
}

.footer-content {
  padding: 3rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section h4 {
  color: white;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-section h4 i {
  color: var(--primary);
}

.footer-section a {
  display: block;
  color: #ccc;
  text-decoration: none;
  margin: 0.8rem 0;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
  border-bottom: 1px solid transparent;
}

.footer-section a:hover {
  color: var(--primary);
  border-bottom-color: var(--primary);
  transform: translateX(5px);
}

.address {
  color: #ccc;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.8rem;
  font-weight: 900;
  border: 3px solid transparent;
  position: relative;
  overflow: hidden;
}

.social-icon i {
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.social-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(45deg, #fff, #f0f0f0);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: exclude;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
}

.social-icon.instagram {
  background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
  color: white;
  box-shadow: 0 8px 25px rgba(240, 148, 51, 0.4);
}

.social-icon.facebook {
  background: linear-gradient(45deg, #1877f2 0%, #42a5f5 100%);
  color: white;
  box-shadow: 0 8px 25px rgba(24, 119, 242, 0.4);
}

.social-icon:hover {
  transform: translateY(-8px) scale(1.15);
  filter: brightness(1.2) contrast(1.1);
}

.social-icon.instagram:hover {
  box-shadow: 0 15px 40px rgba(240, 148, 51, 0.6);
}

.social-icon.facebook:hover {
  box-shadow: 0 15px 40px rgba(24, 119, 242, 0.6);
}

.footer-bottom {
  background: rgba(0,0,0,0.3);
  padding: 2rem;
  text-align: center;
  border-top: 1px solid #333;
}

.copy {
  font-size: 0.95rem;
  color: #999;
}

/* FLOATING BUTTONS */
.floating-buttons {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 1000;
}

.whatsapp-bubble, .call-bubble {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  animation: float 3s ease-in-out infinite;
}

.whatsapp-bubble {
  background: #25D366;
  color: white;
  animation-delay: 0s;
}

.call-bubble {
  background: var(--primary);
  color: white;
  animation-delay: 1.5s;
}

.whatsapp-bubble:hover, .call-bubble:hover {
  transform: scale(1.15) translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

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

/* MOBILE-FIRST RESPONSIVE DESIGN */
@media (max-width: 1200px) {
  .hero-content {
    margin-top: 10vh;
    max-width: 90%;
  }
  
  .download-box {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 3rem 2rem;
  }
}

@media (max-width: 768px) {
  .bg-video {
    object-position: center center;
    -webkit-playsinline: true;
    playsinline: true;
  }
  
  .hero-content {
    margin-top: 3vh;
    padding: 1.5rem 1rem;
    max-width: 95%;
    border-radius: 15px;
  }
  
  .hero h1 {
    font-size: clamp(2.5rem, 10vw, 4rem);
    letter-spacing: 2px;
  }
  
  .hero h2 {
    font-size: clamp(1.2rem, 5vw, 2rem);
  }
  
  .hero p {
    font-size: clamp(0.9rem, 4vw, 1.2rem);
  }
  
  .store-buttons {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }
  
  .store-buttons img {
    height: clamp(40px, 8vw, 55px);
    width: auto;
  }
  
  .scroll-btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .section-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }
  
  .section-subtitle {
    font-size: clamp(0.9rem, 4vw, 1.2rem);
    padding: 0 1rem;
  }
  
  .stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }
  
  .stats div {
    padding: 1.5rem;
  }
  
  .carousel-container {
    gap: 1rem;
    padding: 0 1rem;
  }
  
  .soft-card {
    min-width: 220px;
    padding: 2rem 1.5rem;
  }
  
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }
  
  .trust-card {
    padding: 2rem 1.5rem;
  }
  
  .phone {
    height: clamp(250px, 50vw, 320px);
    margin: 2rem auto 0;
  }
  
  .floating-buttons {
    bottom: 1rem;
    right: 1rem;
  }
  
  .whatsapp-bubble, .call-bubble {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .social-icon {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .hero-content {
    margin-top: 2vh;
    padding: 1rem 0.8rem;
    max-width: 98%;
  }
  
  .hero h1 {
    font-size: clamp(2rem, 12vw, 3rem);
  }
  
  .about, .features, .trust, .download {
    padding: clamp(3rem, 8vw, 5rem) 1rem;
  }
  
  .soft-card {
    min-width: 180px;
    padding: 1.5rem 1rem;
  }
  
  .trust-card {
    padding: 1.5rem 1rem;
  }
  
  .floating-buttons {
    bottom: 0.5rem;
    right: 0.5rem;
  }
  
  .whatsapp-bubble, .call-bubble {
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }
}

/* iOS SAFARI SPECIFIC */
@supports (-webkit-touch-callout: none) {
  .hero {
    height: 100vh;
    height: -webkit-fill-available;
  }
  
  .bg-video {
    object-fit: cover;
    height: 100vh;
    height: -webkit-fill-available;
  }
}

/* ANDROID CHROME SPECIFIC */
@media screen and (max-width: 768px) {
  .hero {
    min-height: 100vh;
    min-height: 100dvh;
  }
}

/* TOUCH DEVICE OPTIMIZATIONS */
@media (hover: none) and (pointer: coarse) {
  .soft-card:hover, .trust-card:hover {
    transform: none;
  }
  
  .social-icon:hover {
    transform: none;
  }
  
  h1:hover, h2:hover, h3:hover, h4:hover,
  p:hover, span:hover, a:hover {
    transform: none;
    filter: none;
    text-shadow: none;
  }
  
  /* Touch feedback */
  .soft-card:active, .trust-card:active {
    transform: scale(0.98);
  }
  
  .store-buttons img:active {
    transform: scale(0.95);
  }
}

/* ENSURE VIDEO PLAYS ON MOBILE */
video {
  pointer-events: none;
  -webkit-playsinline: true;
  playsinline: true;
}

/* UNIVERSAL TEXT HOVER EFFECTS */
h1, h2, h3, h4, h5, h6, p, span, a {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

h1:hover, h2:hover, h3:hover, h4:hover {
  transform: translateY(-5px) scale(1.02);
  color: var(--primary);
  text-shadow: 
    0 8px 16px rgba(233, 75, 90, 0.4),
    0 4px 8px rgba(0, 0, 0, 0.3);
  filter: brightness(1.1);
}

p:hover, span:hover {
  transform: translateY(-3px) scale(1.01);
  color: var(--text-dark);
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  filter: brightness(1.05);
}

a:hover {
  transform: translateY(-4px) scale(1.02);
  color: var(--primary);
  text-shadow: 0 6px 12px rgba(233, 75, 90, 0.3);
  filter: brightness(1.1) saturate(1.2);
}

/* UNIVERSAL ANIMATIONS */
button, .store-buttons img, .scroll-btn {
  transition: all 0.3s ease;
}

button:hover, .store-buttons img:hover {
  transform: translateY(-3px);
}

i, .fas, .fab {
  transition: transform 0.3s ease;
}

i:hover, .fas:hover, .fab:hover {
  transform: scale(1.05);
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.animate-on-scroll-delay {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out 0.3s;
}

.animate-on-scroll.visible,
.animate-on-scroll-delay.visible {
  opacity: 1;
  transform: translateY(0);
}