.hero {
  min-height: 100vh;
  background: linear-gradient(155deg, #0a1c2e 0%, var(--color-primary) 55%, #1e4e7a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 7rem var(--container-padding) 5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.float-icon {
  position: absolute;
  opacity: 0.055;
  color: #FFFFFF;
  animation: j2s-float-up linear infinite;
}

@keyframes j2s-float-up {
  0%   { transform: translateY(110vh) rotate(0deg); opacity: 0; }
  8%   { opacity: 0.055; }
  92%  { opacity: 0.055; }
  100% { transform: translateY(-120px) rotate(360deg); opacity: 0; }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-left .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(226,100,9,0.15);
  border: 1px solid rgba(226,100,9,0.45);
  color: var(--color-secondary-light);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(2.6rem, 4.2vw, 3.7rem);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  max-width: 600px;
}

.hero h1 em {
  font-style: normal;
  color: var(--color-secondary-light);
}

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

.hero-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.platform-pills {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.82);
  font-size: 0.82rem;
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
}

.hero-right {
  display: flex;
  justify-content: center;
}

.mock-phone {
  width: 320px;
  max-width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 24px;
  padding: 1.75rem;
  animation: j2s-mock-float 5s ease-in-out infinite;
}

@keyframes j2s-mock-float {
  0%, 100% { transform: rotate(2deg) translateY(0); }
  50%      { transform: rotate(2deg) translateY(-12px); }
}

.mock-phone-bar { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1.25rem; }
.mock-phone-bar .dot { width: 8px; height: 8px; border-radius: 50%; }
.dot-red { background: #FF5F57; }
.dot-yellow { background: #FEBC2E; }
.dot-green { background: #28C840; }

.mock-ad {
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 0.75rem;
  border: 1px solid rgba(255,255,255,0.1);
}
.mock-ad-label { font-size: 0.65rem; color: rgba(255,255,255,0.45); margin-bottom: 0.4rem; letter-spacing: 0.05em; }
.mock-ad-title { font-size: 0.9rem; font-weight: 700; color: #FFFFFF; margin-bottom: 0.25rem; }
.mock-ad-sub { font-size: 0.75rem; color: rgba(255,255,255,0.6); }

.mock-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
.mock-stat { background: rgba(255,255,255,0.06); border-radius: 8px; padding: 0.6rem; text-align: center; }
.mock-stat-val { font-size: 1.1rem; font-weight: 700; color: var(--color-secondary-light); }
.mock-stat-lbl { font-size: 0.65rem; color: rgba(255,255,255,0.5); }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-right { display: none; }
  .hero { padding: 6rem 1.5rem 4rem; }
  .hero h1 { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-sub { font-size: 1rem; max-width: 100%; }
}

@media (max-width: 640px) {
  .hero-actions { flex-direction: column; gap: 0.75rem; }
  .hero-actions a { width: 100%; justify-content: center; }
}
