.hero {
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(47,107,255,.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-light);
  color: var(--blue);
  font-weight: 800;
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.hero__label::before { content: '📱'; font-size: .95rem; }

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 22px;
  letter-spacing: -.02em;
}
.hero__title em {
  font-style: normal;
  color: var(--blue);
}

.hero__desc {
  font-size: 1.15rem;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.hero__stats {
  display: flex;
  gap: 32px;
}
.hero__stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}
.hero__stat span {
  font-size: .8rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* Phone mockup */
.hero__phone {
  position: relative;
  display: flex;
  justify-content: center;
}

.phone-frame {
  width: 280px;
  background: var(--white);
  border-radius: 44px;
  border: 6px solid #1a1a2e;
  box-shadow:
    0 40px 80px rgba(0,0,0,.18),
    0 0 0 2px rgba(255,255,255,.5) inset;
  overflow: hidden;
  position: relative;
}
.phone-frame::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 100px; height: 28px;
  background: #1a1a2e;
  border-radius: 0 0 18px 18px;
  z-index: 10;
}

.phone-screen {
  background: var(--bg);
  min-height: 560px;
  padding: 40px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.phone-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 4px 8px;
}
.phone-topbar__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
}
.phone-greeting {
  font-size: .8rem;
  font-weight: 700;
  color: var(--muted);
  padding: 0 4px;
  margin-bottom: 4px;
}
.phone-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.phone-contact {
  background: var(--white);
  border-radius: 16px;
  border: 1.5px solid var(--border);
  padding: 14px 10px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,.06);
  cursor: pointer;
  transition: transform .15s;
}
.phone-contact:hover { transform: scale(1.03); }

.phone-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  margin: 0 auto 8px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--blue);
  background: var(--blue-light);
  border: 2px solid var(--border);
}
.phone-contact-name { font-weight: 800; font-size: .8rem; }
.phone-contact-rel  { font-size: .7rem; font-weight: 700; color: var(--blue); }

.phone-sos {
  background: var(--red);
  color: #fff;
  border-radius: 14px;
  padding: 14px;
  text-align: center;
  font-weight: 900;
  font-size: .85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 4px;
  box-shadow: 0 4px 16px rgba(255,59,48,.3);
}

.hero__phone-deco {
  position: absolute;
  top: -20px; right: -40px;
  width: 120px; height: 120px;
  background: var(--blue-light);
  border-radius: 50%;
  z-index: -1;
}
.hero__phone-deco2 {
  position: absolute;
  bottom: 20px; left: -30px;
  width: 80px; height: 80px;
  background: rgba(255,59,48,.1);
  border-radius: 50%;
  z-index: -1;
}

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__phone { order: -1; }
  .phone-frame { width: 240px; }
  .hero { padding: 60px 0 60px; }
}
