@import url('/apps/style.css');

.hero {
  background-image:
    linear-gradient(180deg, rgba(24, 13, 58, 0.72) 0%, rgba(13, 9, 33, 0.9) 100%),
    url('/img/vitrine.webp');
  background-position: center center;
}

.contact {
  background-image:
    linear-gradient(180deg, rgba(22, 13, 48, 0.82) 0%, rgba(13, 9, 33, 0.92) 100%),
    url('/img/dashboard.jpg');
  background-position: center center;
}

.hero::before,
.contact::before {
  display: none;
}

.hero-body .container--wide {
  align-items: center;
}

.hero-left {
  padding-top: 32px;
}

.hero-desc {
  max-width: 640px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.hero-inline-cta {
  width: auto;
  min-width: 280px;
  padding: 16px 26px;
}

.form-card-kicker {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.form-checkbox-error {
  margin-left: 30px;
}

.section-shell {
  padding: 72px 0;
}

.section-intro {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}

.section-tag {
  display: inline-block;
  margin-bottom: 12px;
  color: #6941c6;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 800;
}

.section-tag--light {
  color: #dcfc17;
}

.section-title {
  font-size: 34px;
  line-height: 1.2;
  color: #101828;
  letter-spacing: -0.03em;
}

.section-title--light {
  color: #ffffff;
}

.section-subtitle {
  margin-top: 14px;
  color: #475467;
  font-size: 16px;
  line-height: 1.75;
}

.section-subtitle--light {
  color: rgba(255, 255, 255, 0.78);
}

.lean-start {
  background: #ffffff;
}

.lean-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.lean-card,
.fit-card,
.benefit-card,
.number-card {
  border-radius: 18px;
}

.lean-card {
  padding: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #f8f7ff 100%);
  border: 1px solid rgba(105, 65, 198, 0.12);
  box-shadow: 0 18px 45px rgba(16, 24, 40, 0.06);
}

.lean-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(105, 65, 198, 0.12);
  color: #6941c6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}

.lean-card h3,
.fit-card p,
.benefit-card p,
.number-card strong,
.number-card span {
  margin: 0;
}

.lean-card h3 {
  font-size: 22px;
  color: #101828;
  margin-bottom: 10px;
}

.lean-card p {
  color: #475467;
  line-height: 1.7;
}

.fit {
  background: #f9fafb;
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.fit-card {
  background: #ffffff;
  border: 1px solid #eaecf0;
  padding: 24px 22px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  box-shadow: 0 12px 28px rgba(16, 24, 40, 0.05);
}

.fit-card i {
  color: #6941c6;
  margin-top: 4px;
}

.fit-card p {
  color: #101828;
  line-height: 1.65;
  font-size: 15px;
}

.benefits {
  background: #ffffff;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.benefit-card {
  padding: 22px 18px;
  background: #160d30;
  color: #ffffff;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.benefit-bullet {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(220, 252, 23, 0.14);
  position: relative;
}

.benefit-bullet::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #dcfc17;
  transform: translate(-50%, -50%);
}

.benefit-card p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  line-height: 1.65;
}

.numbers {
  background:
    radial-gradient(circle at top left, rgba(220, 252, 23, 0.12), transparent 30%),
    linear-gradient(180deg, #180d3a 0%, #0d0921 100%);
}

.numbers-copy {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.number-card {
  padding: 28px 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.number-card strong {
  display: block;
  color: #dcfc17;
  font-size: 28px;
  line-height: 1.15;
  margin-bottom: 10px;
}

.number-card span {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
  font-size: 14px;
}

@media (max-width: 1100px) {
  .benefits-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .fit-grid,
  .numbers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .hero {
    background-position: center top;
  }

  .hero-left {
    padding-top: 26px;
  }

  .hero-desc {
    display: block;
    text-align: center;
    font-size: 15px;
  }

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

  .hero-inline-cta {
    width: 100%;
    min-width: 0;
  }

  .section-shell {
    padding: 52px 0;
  }

  .section-title {
    font-size: 28px;
  }

  .section-subtitle {
    font-size: 15px;
  }

  .lean-grid,
  .fit-grid,
  .benefits-grid,
  .numbers-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    min-height: auto;
  }

  .proof .container {
    grid-template-columns: 1fr;
  }

  .proof-img img {
    margin-bottom: 0;
  }

  .numbers-copy {
    text-align: center;
  }
}
