/* Landing Page Styles - MeetPe Wishlist */

/* CSS Variables */
:root {
  /* Primary Colors */
  --primary-500: #5A00F6;
  --primary-600: #4d00d4;
  --primary-700: #4000b0;
  --primary-400: #7a33ff;
  --primary-300: #9a66ff;
  --primary-200: #c4a3ff;
  --primary-100: #e2d1ff;
  --primary-50: #f5f0ff;

  /* Secondary/Dark Colors */
  --secondary-900: #0d0d1a;
  --secondary-800: #1a1a2e;
  --secondary-700: #25254a;
  --secondary-600: #2d2d66;
  --secondary-500: #3d3d82;

  /* Neutrals */
  --gray-50: #fafafa;
  --gray-100: #f5f5f5;
  --gray-200: #e5e5e5;
  --gray-300: #d4d4d4;
  --gray-400: #a3a3a3;
  --gray-500: #737373;
  --gray-600: #525252;
  --gray-700: #404040;
  --gray-800: #262626;
  --gray-900: #171717;

  --white: #ffffff;
  --black: #000000;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #5A00F6 0%, #00DDFF 100%);
  --gradient-light: linear-gradient(135deg, #e2d1ff 0%, #b8f4ff 100%);
  --gradient-radial: radial-gradient(circle at 30% 20%, rgba(90, 0, 246, 0.15) 0%, transparent 50%);

  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Spacing */
  --section-padding: 6rem;
  --container-max: 1200px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(18, 0, 51, 0.05);
  --shadow-md: 0 4px 6px rgba(18, 0, 51, 0.07), 0 2px 4px rgba(18, 0, 51, 0.06);
  --shadow-lg: 0 10px 15px rgba(18, 0, 51, 0.1), 0 4px 6px rgba(18, 0, 51, 0.05);
  --shadow-xl: 0 20px 25px rgba(18, 0, 51, 0.1), 0 8px 10px rgba(18, 0, 51, 0.04);
  --shadow-2xl: 0 25px 50px rgba(18, 0, 51, 0.15);

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 200ms ease;
  --transition-slow: 300ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

/* Container */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ========================================
   NAVIGATION
======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all var(--transition-slow);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md);
  padding: 0.75rem 0;
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 32px;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: color var(--transition-fast);
}

.nav-links a:hover {
  color: var(--primary-600);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.625rem 1.25rem;
  background: var(--gradient-primary);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ========================================
   HERO SECTION
======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 6rem;
  overflow: hidden;
}

.hero-bg-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-radial);
  pointer-events: none;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(circle, rgba(90, 0, 246, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 560px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--primary-50);
  color: var(--primary-600);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
  border: 1px solid var(--primary-100);
}

.badge-icon {
  font-size: 1rem;
}

.hero-title {
  font-size: 3.75rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--secondary-900);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

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

.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 2rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-base);
  border: none;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: var(--shadow-lg), 0 4px 14px rgba(90, 0, 246, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl), 0 6px 20px rgba(90, 0, 246, 0.5);
}

.btn-secondary {
  background: var(--white);
  color: var(--gray-700);
  border: 2px solid var(--gray-200);
}

.btn-secondary:hover {
  border-color: var(--primary-300);
  color: var(--primary-600);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.stat {
  text-align: left;
}

.stat-number {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--secondary-900);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--gray-500);
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--gray-200);
}

/* Hero Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-mockup {
  position: relative;
  width: 400px;
  height: 450px;
}

.mockup-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 1rem;
  transition: transform var(--transition-slow);
}

.mockup-card.card-1 {
  width: 180px;
  top: 0;
  left: 0;
  transform: rotate(-5deg);
  animation: float1 6s ease-in-out infinite;
}

.mockup-card.card-2 {
  width: 200px;
  top: 60px;
  right: 0;
  transform: rotate(3deg);
  animation: float2 5s ease-in-out infinite;
  z-index: 2;
}

.mockup-card.card-3 {
  width: 180px;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  animation: float3 7s ease-in-out infinite;
}

.mockup-image {
  width: 100%;
  height: 100px;
  background: var(--gradient-light);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
}

.mockup-text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mockup-title {
  height: 12px;
  width: 80%;
  background: var(--gray-200);
  border-radius: var(--radius-full);
}

.mockup-price {
  height: 10px;
  width: 50%;
  background: var(--primary-200);
  border-radius: var(--radius-full);
}

.mockup-heart {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: var(--shadow-2xl);
  z-index: 10;
  animation: pulse 2s ease-in-out infinite;
}

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

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

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

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

/* ========================================
   TRUST SECTION
======================================== */
.trust-section {
  padding: 3rem 0;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}

.trust-label {
  text-align: center;
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-300);
  letter-spacing: -0.01em;
}

/* ========================================
   SECTION COMMON STYLES
======================================== */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: var(--primary-50);
  color: var(--primary-600);
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--secondary-900);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ========================================
   FEATURES SECTION
======================================== */
.features-section {
  padding: var(--section-padding) 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-100);
  transition: all var(--transition-slow);
  opacity: 0;
  transform: translateY(20px);
}

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

.feature-card:hover {
  border-color: var(--primary-200);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--gradient-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-600);
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary-900);
  margin-bottom: 0.75rem;
}

