/* =========================
   HOME PAGE
========================= */

.hero {
  min-height: calc(100vh - 100px);
  padding: 70px 64px 40px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.hero-left {
  flex: 1;
}

.hero-badge {
  width: fit-content;

  padding: 12px 22px;

  border-radius: 999px;

  background: rgba(123,44,255,0.12);
  border: 1px solid rgba(123,44,255,0.28);

  color: #c084fc;

  margin-bottom: 34px;

  font-size: 15px;
}

.hero-left h1 {
  max-width: 720px;

  font-size: 74px;
  line-height: 1.08;

  font-weight: 850;

  margin-bottom: 30px;

  letter-spacing: -2px;
}

.hero-left h1 span {
  background: var(--gradient);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-left p {
  max-width: 710px;

  color: var(--text-secondary);

  font-size: 22px;
  line-height: 1.8;

  margin-bottom: 42px;
}

.hero-buttons {
  display: flex;
  gap: 18px;
}

.primary-btn,
.secondary-btn {
  padding: 18px 30px;

  border-radius: 16px;

  text-decoration: none;

  display: flex;
  align-items: center;
  gap: 12px;

  font-weight: 700;

  transition: 0.35s;
}

.primary-btn {
  background: var(--gradient);
  color: white;

  box-shadow: 0 12px 40px rgba(123,44,255,0.35);
}

.secondary-btn {
  color: white;

  border: 1px solid rgba(255,255,255,0.09);

  background: rgba(255,255,255,0.02);
}

.primary-btn:hover,
.secondary-btn:hover {
  transform: translateY(-5px);
}

/* ========================================
   LOGO HEADER
======================================== */

.logo {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.logo-image {
  width: 72px;
  height: 72px;
  object-fit: contain;
  display: block;

  margin-right: -6px;
}

.logo span {
  color: #ffffff !important;
  font-size: 34px;
  font-weight: 850;
  letter-spacing: -1px;
  line-height: 1;
}

.logo:hover .logo-image {
  transform: scale(1.05);
}

/* ========================================
   LOGO FOOTER
======================================== */

.footer-logo {
  display: flex;
  align-items: center;
}

.footer-logo-image {
  width: 260px;
  height: auto;
  object-fit: contain;

  opacity: 1 !important;
  filter: none !important;
  mix-blend-mode: normal !important;

  display: block;

  transition: 0.35s;
}

.footer-logo-image:hover {
  transform: scale(1.03);
}

/* MOCKUP */

.hero-right {
  flex: 1;

  display: flex;
  justify-content: center;
}

.mockup-container {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-mockup {
  width: 100%;
  max-width: 820px;

  object-fit: contain;

  filter:
    drop-shadow(0 0 80px rgba(123,44,255,0.18))
    drop-shadow(0 0 120px rgba(79,70,229,0.12));

  animation: floatMockup 5s ease-in-out infinite;
}

@keyframes floatMockup {

  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-14px);
  }

  100% {
    transform: translateY(0px);
  }

}

/* STATS */

.stats-section {
  width: calc(100% - 128px);

  margin: 20px auto 65px;

  display: grid;
  grid-template-columns: repeat(4, 1fr);

  gap: 22px;
}

.stat-card {
  background: var(--card);

  border: 1px solid var(--border);

  border-radius: 24px;

  padding: 32px;

  display: flex;
  align-items: center;
  gap: 22px;

  backdrop-filter: blur(20px);

  transition: 0.35s;
}

.stat-card:hover {
  transform: translateY(-8px);

  border-color: rgba(123,44,255,0.35);

  box-shadow: 0 18px 60px rgba(123,44,255,0.14);
}

.stat-icon {
  width: 70px;
  height: 70px;

  border-radius: 20px;

  background: rgba(123,44,255,0.14);

  display: flex;
  align-items: center;
  justify-content: center;

  color: #a855f7;

  font-size: 28px;

  flex-shrink: 0;
}

.stat-card h3 {
  font-size: 36px;

  color: #a855f7;

  margin-bottom: 8px;
}

.stat-card p {
  color: var(--text-secondary);

  font-size: 17px;
}

/* PARTNERS */

.partners {
  width: calc(100% - 128px);

  margin: 0 auto 75px;

  padding: 42px 20px;

  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);

  text-align: center;
}

.partners p {
  color: var(--text-secondary);

  font-size: 18px;

  margin-bottom: 35px;
}

.partners-logos {
  display: flex;
  justify-content: center;
  align-items: center;

  gap: 65px;

  flex-wrap: wrap;
}

.partners-logos span {
  color: rgba(255,255,255,0.62);

  font-size: 32px;
  font-weight: 800;

  display: flex;
  align-items: center;
  gap: 12px;

  transition: 0.35s;
}

.partners-logos span:hover {
  color: white;

  transform: translateY(-5px) scale(1.05);
}

/* RESPONSIVE */

@media (max-width: 1100px) {

  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-left {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .stats-section {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 800px) {

  .hero {
    padding: 55px 24px 30px;
  }

  .hero-left h1 {
    font-size: 46px;
  }

  .hero-left p {
    font-size: 18px;
  }

  .hero-buttons {
    width: 100%;
    flex-direction: column;
  }

  .primary-btn,
  .secondary-btn {
    justify-content: center;
  }

  .stats-section {
    width: calc(100% - 48px);

    grid-template-columns: 1fr;
  }

  .partners {
    width: calc(100% - 48px);
  }

  .partners-logos span {
    font-size: 24px;
  }

  .logo-image {
    width: 44px;
    height: 44px;
  }

  .logo span {
    font-size: 28px;
  }

  .footer-logo-image {
    width: 180px;
  }

}