/**
 * Chekkos industry landing pages
 */

.chekkos-landing-page {
  background: var(--chekkos-bg-muted);
}

.chekkos-landing-hero .chekkos-hero__title {
  max-width: 18ch;
}

.chekkos-btn--whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25d366;
  color: #fff !important;
  border: none;
  border-radius: var(--chekkos-radius-md);
  min-height: var(--chekkos-touch-min);
  padding: 12px 20px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: background var(--chekkos-transition), transform var(--chekkos-transition);
}

.chekkos-btn--whatsapp:hover,
.chekkos-btn--whatsapp:focus {
  background: #1ebe57;
  color: #fff !important;
  text-decoration: none;
}

.chekkos-btn--block {
  width: 100%;
}

.chekkos-btn--lg {
  padding: 16px 28px;
  font-size: 16px;
}

.chekkos-landing-benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--chekkos-space-5);
}

.chekkos-landing-benefit {
  background: var(--chekkos-bg-elevated);
  border: 1px solid var(--chekkos-border);
  border-radius: var(--chekkos-radius-md);
  padding: var(--chekkos-space-6);
  box-shadow: var(--chekkos-shadow-sm);
}

.chekkos-landing-benefit__title {
  margin: 0 0 var(--chekkos-space-3);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--chekkos-primary);
}

.chekkos-landing-benefit__text {
  margin: 0;
  color: var(--chekkos-text-muted);
  line-height: 1.6;
  font-size: 15px;
}

.chekkos-landing-usecases {
  background: var(--chekkos-bg);
}

.chekkos-landing-usecases__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--chekkos-space-4);
  margin: 0 0 var(--chekkos-space-6);
  padding: 0;
  list-style: none;
}

.chekkos-landing-usecases__list li {
  position: relative;
  padding-left: 28px;
  color: var(--chekkos-text);
  line-height: 1.55;
}

.chekkos-landing-usecases__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--chekkos-accent);
}

.chekkos-landing-usecases__cta {
  text-align: center;
}

.chekkos-landing-products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--chekkos-space-5);
}

.chekkos-landing-product {
  display: flex;
  flex-direction: column;
  background: var(--chekkos-bg-elevated);
  border: 1px solid var(--chekkos-border);
  border-radius: var(--chekkos-radius-md);
  overflow: hidden;
  box-shadow: var(--chekkos-shadow-sm);
  transition: box-shadow var(--chekkos-transition), border-color var(--chekkos-transition);
}

.chekkos-landing-product:hover {
  border-color: var(--chekkos-border-strong);
  box-shadow: var(--chekkos-shadow-md);
}

.chekkos-landing-product__image {
  aspect-ratio: 1;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--chekkos-space-4);
}

.chekkos-landing-product__image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.chekkos-landing-product__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: var(--chekkos-space-3);
  padding: var(--chekkos-space-5);
}

.chekkos-landing-product__name {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--chekkos-text);
  line-height: 1.35;
}

.chekkos-landing-product__desc {
  margin: 0;
  flex: 1;
  font-size: 14px;
  color: var(--chekkos-text-muted);
  line-height: 1.5;
}

.chekkos-landing-product__price {
  margin: 0;
  font-weight: 700;
  color: var(--chekkos-primary);
}

.chekkos-landing-cta-band {
  padding: clamp(48px, 6vw, 72px) 0;
  background: linear-gradient(135deg, #163a5f 0%, #1f4c7a 55%, #2a6cb0 100%);
  color: #fff;
}

.chekkos-landing-cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--chekkos-space-6);
  flex-wrap: wrap;
}

.chekkos-landing-cta-band__title {
  margin: 0 0 var(--chekkos-space-3);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #fff;
}

.chekkos-landing-cta-band__subtitle {
  margin: 0;
  max-width: 52ch;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

@media (max-width: 1199px) {
  .chekkos-landing-benefits__grid,
  .chekkos-landing-products__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .chekkos-landing-benefits__grid,
  .chekkos-landing-products__grid,
  .chekkos-landing-usecases__list {
    grid-template-columns: 1fr;
  }

  .chekkos-landing-cta-band__inner {
    flex-direction: column;
    text-align: center;
  }

  .chekkos-landing-cta-band__subtitle {
    margin-inline: auto;
  }
}
