/* =============================================
   HERO — hero.css
   ============================================= */
.hero {
  background: var(--black);
  padding: 100px 5% 90px;
  display: flex;
  align-items: center;
  gap: 60px;
  min-height: 560px;
  max-width: 100%;
}

.hero-text { flex: 1; }

.hero-eyebrow {
  display: inline-block;
  background: rgba(26,111,212,0.15);
  color: var(--accent-light);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
  border: 1px solid rgba(26,111,212,0.3);
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: 52px;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 22px;
}
.hero h1 em {
  color: var(--accent-light);
  font-style: normal;
}

.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 36px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Logo circle */
.hero-visual {
  flex: 0 0 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-logo-wrap {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 2px solid rgba(26,111,212,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: pulse-ring 3s ease-in-out infinite;
}
.hero-logo-wrap::before {
  content: '';
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  border: 1px solid rgba(26,111,212,0.15);
}
.hero-logo-wrap img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
}

@keyframes pulse-ring {
  0%, 100% { box-shadow: 0 0 0 0 rgba(26,111,212,0.25); }
  50%       { box-shadow: 0 0 0 18px rgba(26,111,212,0); }
}
