/* ===== LANDING PRO — CLEAN, SELLING DESIGN ===== */

/* ---- Typography ---- */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   NAVBAR LIGHT
   ============================================ */

.navbar-light {
  background: #ffffff;
  border-bottom: 1px solid #f3f4f6;
  padding: 0.75rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-light .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-light .navbar-brand a {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.brand-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #4f46e5;
  border-radius: 50%;
  vertical-align: middle;
}

.navbar-light .navbar-menu {
  display: flex;
  gap: 0.25rem;
  align-items: center;
}

.nav-light {
  color: #6b7280;
  text-decoration: none;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.15s;
}

.nav-light:hover {
  color: #111827;
  background: #f9fafb;
}

.nav-login {
  color: #374151;
}

.btn-primary-sm {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 1rem;
  background: #f9fafb;
  color: #374151;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.15s;
  margin-left: 0.25rem;
}

.btn-primary-sm:hover {
  background: #f3f4f6;
  border-color: #9ca3af;
  color: #111827;
}

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

.hero-pro {
  padding: 6rem 0 5rem;
  background: #ffffff;
  overflow: hidden;
  position: relative;
}

/* Animated background blobs */
.hero-pro::before,
.hero-pro::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  animation: blobFloat 20s ease-in-out infinite;
  pointer-events: none;
}

.hero-pro::before {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.15) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  animation-delay: 0s;
}

.hero-pro::after {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
  bottom: -150px;
  left: -100px;
  animation-delay: -7s;
}

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -40px) scale(1.1); }
  50% { transform: translate(-20px, 20px) scale(0.95); }
  75% { transform: translate(15px, 30px) scale(1.05); }
}

.hero-pro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Badge */
.hero-badge-light {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 2rem;
  color: #166534;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero-badge-pulse {
  width: 6px;
  height: 6px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

/* H1 */
.hero-h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #111827;
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin: 0 0 1.25rem;
}

.hero-gradient-text {
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Subtitle */
.hero-sub {
  font-size: 1.125rem;
  color: #6b7280;
  line-height: 1.65;
  margin: 0 0 2rem;
  max-width: 520px;
}

/* Buttons */
.hero-btns {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.85rem 1.75rem;
  background: #4f46e5;
  color: white;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.15s;
  box-shadow: 0 1px 3px rgba(79, 70, 229, 0.3);
}

.btn-hero:hover {
  background: #4338ca;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.35);
}

.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  padding: 0.85rem 1.5rem;
  color: #374151;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  transition: all 0.15s;
}

.btn-hero-ghost:hover {
  background: #f9fafb;
  border-color: #d1d5db;
  color: #111827;
}

/* Micro text */
.hero-micro {
  font-size: 0.82rem;
  color: #9ca3af;
  display: flex;
  align-items: center;
  gap: 0;
  margin: 0;
}

.hero-micro i {
  color: #22c55e;
  margin-right: 0.15rem;
}

/* ---- Demo Card (Right side visual) ---- */
.hero-pro-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-demo-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.03);
  width: 100%;
  max-width: 440px;
  overflow: hidden;
  animation: float 6s ease-in-out infinite;
}

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

.hero-demo-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: #f9fafb;
  border-bottom: 1px solid #f3f4f6;
}

