.app-visual-section {
  background: #eef7f6;
  padding: 72px 0;
}

.app-visual {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: 32px;
  align-items: center;
}

.app-visual__copy h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.12;
}

.app-visual__copy p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.app-visual__bullets {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.app-visual__bullets span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.app-visual__bullets span::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: var(--teal);
  flex: 0 0 auto;
}

.phone-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: center;
}

.phone-mock {
  min-height: 460px;
  border-radius: 34px;
  padding: 14px;
  background: #111820;
  box-shadow: 0 24px 58px rgba(16, 33, 41, 0.2);
}

.phone-mock--offset {
  transform: translateY(28px);
}

.phone-screen {
  height: 100%;
  min-height: 432px;
  border-radius: 24px;
  overflow: hidden;
  background: #f7fbfc;
  color: #102129;
}

.phone-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px 8px;
  color: #5a6d76;
  font-size: 11px;
  font-weight: 800;
}

.phone-notch {
  width: 58px;
  height: 16px;
  border-radius: 99px;
  background: #111820;
}

.phone-body {
  padding: 14px;
}

.screen-card {
  border-radius: 16px;
  padding: 16px;
  background: #fff;
  border: 1px solid rgba(16, 33, 41, 0.08);
  box-shadow: 0 10px 24px rgba(16, 33, 41, 0.08);
}

.screen-card + .screen-card {
  margin-top: 12px;
}

.screen-label {
  color: var(--teal);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.screen-title {
  margin: 8px 0 10px;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
}

.screen-copy {
  margin: 0;
  color: #5a6d76;
  font-size: 13px;
  line-height: 1.55;
}

.progress-bar {
  height: 9px;
  border-radius: 99px;
  background: #dceceb;
  overflow: hidden;
  margin-top: 12px;
}

.progress-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--teal);
}

.mini-list {
  display: grid;
  gap: 9px;
  margin-top: 12px;
}

.mini-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  min-height: 36px;
  align-items: center;
  padding: 0 10px;
  border-radius: 10px;
  background: #edf7f6;
  color: #33515b;
  font-size: 12px;
  font-weight: 800;
}

.mini-chip {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  border-radius: 99px;
  background: rgba(13, 138, 136, 0.12);
  color: var(--deep);
  font-size: 11px;
  font-weight: 900;
}

.visual-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .app-visual {
    grid-template-columns: 1fr;
  }

  .phone-gallery {
    max-width: 620px;
  }
}

@media (max-width: 620px) {
  .app-visual-section {
    padding: 56px 0;
  }

  .phone-gallery {
    grid-template-columns: 1fr;
  }

  .phone-mock,
  .phone-screen {
    min-height: 390px;
  }

  .phone-mock--offset {
    transform: none;
  }
}
