/* HERO */
.hero.hero-clean {
  position: relative;
  min-height: calc(92vh - 42px);
  overflow: hidden;
  background: #163741;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 80%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 80%, transparent 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url("../assets/images/hero-bg.webp") center center / cover no-repeat;
  transform: scale(1.03);
  filter: brightness(0.64) saturate(1.02);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(8, 26, 32, 0.28) 0%,
      rgba(10, 31, 38, 0.36) 28%,
      rgba(14, 44, 52, 0.48) 56%,
      rgba(20, 58, 68, 0.68) 100%
    ),
    radial-gradient(circle at top left, rgba(132, 215, 228, 0.14), transparent 28%);
}
.hero-shell {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  min-height: calc(92vh - 42px);
}
.nav {
  position: sticky;
  top: 58px;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: 22px;
  border: 1px solid rgba(14, 38, 47, 0.08);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  transition:
    background var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.99);
  border-color: rgba(14, 38, 47, 0.1);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1);
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  color: var(--text);
}
.logo-box {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(14, 38, 47, 0.08);
  overflow: hidden;
}
.logo-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #ffffff;
}
.brand > div:last-child {
  min-width: 0;
}
.brand > div:last-child > div {
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.2;
}
.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.3;
}
.nav-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}
.nav-link {
  position: relative;
  color: var(--text-soft);
  font-weight: 700;
  font-size: 0.96rem;
  transition: color var(--transition);
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.nav-link:hover {
  color: var(--text);
}
.nav-link:hover::after {
  transform: scaleX(1);
}
.hero-grid.hero-grid-single {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding: 138px 0 220px;
}
.hero-grid-centered {
  text-align: center;
}
.hero-copy {
  max-width: 760px;
}
.hero-copy-centered {
  max-width: 880px;
  margin: 0 auto;
}
.hero-title-nowrap {
  white-space: nowrap;
}
.hero-areas-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 22px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  backdrop-filter: blur(6px);
}
.hero h1 {
  max-width: 900px;
  margin: 0 auto 14px;
  color: #ffffff;
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}
.hero-slogan {
  margin: 0 auto 20px;
  color: var(--accent);
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}
.lead {
  max-width: 700px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.94);
  font-size: 1.16rem;
  line-height: 1.85;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.14);
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}
.cta-row-centered {
  justify-content: center;
}
.hero-cta {
  min-width: 290px;
}
.main-content {
  position: relative;
  z-index: 3;
  margin-top: 0;
}