.hero-demo-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.hero-demo-dot.red { background: #f87171; }
.hero-demo-dot.yellow { background: #fbbf24; }
.hero-demo-dot.green { background: #34d399; }

.hero-demo-url {
  flex: 1;
  text-align: center;
  font-size: 0.75rem;
  color: #9ca3af;
  font-weight: 500;
  background: #ffffff;
  padding: 4px 12px;
  border-radius: 6px;
  border: 1px solid #f3f4f6;
  margin-left: 8px;
}

.hero-demo-body {
  padding: 2rem 1.5rem;
}

.demo-line {
  height: 12px;
  background: #f3f4f6;
  border-radius: 6px;
  margin-bottom: 0.75rem;
  animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.demo-line-title {
  height: 20px;
  width: 70%;
  background: #e5e7eb;
  margin-bottom: 1rem;
}

.demo-line-sub {
  width: 90%;
}

.demo-line-sub.short {
  width: 55%;
}

.demo-btn-preview {
  height: 40px;
  width: 120px;
  background: #4f46e5;
  border-radius: 8px;
  margin: 1.5rem 0;
  opacity: 0.9;
}

.demo-blocks {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.demo-block {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  color: #6b7280;
  font-size: 1.15rem;
  transition: all 0.2s;
  cursor: pointer;
}

.demo-block:hover {
  background: #eef2ff;
  border-color: #c7d2fe;
  color: #4f46e5;
}

/* ============================================
   SOCIAL PROOF
   ============================================ */

.social-proof {
  padding: 3rem 0;
  background: #f9fafb;
  border-top: 1px solid #f3f4f6;
  border-bottom: 1px solid #f3f4f6;
  text-align: center;
}

.social-proof-text {
  font-size: 0.82rem;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
  margin-bottom: 1.25rem;
}

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

.social-logo {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #9ca3af;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.15s;
}

.social-logo:hover {
  color: #6b7280;
}

.social-logo i {
  font-size: 1.15rem;
}

/* ============================================
   SECTION HEADERS (shared)
   ============================================ */

.section-header-light {
  text-align: center;
  margin-bottom: 3.5rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.section-label-light {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  color: #4f46e5;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.section-title-light {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #111827;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.section-desc-light {
  font-size: 1.05rem;
  color: #6b7280;
  line-height: 1.6;
}

/* ============================================
   COMPARISON (Enemies)
   ============================================ */

.comparison-section {
  padding: 6rem 0;
  background: #ffffff;
}

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

.comparison-card {
  background: #f9fafb;
  border: 1px solid #f3f4f6;
  border-radius: 12px;
  padding: 2rem;
  position: relative;
  transition: all 0.2s;
}

.comparison-card:hover {
  border-color: #e5e7eb;
}

.comparison-highlight {
  background: #ffffff;
  border: 2px solid #4f46e5;
  box-shadow: 0 8px 30px rgba(79, 70, 229, 0.12);
}

.comparison-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #4f46e5;
  color: white;
  padding: 0.25rem 0.85rem;
  border-radius: 2rem;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.comparison-icon-wrap {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-bottom: 1.25rem;
  font-size: 1.25rem;
}

.comparison-icon-wrap.gray {
  background: #f3f4f6;
  color: #9ca3af;
}

.comparison-icon-wrap.accent {
  background: #eef2ff;
  color: #4f46e5;
}

.comparison-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.25rem;
}

.comparison-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.comparison-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.4;
}

.comparison-list li i {
  flex-shrink: 0;
  font-size: 1.1rem;
}

.comparison-list li .ri-close-line {
  color: #ef4444;
}

.comparison-list li .ri-check-line {
  color: #22c55e;
}

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

.features-pro {
  padding: 6rem 0;
  background: #f9fafb;
}

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

.feature-pro-card {
  background: #ffffff;
  border: 1px solid #f3f4f6;
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.2s;
}

.feature-pro-card:hover {
  border-color: #e5e7eb;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transform: translateY(-2px);
}

.feature-pro-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eef2ff;
  border-radius: 10px;
  color: #4f46e5;
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
}

.feature-pro-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.5rem;
}

.feature-pro-card p {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.55;
  margin: 0;
}

/* ============================================
   PRICING
   ============================================ */

.pricing-pro {
  padding: 6rem 0;
  background: #ffffff;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 960px;
  margin: 0 auto;
}

.pricing-card {
  background: #ffffff;
  border: 1px solid #f3f4f6;
  border-radius: 12px;
  padding: 2rem;
  position: relative;
  transition: all 0.2s;
}

.pricing-card:hover {
  border-color: #e5e7eb;
}

.pricing-popular {
  border: 2px solid #4f46e5;
  box-shadow: 0 8px 30px rgba(79, 70, 229, 0.12);
}

.pricing-popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #4f46e5;
  color: white;
  padding: 0.25rem 0.85rem;
  border-radius: 2rem;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pricing-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #f3f4f6;
}

.pricing-header h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-size: 1.75rem;
  font-weight: 800;
  color: #111827;
}

