/* ============================================
   FUWUCLEAN — Justlife-style Design System
   ============================================ */

:root {
  --blue-900: #2a3b8f;
  --blue-700: #3b4db5;
  --blue-600: #485fc7;
  --blue-500: #5a71d4;
  --blue-100: #e0e7ff;
  --blue-50: #eef1ff;
  --cyan-600: #5ec6e3;
  --cyan-500: #7dd3e8;
  --cyan-100: #e0f5fa;
  --cyan-50: #f0fafe;
  --yellow-500: #ffd03e;
  --yellow-400: #ffd966;
  --yellow-100: #fff8e1;
  --green-500: #22c55e;
  --star-gold: #ffc107;
  --gray-900: #2d2d2d;
  --gray-700: #4a4a4a;
  --gray-500: #7a7a7a;
  --gray-300: #d1d5db;
  --gray-100: #eeeeee;
  --gray-50: #f5f5f5;
  --white: #ffffff;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.06);
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

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

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

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 600;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  font-size: 15px;
  padding: 12px 24px;
  line-height: 1;
}

.btn--primary {
  background: var(--blue-600);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--blue-700);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  color: var(--blue-600);
  border: 2px solid var(--blue-600);
}

.btn--outline:hover {
  background: var(--blue-50);
}

.btn--sm {
  padding: 8px 18px;
  font-size: 14px;
}

/* ============================================
   TOP BAR
   ============================================ */

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 101;
  background: var(--gray-900);
  color: var(--gray-300);
  font-size: 13px;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  height: 36px;
}

.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gray-300);
  font-size: 13px;
  transition: color var(--transition);
}

.topbar__item:hover {
  color: var(--white);
}

/* ============================================
   HEADER
   ============================================ */

.header {
  position: fixed;
  top: 36px;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-100);
  transition: box-shadow var(--transition);
}

.header--scrolled {
  box-shadow: var(--shadow-md);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.header__logo {
  flex-shrink: 0;
}

.header__logo img {
  height: 40px;
  width: auto;
  min-width: 0;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header__link {
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-700);
  position: relative;
}

.header__link:hover {
  color: var(--blue-600);
}

.header__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--blue-600);
  transition: width var(--transition);
}

.header__link:hover::after {
  width: 100%;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.header__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-900);
  border-radius: 2px;
  transition: all var(--transition);
}

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

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

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

/* ============================================
   SECTION COMMON
   ============================================ */

.section__title {
  font-size: 36px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 12px;
  color: var(--gray-900);
  line-height: 1.2;
}

.section__subtitle {
  font-size: 17px;
  text-align: center;
  color: var(--gray-500);
  margin-bottom: 48px;
}

/* ============================================
   HERO
   ============================================ */

.hero {
  padding: 170px 0 80px;
  background: linear-gradient(135deg, var(--cyan-50) 0%, var(--white) 50%, var(--blue-50) 100%);
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.hero__title {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--gray-900);
}

.hero__title .highlight {
  background: linear-gradient(135deg, var(--cyan-600), var(--blue-600));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: 18px;
  color: var(--gray-500);
  margin-bottom: 28px;
}

.hero__search {
  display: flex;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-full);
  padding: 6px 6px 6px 20px;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--gray-100);
  transition: border-color var(--transition);
}

.hero__search:focus-within {
  border-color: var(--blue-500);
}

.hero__search-icon {
  color: var(--gray-500);
  flex-shrink: 0;
}

.hero__input {
  flex: 1;
  border: none;
  outline: none;
  padding: 12px 12px;
  font-size: 16px;
  font-family: var(--font);
  color: var(--gray-900);
  background: transparent;
}

.hero__input::placeholder {
  color: var(--gray-300);
}

.hero__search-btn {
  flex-shrink: 0;
}

.hero__apps {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.app-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--gray-900);
  color: var(--white);
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  transition: all var(--transition);
}

.app-badge:hover {
  background: var(--blue-700);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.app-badge--lg {
  padding: 14px 28px;
  font-size: 16px;
  border-radius: var(--radius-lg);
}

.app-badge--lg small {
  display: block;
  font-weight: 400;
  font-size: 11px;
  opacity: 0.8;
  line-height: 1;
}

.app-badge--lg strong {
  display: block;
  font-size: 16px;
  line-height: 1.2;
}

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

.hero__blob {
  position: relative;
  width: 100%;
  max-width: 460px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__blob svg {
  position: absolute;
  inset: -40px;
  animation: blobFloat 8s ease-in-out infinite;
}

@keyframes blobFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-12px) rotate(2deg); }
  66% { transform: translateY(8px) rotate(-1deg); }
}

