.info-page {
  --info-ink: #24211e;
  --info-muted: #756f68;
  --info-panel: #fff;
  --info-soft: #eceff1;
  --info-accent: #e5c68d;
  color: var(--info-ink);
  background: var(--info-soft);
}

.info-page main {
  min-height: 70vh;
}

.info-hero {
  position: relative;
  overflow: hidden;
  min-height: 590px;
  padding: 110px max(5vw, 48px) 90px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(380px, .85fr);
  align-items: center;
  gap: 70px;
  background:
    radial-gradient(circle at 85% 20%, rgba(229, 198, 141, .32), transparent 34%),
    linear-gradient(135deg, #fff 0%, #f8f4ec 100%);
}

.info-eyebrow {
  margin: 0 0 22px;
  color: #95611d;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.info-hero h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(62px, 7.2vw, 126px);
  line-height: .92;
  letter-spacing: -.065em;
}

.info-hero__lead {
  max-width: 760px;
  margin: 34px 0 0;
  color: var(--info-muted);
  font-size: clamp(20px, 1.5vw, 28px);
  line-height: 1.55;
}

.info-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.info-button {
  min-height: 60px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(36, 33, 30, .14);
  border-radius: 999px;
  color: var(--info-ink);
  background: #fff;
  font-size: 17px;
  font-weight: 750;
  text-decoration: none;
  transition: transform .18s ease, background .18s ease;
}

.info-button:hover {
  transform: translateY(-2px);
}

.info-button--dark {
  color: #fff;
  border-color: var(--kh-header, #090b10);
  background: var(--kh-header, #090b10);
}

.info-button--accent {
  border-color: var(--info-accent);
  background: var(--info-accent);
}

.info-hero__visual {
  position: relative;
  min-height: 430px;
}

.info-orbit {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(36, 33, 30, .1);
  border-radius: 50%;
}

.info-orbit::before,
.info-orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: var(--kh-header, #090b10);
  box-shadow: 0 28px 70px rgba(36, 33, 30, .18);
}

.info-orbit::before {
  width: 230px;
  height: 230px;
  top: 26px;
  right: 36px;
}

.info-orbit::after {
  width: 148px;
  height: 148px;
  left: 35px;
  bottom: 30px;
  background: var(--info-accent);
}

.info-orbit__mark {
  position: absolute;
  z-index: 2;
  width: 132px;
  height: 132px;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  color: var(--kh-text, #111318);
  background: var(--kh-surface-solid, #fff);
  font-size: 58px;
  font-weight: 900;
  box-shadow: 0 24px 60px rgba(36, 33, 30, .16);
}

.info-section {
  padding: 100px max(5vw, 48px);
}

.info-section--white {
  background: var(--kh-surface-solid, #fff);
}

.info-section__head {
  max-width: 920px;
  margin-bottom: 48px;
}

.info-section__head h2 {
  margin: 0;
  font-size: clamp(46px, 5vw, 82px);
  line-height: 1;
  letter-spacing: -.05em;
}

.info-section__head p {
  margin: 22px 0 0;
  color: var(--info-muted);
  font-size: 20px;
  line-height: 1.55;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.info-card {
  min-height: 290px;
  padding: 34px;
  border: 1px solid var(--kh-line, rgba(19, 27, 39, .1));
  border-radius: 34px;
  background: var(--info-panel);
}

.info-card__number {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 48px;
  border-radius: 50%;
  color: var(--kh-accent-ink, #fff);
  background: var(--info-accent);
  font-weight: 850;
}

.info-card h3 {
  margin: 0 0 14px;
  font-size: 27px;
  line-height: 1.12;
}

.info-card p {
  margin: 0;
  color: var(--info-muted);
  font-size: 17px;
  line-height: 1.55;
}

.info-note {
  padding: 42px;
  border-radius: 34px;
  color: #fff;
  background: var(--kh-header, #090b10);
  font-size: 20px;
  line-height: 1.55;
}

.info-note strong {
  color: var(--info-accent);
}

.faq-shell {
  max-width: 1380px;
  margin: 0 auto;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  border: 1px solid rgba(36, 33, 30, .12);
  border-radius: 24px;
  background: #fff;
}

.faq-list summary {
  position: relative;
  padding: 27px 74px 27px 30px;
  cursor: pointer;
  list-style: none;
  font-size: 21px;
  font-weight: 780;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 28px;
  transform: translateY(-50%);
  font-size: 30px;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-answer {
  max-width: 980px;
  padding: 0 30px 30px;
  color: var(--info-muted);
  font-size: 17px;
  line-height: 1.65;
}

.faq-answer a {
  color: #95611d;
}

.bot-hero {
  color: #fff;
  background:
    radial-gradient(circle at 82% 30%, rgba(229, 198, 141, .32), transparent 28%),
    linear-gradient(135deg, #201d19 0%, #151515 100%);
}

.bot-hero .info-eyebrow,
.bot-hero .info-hero__lead {
  color: var(--info-accent);
}

.bot-phone-visual {
  min-height: 520px;
  display: grid;
  place-items: center;
}

.bot-phone {
  position: relative;
  width: min(370px, 100%);
  height: 540px;
  padding: 16px;
  border: 12px solid #d9d9d9;
  border-radius: 48px;
  background: #fff;
  box-shadow: 0 36px 80px rgba(0, 0, 0, .36);
  transform: rotate(-1.5deg);
}

.bot-phone__speaker {
  position: absolute;
  z-index: 3;
  top: -12px;
  left: 50%;
  width: 118px;
  height: 28px;
  transform: translateX(-50%);
  border-radius: 0 0 18px 18px;
  background: #d9d9d9;
}

.bot-phone__speaker::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  width: 48px;
  height: 6px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #aaa;
}

.bot-phone__screen {
  height: 100%;
  padding: 26px 12px 12px;
  overflow: hidden;
  border-radius: 28px;
  color: #171717;
  background: #dcefd0;
}

.bot-phone__brand {
  min-height: 54px;
  padding: 0 8px 12px;
  display: flex;
  align-items: center;
  gap: 11px;
}

.bot-phone__logo {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--kh-accent-ink, #fff);
  background: var(--info-accent);
  font-weight: 900;
}

.bot-phone__brand strong,
.bot-phone__brand small {
  display: block;
}

.bot-phone__brand strong {
  font-size: 18px;
}

.bot-phone__brand small {
  margin-top: 2px;
  color: #6f6c66;
  font-size: 12px;
}

.bot-phone__shots {
  position: relative;
  height: calc(100% - 82px);
  overflow: hidden;
  border-radius: 22px;
  background: #cfe5bc;
}

.bot-phone__shot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 8px;
  object-fit: contain;
  opacity: 0;
  animation: bot-phone-shot 12s infinite;
}

.bot-phone__shot--notification {
  animation-delay: 0s;
}

.bot-phone__shot--subscriptions {
  animation-delay: 6s;
}

.bot-phone__dots {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 13px;
  display: flex;
  gap: 7px;
  transform: translateX(-50%);
}

.bot-phone__dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(33, 31, 27, .3);
}

.bot-phone__dots i:first-child {
  background: #2a8bdc;
}

@keyframes bot-phone-shot {
  0%, 46% {
    opacity: 1;
    transform: translateX(0);
  }
  50%, 96% {
    opacity: 0;
    transform: translateX(-12px);
  }
  97%, 100% {
    opacity: 0;
    transform: translateX(12px);
  }
}

.bot-example {
  gap: 20px;
}

.bot-message {
  min-height: 180px;
  padding: 28px;
  border-radius: 26px;
  color: #fff;
  background: #202a35;
  box-shadow: 0 20px 50px rgba(36, 33, 30, .12);
}

.bot-message__tag {
  display: inline-flex;
  padding: 7px 12px;
  margin-bottom: 24px;
  border-radius: 999px;
  color: var(--kh-accent-ink, #fff);
  background: var(--info-accent);
  font-size: 13px;
  font-weight: 850;
}

.bot-message strong {
  display: block;
  margin-bottom: 10px;
  font-size: 22px;
}

.bot-message p {
  margin: 0;
  color: rgba(255, 255, 255, .72);
  line-height: 1.5;
}

[data-theme="dark"] .info-page {
  --info-ink: var(--kh-text, #f5f7fb);
  --info-muted: var(--kh-text-soft, #a7afbc);
  --info-panel: var(--kh-surface-solid, #151922);
  --info-soft: var(--kh-bg, #090b10);
}

[data-theme="dark"] .info-hero,
[data-theme="dark"] .info-section--white {
  background: var(--kh-surface-solid, #151922);
}

[data-theme="dark"] .info-button,
[data-theme="dark"] .faq-list details {
  color: var(--kh-text, #f5f7fb);
  border-color: var(--kh-line, rgba(255, 255, 255, .09));
  background: var(--kh-surface-solid, #151922);
}

[data-theme="dark"] .info-button--dark,
[data-theme="dark"] .info-note {
  color: var(--kh-accent-ink, #fff);
  background: var(--info-accent);
}

@media (max-width: 1024px) {
  .info-hero {
    min-height: 0;
    padding: 82px 40px 72px;
    grid-template-columns: 1fr;
  }

  .info-hero__visual {
    min-height: 330px;
  }

  .bot-phone-visual {
    min-height: 500px;
  }

  .info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .info-section {
    padding: 76px 40px;
  }
}

@media (max-width: 720px) {
  .info-page main {
    padding-bottom: 86px;
  }

  .info-hero {
    padding: 62px 24px 54px;
    gap: 42px;
  }

  .info-hero h1 {
    font-size: clamp(54px, 18vw, 82px);
  }

  .info-hero__lead {
    font-size: 18px;
  }

  .info-hero__visual {
    min-height: 260px;
  }

  .bot-phone-visual {
    min-height: 430px;
  }

  .bot-phone {
    width: min(286px, 92vw);
    height: 420px;
    padding: 11px;
    border-width: 9px;
    border-radius: 38px;
    transform: none;
  }

  .bot-phone__speaker {
    top: -9px;
    width: 94px;
    height: 23px;
  }

  .bot-phone__screen {
    padding: 20px 8px 8px;
    border-radius: 23px;
  }

  .bot-phone__brand {
    min-height: 47px;
    padding-bottom: 8px;
  }

  .bot-phone__logo {
    width: 36px;
    height: 36px;
  }

  .bot-phone__shots {
    height: calc(100% - 70px);
    border-radius: 17px;
  }

  .info-orbit::before {
    width: 150px;
    height: 150px;
  }

  .info-orbit::after {
    width: 100px;
    height: 100px;
  }

  .info-orbit__mark {
    width: 96px;
    height: 96px;
    font-size: 42px;
  }

  .info-section {
    padding: 62px 24px;
  }

  .info-section__head h2 {
    font-size: 46px;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .info-card {
    min-height: 0;
    padding: 28px;
  }

  .info-card__number {
    margin-bottom: 32px;
  }

  .info-actions {
    display: grid;
  }

  .info-button {
    width: 100%;
  }

  .faq-list summary {
    padding: 23px 64px 23px 24px;
    font-size: 18px;
  }

  .faq-answer {
    padding: 0 24px 25px;
  }
}
