.kpc-hero { padding: 20px 0 8px; }
.kpc-hero-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 22px;
}
.kpc-hero-logo img {
  width: 72px;
  height: 72px;
  flex: 0 0 72px;
  display: block;
}
.kpc-hero-logo strong {
  display: block;
  font-size: clamp(22px, 2.6vw, 32px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #e07a28;
  line-height: 1.1;
}
.kpc-hero-logo span {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #d7dde3;
}
.kpc-hero h1 {
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.05;
  margin: 8px 0 18px;
  font-weight: 500;
}
.kpc-hero p { max-width: 720px; color: #d7dde3; font-size: 18px; line-height: 1.65; }

.kpc-offer {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.kpc-offer-head {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.kpc-offer-logo {
  width: 72px;
  height: 72px;
  flex: 0 0 72px;
  display: block;
}
.kpc-offer h2 {
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.25;
  margin: 0;
  font-weight: 500;
}
.kpc-offer-head p {
  margin: 12px 0 0;
  max-width: 720px;
  color: #d7dde3;
  font-size: 17px;
  line-height: 1.55;
}

.kpc-video-entry {
  display: flex;
  justify-content: center;
  margin: 34px 0 30px;
}

.kpc-videos-button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: min(360px, 100%);
  min-height: 66px;
  padding: 0 34px;
  border: 1px solid var(--gold-2);
  border-radius: 999px;
  color: var(--gold-2);
  background: linear-gradient(180deg, rgba(34, 29, 20, 0.96), rgba(12, 15, 18, 0.98));
  box-shadow:
    inset 0 0 0 1px rgba(228, 201, 138, 0.12),
    0 10px 34px rgba(0, 0, 0, 0.36),
    0 0 24px rgba(196, 164, 106, 0.2);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-indent: 0.24em;
  transition:
    color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.kpc-videos-button::before {
  position: absolute;
  z-index: -1;
  inset: -8px;
  border: 1px solid rgba(228, 201, 138, 0.4);
  border-radius: inherit;
  content: "";
  animation: kpc-videos-pulse 2.4s ease-in-out infinite;
  pointer-events: none;
}

.kpc-videos-button:hover {
  color: #171006;
  background: var(--gold-2);
  box-shadow:
    0 12px 38px rgba(0, 0, 0, 0.4),
    0 0 34px rgba(228, 201, 138, 0.42);
  transform: translateY(-2px);
}

.kpc-videos-button:focus-visible {
  outline: 2px solid #fff4cf;
  outline-offset: 6px;
}

.kpc-videos-icon {
  display: inline-flex;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  margin-left: -4px;
}

.kpc-videos-icon svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.kpc-videos-icon circle {
  fill: transparent;
  stroke: currentColor;
  stroke-width: 1.5;
}

.kpc-videos-icon path {
  fill: currentColor;
}

@keyframes kpc-videos-pulse {
  0%, 100% {
    opacity: 0.28;
    transform: scale(0.99);
    box-shadow: 0 0 0 rgba(228, 201, 138, 0);
  }
  50% {
    opacity: 0.88;
    transform: scale(1.025);
    box-shadow: 0 0 22px rgba(228, 201, 138, 0.4);
  }
}

.kpc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 28px;
}
.kpc-card {
  display: block;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px 20px 18px;
  background: linear-gradient(180deg, #151c24, #10161c);
  min-height: 180px;
}
.kpc-card.ready { border-color: #3d3420; box-shadow: inset 0 0 0 1px rgba(196, 164, 106, 0.15); }
.kpc-card.ready:hover { border-color: var(--gold); }
.kpc-card.soon { opacity: 0.62; cursor: default; }
.kpc-card h3 { margin: 10px 0 8px; font-size: 22px; font-weight: 500; }
.kpc-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.5; }
.kpc-pill {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
}
.kpc-card.ready .kpc-pill { color: var(--gold); border-color: #5a4a28; }

@media (prefers-reduced-motion: reduce) {
  .kpc-videos-button::before {
    animation: none;
  }
}