.feature-card p {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ========================================
   HOW IT WORKS SECTION
======================================== */
.how-section {
  padding: var(--section-padding) 0;
  background: var(--gray-50);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.step-card {
  position: relative;
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition-slow);
}

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

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

.step-number {
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.step-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary-900);
  margin-bottom: 0.75rem;
}

.step-content p {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.step-visual {
  display: flex;
  justify-content: center;
}

.step-mockup {
  width: 120px;
  height: 100px;
  background: var(--primary-50);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.profile-avatar-mock {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 50%;
}

.profile-lines {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  align-items: center;
}

.line {
  height: 8px;
  background: var(--primary-200);
  border-radius: var(--radius-full);
}

.line-1 { width: 60px; }
.line-2 { width: 40px; }

.add-mockup {
  flex-direction: row;
  gap: 0.75rem;
}

.add-icon-mock {
  width: 36px;
  height: 36px;
  background: var(--gradient-primary);
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.item-cards-mock {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.item-mock {
  width: 50px;
  height: 30px;
  background: var(--primary-200);
  border-radius: var(--radius-sm);
}

.share-mockup {
  flex-direction: column;
}

.share-icon-mock {
  color: var(--primary-500);
  margin-bottom: 0.5rem;
}

.share-lines-mock {
  display: flex;
  gap: 0.5rem;
}

.share-line {
  width: 24px;
  height: 24px;
  background: var(--primary-200);
  border-radius: 50%;
}

/* ========================================
   USE CASES SECTION
======================================== */
.usecases-section {
  padding: var(--section-padding) 0;
}

.usecases-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
}

.usecase-card {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  transition: all var(--transition-slow);
  opacity: 0;
  transform: translateY(20px);
}

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

.usecase-card:hover {
  border-color: var(--primary-200);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.usecase-emoji {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.usecase-card h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--secondary-900);
  margin-bottom: 0.375rem;
}

.usecase-card p {
  font-size: 0.8125rem;
  color: var(--gray-500);
}

/* ========================================
   TESTIMONIALS SECTION
======================================== */
.testimonials-section {
  padding: var(--section-padding) 0;
  background: var(--gray-50);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition-slow);
}

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

.testimonial-card.featured {
  background: var(--gradient-primary);
  color: var(--white);
}

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

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
  color: #fbbf24;
}

.testimonial-card.featured .testimonial-stars {
  color: #fef3c7;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.testimonial-card.featured .testimonial-text {
  color: rgba(255, 255, 255, 0.9);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  background: var(--gradient-light);
  color: var(--primary-600);
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-card.featured .author-avatar {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: 600;
  font-size: 0.9375rem;
}

.author-title {
  font-size: 0.8125rem;
  color: var(--gray-500);
}

.testimonial-card.featured .author-title {
  color: rgba(255, 255, 255, 0.7);
}

/* ========================================
   CTA SECTION
======================================== */
.cta-section {
  padding: var(--section-padding) 0;
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

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

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-content > p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .btn-primary {
  background: var(--white);
  color: var(--primary-600);
  box-shadow: var(--shadow-xl);
}

.cta-section .btn-primary:hover {
  background: var(--gray-50);
}

.cta-note {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ========================================
   FOOTER
======================================== */
.footer {
  padding: 4rem 0 2rem;
  background: var(--secondary-900);
  color: var(--white);
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-brand img {
  height: 28px;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9375rem;
  max-width: 280px;
}

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

.footer-column h4 {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-column a {
  display: block;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.625rem;
  transition: color var(--transition-fast);
}

.footer-column a:hover {
  color: var(--primary-300);
}

.footer-bottom {
  padding-top: 2rem;
  text-align: center;
}

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

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

  .hero-content {
    max-width: 100%;
  }

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

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

  .hero-visual {
    display: none;
  }

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

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

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

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 4rem;
  }

  .nav-links {
    display: none;
  }

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

  .hero-subtitle {
    font-size: 1.125rem;
  }

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

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .stat-divider {
    display: none;
  }

  .stat {
    text-align: center;
  }

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

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

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

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

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

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

  .cta-content h2 {
    font-size: 1.75rem;
  }
}

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

  .btn {
    width: 100%;
  }

  .trust-logos {
    gap: 1.5rem;
  }

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

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

/* Animation delays for staggered animations */
.feature-card:nth-child(1) { transition-delay: 0ms; }
.feature-card:nth-child(2) { transition-delay: 100ms; }
.feature-card:nth-child(3) { transition-delay: 200ms; }
.feature-card:nth-child(4) { transition-delay: 300ms; }
.feature-card:nth-child(5) { transition-delay: 400ms; }
.feature-card:nth-child(6) { transition-delay: 500ms; }

.step-card:nth-child(1) { transition-delay: 0ms; }
.step-card:nth-child(2) { transition-delay: 150ms; }
.step-card:nth-child(3) { transition-delay: 300ms; }

.testimonial-card:nth-child(1) { transition-delay: 0ms; }
.testimonial-card:nth-child(2) { transition-delay: 150ms; }
.testimonial-card:nth-child(3) { transition-delay: 300ms; }

.usecase-card:nth-child(1) { transition-delay: 0ms; }
.usecase-card:nth-child(2) { transition-delay: 50ms; }
.usecase-card:nth-child(3) { transition-delay: 100ms; }
.usecase-card:nth-child(4) { transition-delay: 150ms; }
.usecase-card:nth-child(5) { transition-delay: 200ms; }
.usecase-card:nth-child(6) { transition-delay: 250ms; }
