/* ============================================
   Hero Section
   ============================================ */

.hero {
  padding: 0 1rem 0;
  margin-top: -84px;
  position: relative;
  z-index: 0;
}
.hero-box {
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 1px, transparent 1px, transparent 40px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 1px, transparent 1px, transparent 40px),
    radial-gradient(ellipse 60% 50% at 75% 40%, rgba(255,255,255,0.08) 0%, transparent 70%),
    linear-gradient(160deg, #1e5f94 0%, var(--blue) 40%, #112d47 100%);
  border-radius: 20px;
  padding: 0 0 6rem;
  max-width: none;
  margin: 0;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 5fr 6fr;
  gap: 3.5rem; align-items: center;
  padding: 10rem clamp(1.25rem, 4vw, 4rem) 0;
}
.hero-text {
  animation: fadeUp 0.6s ease both;
}
.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 700; line-height: 1.08;
  letter-spacing: -0.04em; color: var(--white);
  margin-bottom: 1rem;
}
.hero h1 span { color: var(--hero-orange); }
.hero-sub {
  font-size: 1rem; color: rgba(255,255,255,0.85);
  max-width: 420px; line-height: 1.7;
  margin-bottom: 1.75rem;
  animation: fadeUp 0.6s 0.08s ease both;
}
.hero-cta {
  display: flex; align-items: center; gap: 0.75rem;
  animation: fadeUp 0.6s 0.16s ease both;
}
.hero-cta .btn-blue {
  background: var(--white); color: #111111;
}
.hero-cta .btn-blue:hover { background: rgba(255,255,255,0.9); }

/* Hero visual placeholder */
.hero-visual-wrap {
  animation: fadeUp 0.6s 0.2s ease both;
}
.hero-visual {
  background: transparent;
  border-radius: 0;
  display: flex; align-items: center; justify-content: center;
  overflow: visible;
  box-shadow: none;
}
.hero-visual-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-lg);
}
.hero-visual-placeholder {
  color: rgba(255,255,255,0.12);
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
}
.hero-visual-placeholder span {
  font-size: 0.75rem; color: rgba(255,255,255,0.25);
  font-family: var(--font-heading); font-weight: 500;
}

/* Trust badges */
.hero-trust {
  display: flex; align-items: center; gap: 0.5rem;
  margin-top: 1.5rem;
  animation: fadeUp 0.6s 0.24s ease both;
  flex-wrap: wrap;
}
.hero-trust-badge {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-size: 0.72rem; font-weight: 500;
  color: rgba(255,255,255,0.6);
  padding: 0.3rem 0.7rem;
  border: none;
  border-radius: var(--radius-full);
}
.trust-icon {
  width: 14px; height: 14px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.trust-icon.green { color: rgba(255,255,255,0.5); }
.trust-icon.blue  { color: rgba(255,255,255,0.5); }
.trust-icon.amber { color: rgba(255,255,255,0.5); }