.pricing-popular .pricing-price {
  color: #4f46e5;
}

.pricing-period {
  font-size: 0.85rem;
  font-weight: 400;
  color: #9ca3af;
}

.pricing-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.pricing-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0;
  font-size: 0.875rem;
  color: #4b5563;
}

.pricing-list li i {
  color: #22c55e;
  font-size: 1rem;
}

.pricing-list li strong {
  color: #111827;
}

.btn-pricing {
  display: block;
  text-align: center;
  padding: 0.75rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.15s;
}

.btn-pricing-ghost {
  background: #f9fafb;
  color: #374151;
  border: 1px solid #e5e7eb;
}

.btn-pricing-ghost:hover {
  background: #f3f4f6;
  border-color: #d1d5db;
}

.btn-pricing-primary {
  background: #4f46e5;
  color: white;
  border: 1px solid #4f46e5;
  box-shadow: 0 1px 3px rgba(79, 70, 229, 0.3);
}

.btn-pricing-primary:hover {
  background: #4338ca;
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.35);
}

/* ============================================
   FINAL CTA
   ============================================ */

.final-cta {
  padding: 6rem 0;
  background: #f9fafb;
}

.final-cta-card {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  padding: 3.5rem 2.5rem;
  background: #ffffff;
  border: 1px solid #f3f4f6;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.final-cta-card h2 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 800;
  color: #111827;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.final-cta-card p {
  font-size: 1rem;
  color: #6b7280;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.btn-cta-final {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.9rem 2rem;
  background: #f9fafb;
  color: #374151;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.15s;
}

.btn-cta-final:hover {
  background: #f3f4f6;
  border-color: #9ca3af;
  color: #111827;
  transform: translateY(-1px);
}

.final-cta-micro {
  font-size: 0.8rem;
  color: #9ca3af;
  margin-top: 1rem;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.final-cta-micro i {
  color: #22c55e;
  margin-right: 0.15rem;
}

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

.footer-pro {
  background: #ffffff;
  border-top: 1px solid #f3f4f6;
  padding: 3rem 0 2rem;
}

.footer-pro-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #f3f4f6;
}

.footer-pro-brand a {
  font-size: 1.15rem;
  font-weight: 700;
  color: #111827;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.footer-pro-brand p {
  margin-top: 0.4rem;
  font-size: 0.85rem;
  color: #9ca3af;
}

.footer-pro-links {
  display: flex;
  gap: 3rem;
}

.footer-pro-col h4 {
  font-size: 0.75rem;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.65rem;
}

.footer-pro-col a {
  display: block;
  color: #9ca3af;
  text-decoration: none;
  font-size: 0.85rem;
  padding: 0.2rem 0;
  transition: color 0.15s;
}

.footer-pro-col a:hover {
  color: #4f46e5;
}

.footer-pro-bottom {
  text-align: center;
  font-size: 0.8rem;
  color: #d1d5db;
}

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

