/* Страницы типов бизнеса (SEO-лендинги) */

.ycl-biz-page .ycl-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
}

.ycl-biz-page .ycl-nav-contacts {
  gap: 24px;
}

.ycl-biz-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 48px;
  align-items: center;
}

.ycl-biz-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 20px;
}

.ycl-biz-breadcrumb a {
  color: #4b5563;
  text-decoration: none;
}

.ycl-biz-breadcrumb a:hover {
  color: var(--accent);
}

.ycl-biz-hero-title {
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -1px;
  color: #1a1a1a;
  margin-bottom: 18px;
}

.ycl-biz-hero-sub {
  font-size: 18px;
  line-height: 1.55;
  color: #4b5563;
  margin-bottom: 12px;
  max-width: 560px;
}

.ycl-biz-hero-examples {
  font-size: 15px;
  line-height: 1.5;
  color: #6b7280;
  margin-bottom: 28px;
  max-width: 560px;
}

.ycl-biz-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ycl-biz-hero-visual img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
}

.ycl-biz-benefits {
  background: #ffffff;
}

.ycl-biz-benefits-panel {
  padding: 54px 72px 58px;
  border-radius: 31px;
  background: #f4f5f8;
}

.ycl-biz-benefits-title.ycl-business-types-title {
  margin: 0 auto 36px;
  max-width: 720px;
}

.ycl-biz-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.ycl-biz-benefit-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  min-height: 120px;
  padding: 24px 22px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(31, 45, 61, 0.08);
}

.ycl-biz-benefit-check {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 50%;
  background: #f5c400;
  color: #ffffff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.ycl-biz-benefit-check img {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  stroke-width: 3;
  fill: none;
}

.ycl-biz-benefit-text {
  margin: 4px 0 0;
  font-size: 16px;
  line-height: 1.48;
  font-weight: 500;
  color: #62686f;
}

.ycl-biz-hub-title {
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.8px;
  text-align: center;
  margin-bottom: 14px;
  color: #1a1a1a;
}

.ycl-biz-hub-title .accent {
  color: var(--accent);
}

.ycl-biz-hub-sub {
  text-align: center;
  font-size: 18px;
  color: #6b7280;
  max-width: 720px;
  margin: 0 auto 40px;
  line-height: 1.5;
}

.ycl-biz-hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.ycl-biz-hub-card {
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.2s, transform 0.2s;
}

.ycl-biz-hub-card:hover {
  box-shadow: 0 12px 32px rgba(17, 24, 39, 0.08);
  transform: translateY(-2px);
}

.ycl-biz-hub-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
  padding: 18px 18px 20px;
}

.ycl-biz-hub-card-visual {
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 14px;
  background: #f3f4f6;
}

.ycl-biz-hub-card-visual img {
  width: 100%;
  height: auto;
  display: block;
}

.ycl-biz-hub-card-title {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 8px;
  color: #1a1a1a;
}

.ycl-biz-hub-card-text {
  font-size: 14px;
  line-height: 1.45;
  color: #6b7280;
  margin-bottom: 10px;
}

.ycl-biz-hub-card-more {
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
}

@media (max-width: 900px) {
  .ycl-biz-hero-inner {
    grid-template-columns: 1fr;
  }

  .ycl-biz-hero-visual {
    order: -1;
    max-width: 360px;
    margin: 0 auto;
  }

  .ycl-biz-benefits-grid {
    grid-template-columns: 1fr;
  }

  .ycl-biz-benefits-panel {
    padding: 40px 28px 44px;
  }
}

@media (max-width: 560px) {
  .ycl-biz-benefits-panel {
    padding: 32px 20px 36px;
    border-radius: 22px;
  }

  .ycl-biz-benefit-card {
    min-height: auto;
    padding: 20px 18px;
    gap: 16px;
  }

  .ycl-biz-benefit-check {
    width: 46px;
    height: 46px;
    min-width: 46px;
  }

  .ycl-biz-benefit-check img {
    width: 22px;
    height: 22px;
  }

  .ycl-biz-benefit-text {
    font-size: 15px;
  }
}
