.s-app__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
  overflow: hidden;
}

.s-app__content h2 {
  font: 700 clamp(28px, 3.5vw, 40px) var(--font-sans);
  color: var(--fg-1);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-4);
}

.s-app__intro {
  color: var(--fg-2);
  font-size: 16px;
  margin-bottom: var(--space-6);
}

.s-app__features {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-6);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.s-app__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--fg-1);
}

.s-app__features li i {
  color: var(--accent);
  flex-shrink: 0;
}

.s-app__mockup {
  display: flex;
  justify-content: center;
}

.s-app__mockup {
  position: relative;
}

.s-app__mockup::before {
  content: '';
  position: absolute;
  inset: -40px;
  background: radial-gradient(closest-side, rgba(255,84,54,0.10) 0%, rgba(255,84,54,0) 70%);
  z-index: 0;
  pointer-events: none;
}

.s-app__phone {
  position: relative;
  z-index: 1;
  width: 260px;
  height: 520px;
  background: linear-gradient(180deg, #14181F 0%, #0F1419 100%);
  border-radius: 38px;
  padding: 14px;
  box-shadow:
    0 30px 80px rgba(15,20,25,0.22),
    0 8px 24px rgba(15,20,25,0.10),
    inset 0 0 0 1px rgba(255,255,255,0.04);
  margin-inline: auto;
}

.s-app__phone::before {
  content: '';
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 90px; height: 22px;
  background: #0B0E13;
  border-radius: 0 0 14px 14px;
  z-index: 3;
}

.s-app__screen {
  position: absolute;
  inset: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: linear-gradient(180deg, #FFFFFF 0%, #F6F7F9 100%);
  border-radius: 28px;
  opacity: 0;
  transition: opacity 400ms var(--ease-out, ease);
  padding: 50px 24px 24px;
  text-align: center;
}

.s-app__screen.is-active {
  opacity: 1;
}

.s-app__screen-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--accent) 0%, #FF7B5A 100%);
  border-radius: 22px;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 14px 28px rgba(255,84,54,0.28);
}

.s-app__screen-icon i {
  width: 32px; height: 32px;
}

.s-app__screen-label {
  font: 700 20px var(--font-sans);
  color: var(--fg-1);
  margin: 0;
  letter-spacing: -0.01em;
}

.s-app__screen-sub {
  font-size: 14px;
  color: var(--fg-3);
  margin: 0;
}

@media (max-width: 720px) {
  .s-app__layout {
    grid-template-columns: 1fr;
  }

  .s-app__mockup {
    order: -1;
  }

  .s-app__phone {
    width: 160px;
    height: 300px;
  }
}
