/* HP × CYBERSHOP — светлый landing для hp.cybershop.kz */

.hp-light-page {
  min-height: 100dvh;
  background: #ffffff;
  color: #0f172a;
  font-family: Inter, system-ui, -apple-system, sans-serif;
}

.hp-light-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 20px clamp(16px, 4vw, 48px);
  border-bottom: 1px solid #e2e8f0;
}

.hp-light-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.hp-light-brand__hp {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.hp-light-brand__cyber {
  height: 36px;
  width: auto;
  max-width: min(220px, 42vw);
  object-fit: contain;
}

.hp-light-main {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 48px) clamp(16px, 4vw, 48px) 64px;
}

.hp-light-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  margin-bottom: clamp(32px, 5vw, 56px);
}

.hp-light-hero__photo {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #f8fafc;
  min-height: 280px;
}

.hp-light-hero__photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  object-position: 12% 40%;
}

.hp-light-hero__copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hp-light-hero__title {
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.hp-light-hero__lead {
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.55;
  color: #334155;
  max-width: 34rem;
}

.hp-light-hero__accent {
  color: #00d2ff;
  font-weight: 700;
}

.hp-light-hero__cta {
  align-self: flex-start;
  margin-top: 4px;
  padding: 14px 28px;
  border: none;
  border-radius: 999px;
  background: #0f172a;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.hp-light-hero__cta:hover {
  background: #1e293b;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.18);
}

.hp-light-products__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.hp-light-product {
  display: block;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.hp-light-product:hover {
  border-color: #0096d6;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 150, 214, 0.14);
}

.hp-light-product:focus-visible {
  outline: 2px solid #0096d6;
  outline-offset: 2px;
}

.hp-light-product__media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 140px;
  padding: 12px;
  background: #f8fafc;
}

.hp-light-product__media img {
  max-width: 100%;
  max-height: 120px;
  object-fit: contain;
}

.hp-light-product__body {
  padding: 12px 14px 16px;
}

.hp-light-product__sku {
  margin: 0 0 4px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #64748b;
}

.hp-light-product__name {
  margin: 0 0 6px;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.25;
}

.hp-light-product__meta,
.hp-light-product__specs {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.35;
  color: #64748b;
}

.hp-light-product__specs {
  margin-top: 4px;
}

.hp-light-footer {
  padding: 24px clamp(16px, 4vw, 48px) 40px;
  border-top: 1px solid #e2e8f0;
  text-align: center;
  font-size: 0.82rem;
  color: #64748b;
}

.hp-light-footer p {
  margin: 0;
}

@media (max-width: 960px) {
  .hp-light-hero {
    grid-template-columns: 1fr;
  }

  .hp-light-products__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .hp-light-products__grid {
    grid-template-columns: 1fr;
  }
}
