/* ── Hero Banner ─────────────────────────────────────────── */
.hero-banner {
  position: relative;
  height: calc(100vh - 116px);
  min-height: 520px;
  max-height: 820px;
  margin-top: 116px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Image fills banner, cropped to show towers + sky (cut green bottom) */
.hero-banner__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}

/* Overlay: dark-primary gradient over the image */
.hero-banner__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(0, 40, 60, 0.45) 0%,
      rgba(0, 60, 90, 0.62) 50%,
      rgba(0, 30, 50, 0.80) 100%
    );
}

/* Top accent bar */
.hero-banner__bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 65%, var(--accent) 100%);
  z-index: 2;
}

/* Text content */
.hero-banner__content {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding-inline: 1.5rem;
  max-width: 900px;
}

.hero-banner__label {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}
.hero-banner__label::before,
.hero-banner__label::after {
  content: '';
  width: 32px;
  height: 1px;
  background: rgba(255,255,255,0.4);
}

.hero-banner__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 24px rgba(0,0,0,0.3);
}
.hero-banner__title em {
  font-style: normal;
  color: #ffffff;
  position: relative;
}
.hero-banner__title em::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

.hero-banner__divider {
  width: 56px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), rgba(255,255,255,0.4));
  border-radius: 2px;
}

.hero-banner__subtitle {
  font-size: clamp(1rem, 2vw, 1.1875rem);
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
  max-width: 52ch;
  text-align: center;
}

.hero-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  justify-content: center;
  margin-top: 0.25rem;
}

/* Scroll hint */
.hero-banner__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
}
.hero-banner__scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50%       { opacity: 0.4; transform: scaleY(0.6); }
}

/* ── Below-fold section ──────────────────────────────────── */
.hero-below {
  background: var(--bg-primary);
  padding-block: 4.5rem;
  border-bottom: 1px solid var(--border);
}

.hero-below__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
  align-items: start;
}

/* Left: intro + stats */
.hero-below__intro {
  grid-column: 1 / 7;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-below__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-wrap: wrap;
}

.hero-below__text {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: none;
}

.hero-below__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border);
}
.hero-stat-value {
  font-family: var(--font-heading);
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

/* Right: service panel */
.hero-below__panel {
  grid-column: 7 / 13;
}

.hero-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.hero-panel__header {
  background: var(--primary);
  padding: 1.125rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero-panel__title {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.hero-panel__dots { display: flex; gap: 5px; }
.hero-panel__dots span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
}
.hero-panel__dots span:last-child { background: rgba(255,255,255,0.65); }

.hero-panel__body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.hero-panel__row {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.875rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--bg-primary);
  transition: border-color var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
.hero-panel__row:hover {
  border-color: var(--primary-border);
  box-shadow: var(--shadow-xs);
}
.hero-panel__icon {
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  background: var(--primary-tint);
  border: 1px solid var(--primary-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.hero-panel__info { flex: 1; min-width: 0; }
.hero-panel__name {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
}
.hero-panel__sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hero-panel__tag {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--primary);
  background: var(--primary-tint);
  padding: 0.2rem 0.5rem;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .hero-below__intro { grid-column: 1 / -1; }
  .hero-below__panel { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  .hero-banner__title { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-banner { max-height: none; height: 70vh; }
}
