/* ===================================================
   TENEBIT 2026 -- INNER HERO (Inner Pages)
   =================================================== */

.inner-hero {
  padding: 140px 0 60px;
  background: var(--c5);
  color: var(--c1);
  position: relative;
  overflow: hidden;
}

.inner-hero::before {
  content: '';
  position: absolute;
  top: -150px; right: -150px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(167,196,18,.06) 0%, transparent 70%);
  pointer-events: none;
}

/* Breadcrumb */
.inner-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-sub);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 24px;
  position: relative;
}

.inner-hero .breadcrumb a {
  color: rgba(255,255,255,.45);
  transition: var(--tr);
}

.inner-hero .breadcrumb a:hover {
  color: var(--c4);
}

.inner-hero .breadcrumb .separator {
  color: rgba(255,255,255,.2);
}

.inner-hero .breadcrumb .current {
  color: var(--c4);
  font-weight: 600;
}

/* Heading */
.inner-hero h1 {
  font-family: var(--ff-h);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--c1);
  margin-bottom: 20px;
  max-width: 780px;
  position: relative;
}

.inner-hero h1 span {
  color: var(--c4);
}

/* Lead paragraph */
.inner-hero .lead {
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.75;
  color: rgba(255,255,255,.55);
  max-width: 620px;
  margin-bottom: 32px;
  position: relative;
}

/* CTA button */
.inner-hero .hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  background: var(--c4);
  color: var(--c1);
  font-family: var(--ff-sub);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--tr);
  position: relative;
}

.inner-hero .hero-cta:hover {
  background: var(--c4-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--c4-glow);
}

.inner-hero .hero-cta svg {
  transition: transform .25s ease;
}

.inner-hero .hero-cta:hover svg {
  transform: translateX(3px);
}

/* Section badge inside inner-hero */
.inner-hero .section-badge {
  background: rgba(167,196,18,.1);
  border: 1px solid rgba(167,196,18,.3);
  color: var(--c4);
}

/* Responsive */
@media (max-width: 860px) {
  .inner-hero {
    padding: 110px 0 48px;
  }
}

@media (max-width: 480px) {
  .inner-hero {
    padding: 100px 0 40px;
  }

  .inner-hero h1 {
    font-size: clamp(26px, 6vw, 36px);
  }
}