.hero__phone {
  position: relative;
  width: 220px;
  height: 420px;
  background: var(--gray-900);
  border-radius: 36px;
  padding: 12px;
  box-shadow: var(--shadow-xl), 0 0 0 2px rgba(255,255,255,0.1);
  z-index: 1;
}

.hero__phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, var(--cyan-600) 0%, var(--blue-600) 100%);
  border-radius: 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

.hero__phone-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 16px;
}

.hero__phone-dots {
  display: flex;
  gap: 8px;
}

.hero__phone-dots span {
  width: 10px;
  height: 10px;
  background: rgba(255,255,255,0.3);
  border-radius: 50%;
}

.hero__phone-dots span:first-child {
  background: var(--yellow-400);
}

.hero__phone-lines {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 80%;
}

.hero__phone-lines span {
  height: 8px;
  background: rgba(255,255,255,0.12);
  border-radius: 4px;
}

.hero__phone-lines span:nth-child(1) { width: 100%; }
.hero__phone-lines span:nth-child(2) { width: 75%; }
.hero__phone-lines span:nth-child(3) { width: 85%; }
.hero__phone-lines span:nth-child(4) { width: 60%; }

/* ============================================
   SERVICES
   ============================================ */

.services {
  padding: 100px 0;
  background: var(--white);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 28px 16px;
  background: var(--white);
  border: 2px solid var(--gray-100);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  text-align: center;
}

.service-card:hover {
  border-color: var(--cyan-500);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cyan-50);
  border-radius: var(--radius-md);
  color: var(--cyan-600);
  transition: all var(--transition);
}

.service-card:hover .service-card__icon {
  background: var(--cyan-600);
  color: var(--white);
}

.service-card__icon svg {
  width: 32px;
  height: 32px;
}

.service-card__label {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
  line-height: 1.3;
}

/* ============================================
   FEATURES
   ============================================ */

.features {
  padding: 100px 0;
  background: var(--gray-50);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition);
  border: 1px solid var(--gray-100);
}

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

.feature-card__icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  margin: 0 auto 20px;
}

.feature-card__icon svg {
  width: 32px;
  height: 32px;
}

.feature-card__icon--star {
  background: var(--yellow-100);
  color: var(--star-gold);
}

.feature-card__icon--clock {
  background: var(--cyan-100);
  color: var(--cyan-600);
}

.feature-card__icon--quality {
  background: #dcfce7;
  color: var(--green-500);
}

.feature-card__icon--app {
  background: var(--blue-100);
  color: var(--blue-600);
}

.feature-card__title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}

.feature-card__text {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials {
  padding: 100px 0;
  background: var(--white);
  overflow: hidden;
}

.testimonials__track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  flex: 0 0 100%;
  max-width: 100%;
  background: var(--white);
  border: 2px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 36px 40px;
  transition: all var(--transition);
}

.testimonial-card__stars {
  display: flex;
  gap: 4px;
  color: var(--star-gold);
  margin-bottom: 20px;
}

.testimonial-card__text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-700);
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-card__author {
  font-weight: 700;
  font-size: 15px;
  color: var(--blue-600);
}

.testimonials__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.testimonials__btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 2px solid var(--gray-200, #e5e7eb);
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--transition);
  color: var(--gray-700);
}

.testimonials__btn:hover {
  background: var(--blue-600);
  border-color: var(--blue-600);
  color: var(--white);
}

.testimonials__dots {
  display: flex;
  gap: 8px;
}

.testimonials__dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-300);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}

.testimonials__dots .dot.active {
  background: var(--blue-600);
  width: 28px;
  border-radius: 5px;
}

/* ============================================
   PROMISE
   ============================================ */

.promise {
  padding: 80px 0;
  background: var(--cyan-600);
  color: var(--white);
}

.promise__inner {
  display: flex;
  align-items: center;
  gap: 40px;
}

.promise__icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  color: var(--white);
}

.promise__icon svg {
  width: 48px;
  height: 48px;
}

.promise__title {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.2;
}

.promise__text {
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.9;
}

/* ============================================
   DOWNLOAD CTA
   ============================================ */

.download {
  padding: 100px 0;
  background: var(--gray-50);
}

.download__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.download__title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}

.download__text {
  font-size: 17px;
  color: var(--gray-500);
  margin-bottom: 32px;
  line-height: 1.7;
}

.download__badges {
  display: flex;
  gap: 16px;
}

.download__phone {
  display: flex;
  justify-content: center;
}

.download__phone-frame {
  width: 260px;
  height: 500px;
  background: var(--gray-900);
  border-radius: 44px;
  padding: 14px;
  box-shadow: var(--shadow-xl);
}

