/* ─────────────────────────────────────────
   BLOCK: HERO
───────────────────────────────────────── */
.hero {
  background: var(--gray-bg);
  padding: 110px 40px 0;
}
.hero__inner {
  display: flex;
  align-items: stretch;
  gap: 80px;
  position: relative;
}

/* Hero slider arrows */
.hero__arrows {
  position: absolute;
  top: -40px;
  left: 0;
}
.hero__arrow-btn {
  background: none;
  border: none;
}

.hero__arrow-img {
  height: 17px;
  width: auto;
}

.hero__arrow-btn:hover { color: var(--black); }

/* Hero inset product card */
.hero__product-card {
  width: auto;
  height: 326px;
  flex-shrink: 0;
  background: #ffffff;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.hero__text-container {
  width: 300px;
  padding: 40px;
}
.hero__product-name   { font-weight: 700; font-size: 22px; margin-bottom: 12px; }
.hero__product-desc   { font-size: 15px; color: var(--gray-mid); line-height: 1.6; }
.hero__product-status { font-size: 12px; color: #9ca3af; margin-top: 24px; }

/* Device image area */
.hero__image {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.hero__image-box {
  width: 350px;
  margin-bottom: -28px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* CTA column */
.hero__cta {
  max-width: 660px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 20px;
}
.hero__heading {
  font-size: 40px;
  font-weight: 500;
  max-width: 80%;
  line-height: 1.15;
  margin-bottom: 28px;
  color: var(--black);
}
.hero__btn {
  background: var(--purple);
  color: #fff;
  border: none;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 400;
  width: fit-content;
  margin-bottom: 16px;
}
.hero__btn:hover { background: var(--purple-btn); }
.hero__subtext { font-size: 12px; color: #9ca3af; }
