/* Встраивание реального web-клиента (Expo) в лендинг */
.demo-section {
  padding: clamp(40px, 6vw, 72px) 0;
}

.demo-section .section-head {
  margin-bottom: 28px;
}

.app-embed-frame {
  position: relative;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: #f4f7fb;
  box-shadow: var(--shadow);
  overflow: hidden;
  height: min(78vh, 780px);
  min-height: 560px;
}

.app-embed-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: #f4f7fb;
}

.app-embed-fallback {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 100%;
  min-height: 320px;
  padding: 32px 24px;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}

.app-embed-fallback[hidden] {
  display: none;
}

.app-embed-fallback strong {
  color: var(--text);
  font-family: var(--display);
  font-size: 1.1rem;
}

.demo-hint {
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--muted);
}

@media (max-width: 900px) {
  /* На телефоне — мобильный layout приложения (без принудительной ширины 1024) */
  .app-embed-wrap {
    margin-inline: calc(50% - 50vw);
    width: 100vw;
    padding-inline: 14px;
    box-sizing: border-box;
  }

  .app-embed-frame {
    height: min(85dvh, 740px);
    min-height: 620px;
    border-radius: 18px;
  }

  .demo-hint {
    padding-inline: 4px;
  }
}
