/* ============================================================
   TESTA — hero.css
   Hero Primary · Hero Secondary · Video BG · SVG Visuals
   ============================================================ */

/* ── Shared Hero Grid ── */
.hero-full-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  position: relative;
  align-items: end;
  z-index: 1;
}

.hero-text-wrapper {
  display: flex;
  align-items: center;
  padding: 0 40px;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.hero-container-inward {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 100px;
  display: flex;
  flex-direction: column;
}

.content-right {
  margin-left: auto;
  text-align: right;
  max-width: 600px;
}
.content-left {
  margin-right: auto;
  text-align: left;
  max-width: 600px;
}

/* ── SVG Visuals ── */
.hero-visual {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
}
.hero-visual img {
  width: 100%;
  height: auto;
  display: block;
  max-width: none;
}
.svg-primary  { scale: 1.1; transform-origin: bottom left; }
.svg-secondary { scale: 1.0; transform-origin: bottom right; }

/* ── Hero Primary (video) ── */
.hero-primary {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.hero-video-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
}
.hero-video-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(11, 31, 58, 0.7) 0%,
    rgba(52, 137, 233, 0.3) 100%
  );
  z-index: 1;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
  z-index: 0;
}

/* Hero Primary heading */
.hero-primary .hero-content h1 {
  font-family: 'Arial', sans-serif;
  font-size: clamp(40px, 5vw, 72px);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  font-weight: 100;
  letter-spacing: -0.01em;
  text-transform: none;
}
.hero-primary .hero-content h1 em {
  color: var(--lime);
  font-style: normal;
}

/* ── Hero Secondary (blue) ── */
.hero-secondary {
  background-color: #3489E9;
  position: relative;
  overflow: hidden;
}

/* Heading — keep as-is (no responsive override on size) */
.hero-secondary .section-title {
  font-family: 'Arial', sans-serif;
  font-weight: 400;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
  text-transform: none;
  color: var(--white);
}

/* Body copy inside hero-b — readable contrast on blue bg */
.hero-secondary h4 {
  display: block;
  font-family: var(--font-body);
  font-size: clamp(14px, 1.6vw, 16px);
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
  margin-top: 20px;
  letter-spacing: 0.01em;
}

.hero-actions {
  margin-top: 32px;
}
