.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 30%, rgba(79, 110, 247, .2), transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(6, 196, 170, .12), transparent 50%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content .eyebrow {
  color: var(--teal);
  margin-bottom: 24px;
}

.hero-content .display-1 {
  color: var(--white);
  margin-bottom: 24px;
}

.hero-content .lead-item {
  color: rgba(255, 255, 255, .65);
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.channels-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.channel-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 100px;
  font-size: .82rem;
  color: rgba(255, 255, 255, .75);
}

.channel-pill .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.row-col-channel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  width: 100%;
}

.hero-visual {
  position: relative;
}

.hero-app-mock {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, .5);
}

.mock-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  background: rgba(255, 255, 255, .02);
}

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

.mock-sidebar-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: .85rem;
  color: rgba(255, 255, 255, .55);
}

.mock-sidebar-item.active {
  background: rgba(79, 110, 247, .15);
  color: rgba(255, 255, 255, .9);
}

.mock-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 700;
}

.mock-msg {
  padding: 10px 14px;
  border-radius: 12px;
  font-size: .8rem;
  max-width: 220px;
  line-height: 1.5;
}

.mock-msg-in {
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .8);
  border-radius: 12px 12px 12px 2px;
}

.mock-msg-out {
  background: var(--indigo);
  color: white;
  border-radius: 12px 12px 2px 12px;
  margin-left: auto;
}

.hero-badge {
  position: absolute;
  background: white;
  border-radius: 14px;
  padding: 12px 18px;
  box-shadow: var(--shadow-float);
  font-size: .82rem;
  font-weight: 600;
  color: var(--navy);
  animation: float 4s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-10px)
  }
}

.stats-strip {
  padding: 40px 0;
  border-bottom: 1px solid var(--gray-100);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.stat-num span {
  color: var(--indigo);
}

.stat-label {
  font-size: .9rem;
  color: var(--gray-600);
  margin-top: 6px;
}

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

.step-card {
  text-align: center;
  padding: 40px 32px;
}

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--indigo), var(--teal));
  color: white;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.step-card h3 {
  margin-bottom: 12px;
}

.step-card p {
  color: var(--gray-600);
  font-size: .93rem;
}

.features-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.feature-list {
  list-style: none;
}

.feature-list li {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-100);
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: rgba(79, 110, 247, .08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.feature-list li h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.feature-list li p {
  font-size: .88rem;
  color: var(--gray-600);
}

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

.testimonial-card {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
}

.testimonial-stars {
  color: var(--amber);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: .93rem;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 24px;
}

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

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--indigo), var(--teal));
  color: white;
  font-weight: 700;
  font-size: .9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.cta-banner {
  background: linear-gradient(135deg, var(--navy), #1e2d5a);
  border-radius: var(--radius-lg);
  padding: 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50%, rgba(79, 110, 247, .25), transparent);
}

.cta-banner>* {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  color: white;
  margin-bottom: 16px;
  font-size: 45px;
  font-weight: 700;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.logos-strip {
  padding: 48px 0;
  text-align: center;
}

.logos-strip p {
  font-size: .85rem;
  color: var(--gray-400);
  margin-bottom: 28px;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  opacity: .5;
}

.logos-row span {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--gray-600);
}


@media(max-width:1024px) {
  .hero-grid {
    grid-template-columns: 1fr
  }

  .hero-visual {
    display: none
  }

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

  .testimonials-grid {
    grid-template-columns: 1fr
  }

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

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

@media(max-width:768px) {
  .hero {
    padding: 100px 0 60px
  }

  .cta-banner {
    padding: 48px 32px
  }
}