/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  background: var(--charcoal);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Animated grid */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  animation: gridDrift 20s linear infinite;
}
@keyframes gridDrift {
  from { background-position: 0 0; }
  to   { background-position: 72px 72px; }
}

/* Gradient orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-orb-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(4,106,129,0.45) 0%, transparent 70%);
  top: -200px; left: -100px;
  animation: orbFloat1 12s ease-in-out infinite alternate;
}
.hero-orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(62,207,170,0.2) 0%, transparent 70%);
  bottom: -100px; right: 5%;
  animation: orbFloat2 15s ease-in-out infinite alternate;
}
@keyframes orbFloat1 {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(40px, 60px) scale(1.1); }
}
@keyframes orbFloat2 {
  from { transform: translate(0,0); }
  to   { transform: translate(-30px, -50px); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 3rem;
  padding-top: 100px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 100px;
  padding: 7px 16px;
  font-size: 11.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.04em;
  margin-bottom: 2rem;
  width: fit-content;
  opacity: 0;
}
.badge-pulse {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--mint);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:0.4; transform:scale(0.8); }
}

.hero-h1 {
  font-size: clamp(3rem, 5.5vw, 5.2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 1.75rem;
  overflow: hidden;
}

.hero-h1 .line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.18em;
  margin-bottom: -0.18em;
}
.hero-h1 .line span {
  display: block;
  transform: translateY(110%);
}

.hero-h1 em {
  font-style: normal;
  color: var(--mint);
  position: relative;
}

.hero-sub {
  font-size: 1.1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
  max-width: 540px;
  margin-bottom: 2.5rem;
  opacity: 0;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0;
}

.btn-primary {
  background: var(--teal);
  color: #fff;
  padding: 16px 34px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: background 0.2s, transform 0.25s var(--ease-out-expo), box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content:'';
  position:absolute;
  inset:0;
  background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, transparent 60%);
  opacity:0;
  transition: opacity 0.2s;
}
.btn-primary:hover { background: var(--teal-mid); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(4,106,129,0.4); }
.btn-primary:hover::before { opacity:1; }

.btn-outline {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border: 1.5px solid rgba(255,255,255,0.25);
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.2s;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.65); background: rgba(255,255,255,0.06); }

.hero-trust {
  margin-top: 2rem;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.02em;
  opacity: 0;
}
.hero-trust span { color: var(--mint); }

/* Hero right: image + stat card */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center 30%;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}

.hero-stat-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 2.5rem;
  backdrop-filter: blur(8px);
  opacity: 0;
  transform: translateX(40px);
}

.hsc-label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 2rem;
}

.hsc-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.hsc-item:last-child { border-bottom: none; }

.hsc-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(4,106,129,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.hsc-val {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
}
.hsc-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  margin-top: 3px;
  line-height: 1.4;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  z-index: 3;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
.scroll-text {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