@media (max-width: 900px) {
  .hero-pro-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-pro-text {
    text-align: center;
  }

  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

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

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

  .comparison-grid,
  .features-pro-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .hero-pro {
    padding: 4rem 0 3rem;
  }

  .hero-h1 {
    font-size: 2rem;
  }

  .navbar-light .navbar-menu {
    gap: 0.15rem;
  }

  .nav-light {
    padding: 0.4rem 0.5rem;
    font-size: 0.8rem;
  }

  .social-logos {
    gap: 1.5rem;
  }

  .footer-pro-top {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-pro-links {
    gap: 2rem;
  }

  .final-cta-card {
    padding: 2.5rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-btns {
    flex-direction: column;
    align-items: center;
  }

  .btn-hero, .btn-hero-ghost {
    width: 100%;
    justify-content: center;
  }

  .hero-demo-card {
    max-width: 100%;
  }

  .social-logos {
    flex-direction: column;
    gap: 0.75rem;
  }
}

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

/* Scroll reveal — all sections */
.social-proof,
.comparison-section,
.features-pro,
.pricing-pro,
.final-cta {
  opacity: 0;
  transform: translateY(30px);
  animation: revealUp 0.7s ease-out forwards;
}

.social-proof { animation-delay: 0.1s; }
.comparison-section { animation-delay: 0.15s; }
.features-pro { animation-delay: 0.2s; }
.pricing-pro { animation-delay: 0.25s; }
.final-cta { animation-delay: 0.3s; }

@keyframes revealUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero elements stagger animation */
.hero-badge-light {
  opacity: 0;
  animation: fadeInDown 0.6s ease-out 0.1s forwards;
}

.hero-h1 {
  opacity: 0;
  animation: fadeInDown 0.6s ease-out 0.2s forwards;
}

.hero-sub {
  opacity: 0;
  animation: fadeInDown 0.6s ease-out 0.3s forwards;
}

.hero-btns {
  opacity: 0;
  animation: fadeInUp 0.6s ease-out 0.4s forwards;
}

.hero-micro {
  opacity: 0;
  animation: fadeInUp 0.6s ease-out 0.5s forwards;
}

.hero-pro-visual {
  opacity: 0;
  animation: fadeInRight 0.8s ease-out 0.3s forwards;
}

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

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

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

/* Feature cards stagger on hover */
.feature-pro-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-pro-card:nth-child(1) { animation-delay: 0.05s; }
.feature-pro-card:nth-child(2) { animation-delay: 0.1s; }
.feature-pro-card:nth-child(3) { animation-delay: 0.15s; }
.feature-pro-card:nth-child(4) { animation-delay: 0.2s; }
.feature-pro-card:nth-child(5) { animation-delay: 0.25s; }
.feature-pro-card:nth-child(6) { animation-delay: 0.3s; }

.feature-pro-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.feature-pro-card:hover .feature-pro-icon {
  transform: scale(1.1);
  background: #e0e7ff;
}

.feature-pro-icon {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Comparison cards */
.comparison-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.comparison-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.comparison-highlight {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.comparison-highlight:hover {
  box-shadow: 0 12px 32px rgba(79, 70, 229, 0.15);
}

/* Step cards */
.step-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.step-card:hover .step-number {
  transform: scale(1.05);
}

.step-number {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Pricing cards */
.pricing-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-card:hover {
  transform: translateY(-4px);
}

.pricing-popular {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-popular:hover {
  box-shadow: 0 16px 40px rgba(79, 70, 229, 0.18);
}

/* Social logos */
.social-logo {
  transition: all 0.2s ease;
}

.social-logo:hover {
  transform: translateY(-2px);
  color: #4f46e5;
}

/* CTA card */
.final-cta-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.final-cta-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

/* Demo card floating */
.hero-demo-card {
  animation: floatCard 6s ease-in-out infinite, fadeInRight 0.8s ease-out 0.3s both;
}

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

/* Navbar subtle animation */
.navbar-light {
  animation: slideDown 0.5s ease-out;
}

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

/* Social proof logos */
.social-logos .social-logo {
  opacity: 0;
  animation: fadeInScale 0.5s ease-out forwards;
}

.social-logos .social-logo:nth-child(1) { animation-delay: 0.3s; }
.social-logos .social-logo:nth-child(2) { animation-delay: 0.35s; }
.social-logos .social-logo:nth-child(3) { animation-delay: 0.4s; }
.social-logos .social-logo:nth-child(4) { animation-delay: 0.45s; }
.social-logos .social-logo:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
