/** IT Store — home hero (design: dark gradient + audience toggle). */
.itstore-hero2 {
  position: relative;
  color: #fff;
  padding: 64px 24px;
  overflow: hidden;
  background-image:
    linear-gradient(120deg, #0b1220 0%, #132038 55%, #1a2a4a 100%),
    radial-gradient(circle at 20% 20%, rgba(47, 111, 237, .14), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(15, 118, 110, .12), transparent 45%);
}
.itstore-hero2__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.itstore-hero2__toggle { display: flex; gap: 8px; margin-bottom: 18px; }
.itstore-hero2__tab {
  background: rgba(255, 255, 255, .06);
  color: #b7c1d9;
  border: 1px solid #3a4864;
  border-radius: 8px;
  padding: 8px 16px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
}
.itstore-hero2__tab.is-active { background: #2f6fed; color: #fff; border-color: #2f6fed; }

.itstore-hero2__panel { display: none; }
.itstore-hero2__panel.is-active { display: block; }
.itstore-hero2__eyebrow {
  display: inline-block;
  color: #f59e0b;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.itstore-hero2__title { font-size: 40px; line-height: 1.2; margin: 0 0 18px; font-weight: 800; max-width: 560px; color: #fff; }
.itstore-hero2__sub { font-size: 16px; color: #b7c1d9; max-width: 520px; margin: 0 0 28px; line-height: 1.6; }
.itstore-hero2__actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.itstore-hero2__cta {
  padding: 14px 26px;
  border-radius: 9px;
  font-size: 14.5px;
  box-shadow: 0 4px 14px rgba(47, 111, 237, .35);
}
.itstore-hero2__quote {
  color: #fff;
  border: 1.5px solid #3a4864;
  padding: 13px 24px;
  border-radius: 9px;
  font-weight: 700;
  font-size: 14.5px;
  transition: background .15s ease, border-color .15s ease;
}
.itstore-hero2__quote:hover { background: rgba(255, 255, 255, .06); border-color: #55617f; color: #fff; }

.itstore-hero2__media {
  border: 1px solid #24304d;
  border-radius: 16px;
  height: 320px;
  overflow: hidden;
  position: relative;
  background: #0e1a30;
}
.itstore-hero2__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .3s ease; }
.itstore-hero2__img.is-active { opacity: 1; }

@media (max-width: 900px) {
  .itstore-hero2 { padding: 40px 20px; }
  .itstore-hero2__inner { grid-template-columns: 1fr; gap: 24px; }
  .itstore-hero2__title { font-size: 30px; }
  .itstore-hero2__media { height: 220px; order: -1; }
}

/* When no hero image is configured, let the copy span the full width instead
   of leaving an empty second column. */
.itstore-hero2__inner--nomedia { grid-template-columns: 1fr; }
.itstore-hero2__inner--nomedia .itstore-hero2__copy { max-width: 760px; }