.download__phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, var(--cyan-600) 0%, var(--blue-600) 100%);
  border-radius: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 32px;
}

.download__phone-logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
  border-radius: 20px;
}

.download__phone-ui {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 80%;
}

.download__phone-ui span {
  height: 10px;
  background: rgba(255,255,255,0.12);
  border-radius: 5px;
}

.download__phone-ui span:nth-child(1) { width: 100%; }
.download__phone-ui span:nth-child(2) { width: 70%; }
.download__phone-ui span:nth-child(3) { width: 85%; }

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--gray-900);
  color: var(--gray-300);
  padding: 64px 0 32px;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__heading {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.footer__links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
}

.footer__links-grid a,
.footer__links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--gray-500);
  transition: color var(--transition);
  line-height: 2;
}

.footer__links-grid a:hover,
.footer__links a:hover {
  color: var(--cyan-500);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
}

.footer__legal {
  display: flex;
  gap: 24px;
}

.footer__legal a {
  font-size: 13px;
  color: var(--gray-500);
}

.footer__legal a:hover {
  color: var(--white);
}

.footer__copy {
  font-size: 13px;
  color: var(--gray-500);
}

/* ============================================
   COMING SOON MODAL
   ============================================ */

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  max-width: 440px;
  width: 90%;
  text-align: center;
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: var(--shadow-xl);
}

.modal-overlay.active .modal-card {
  transform: scale(1) translateY(0);
}

.modal-card__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gray-100);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--gray-500);
  transition: all var(--transition);
}

.modal-card__close:hover {
  background: var(--gray-900);
  color: var(--white);
}

.modal-card__logo {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  border-radius: 16px;
  object-fit: contain;
}

.modal-card__title {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 12px;
  background: linear-gradient(135deg, var(--blue-600), var(--cyan-600));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.modal-card__text {
  font-size: 15px;
  color: var(--gray-500);
  margin-bottom: 28px;
  line-height: 1.6;
}

.modal-card__email {
  display: flex;
  gap: 8px;
}

.modal-card__input {
  flex: 1;
  padding: 12px 16px;
  border: 2px solid var(--gray-100);
  border-radius: var(--radius-full);
  font-size: 14px;
  font-family: var(--font);
  outline: none;
  transition: border-color var(--transition);
}

.modal-card__input:focus {
  border-color: var(--blue-500);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .hero__title {
    font-size: 40px;
  }

  .services__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer__col--services {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .header__nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px 24px;
    gap: 16px;
    border-bottom: 1px solid var(--gray-100);
    box-shadow: var(--shadow-lg);
  }

  .header__nav.active {
    display: flex;
  }

  .header__burger {
    display: flex;
  }

  .header__actions .btn--outline,
  .header__actions .btn--primary:not(.header__burger) {
    display: none;
  }

  .header__actions .btn {
    display: none;
  }

  .header__burger {
    display: flex;
  }

  .topbar {
    font-size: 11px;
  }

  .topbar__inner {
    gap: 12px;
  }

  .hero {
    padding: 140px 0 60px;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero__title {
    font-size: 32px;
  }

  .hero__search {
    flex-direction: column;
    border-radius: var(--radius-lg);
    padding: 12px;
    gap: 8px;
  }

  .hero__search-icon {
    display: none;
  }

  .hero__input {
    width: 100%;
    text-align: center;
  }

  .hero__search-btn {
    width: 100%;
    justify-content: center;
  }

  .hero__apps {
    justify-content: center;
  }

  .hero__illustration {
    order: -1;
  }

  .hero__phone {
    width: 180px;
    height: 340px;
  }

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

  .section__title {
    font-size: 28px;
  }

  .features__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .testimonial-card {
    padding: 28px 24px;
  }

  .promise__inner {
    flex-direction: column;
    text-align: center;
  }

  .promise__title {
    font-size: 22px;
  }

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

  .download__title {
    font-size: 28px;
  }

  .download__badges {
    justify-content: center;
    flex-wrap: wrap;
  }

  .download__phone {
    order: -1;
  }

  .download__phone-frame {
    width: 200px;
    height: 380px;
    border-radius: 36px;
  }

  .download__phone-screen {
    border-radius: 26px;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__col--services {
    grid-column: span 1;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer__legal {
    flex-wrap: wrap;
    justify-content: center;
  }

  .modal-card {
    padding: 32px 24px;
  }

  .modal-card__email {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 26px;
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card {
    padding: 20px 12px;
  }

  .app-badge--lg {
    padding: 12px 20px;
  }
}

/* ============================================
   ANIMATIONS
   ============================================ */

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

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
