:root {
  --bg: #ffffff;
  --bg-soft: #F4F9FD;
  --bg-blue: #EAF5FB;
  --text: #10243a;
  --muted: #5f7083;
  --line: #d9e7f0;
  --primary: #236D9E;
  --primary-dark: #15547d;
  --primary-soft: #dff0f8;
  --accent: #39b7e3;
  --success: #20b486;
  --card: #ffffff;
  --shadow: 0 24px 70px rgba(35, 109, 158, .14);
  --radius: 26px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; width: 100%; max-width: 100%; overflow-x: hidden; }
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(1180px, calc(100% - 40px));
  max-width: calc(100vw - 40px);
  margin: 0 auto;
}
.section-pad { padding: 104px 0; }
.soft-bg { background: var(--bg-soft); }

.site-header {
  position: fixed;
  width: 100%;
  max-width: 100vw;
  overflow-x: clip;
  inset: 0 0 auto 0;
  z-index: 50;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(217,231,240,.72);
}
.header-inner {
  min-width: 0;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  font-weight: 900;
  box-shadow: 0 14px 36px rgba(35, 109, 158, .28);
}
.brand strong { display: block; font-size: 17px; letter-spacing: -.02em; white-space: nowrap; }
.brand small { color: var(--muted); font-weight: 700; white-space: nowrap; }
.main-nav { display: flex; align-items: center; gap: 8px; }
.main-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: #456075;
  font-weight: 800;
  font-size: 14px;
  transition: .2s ease;
}
.main-nav a:hover, .main-nav a.is-active { background: var(--primary-soft); color: var(--primary-dark); }
.menu-toggle { display: none; border: 0; background: transparent; padding: 8px; }
.menu-toggle span { display: block; width: 26px; height: 2px; margin: 5px 0; background: var(--text); border-radius: 99px; }

.hero {
  max-width: 100vw;
  min-height: 760px;
  padding-top: 158px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(57,183,227,.20), transparent 34%),
    radial-gradient(circle at 12% 4%, rgba(35,109,158,.12), transparent 28%),
    linear-gradient(180deg, #F4F9FD 0%, #F4F9FD 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 110px -120px auto auto;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(35,109,158,.08);
  filter: blur(2px);
}
.hero-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 70px; align-items: center; position: relative; min-width: 0; }
.eyebrow {
  display: inline-flex;
  max-width: 100%;
  min-width: 0;
  flex-wrap: wrap;
  overflow-wrap: anywhere;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(35,109,158,.18);
  color: var(--primary-dark);
  background: rgba(223,240,248,.78);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
}
h1, h2, h3 { line-height: 1.08; margin: 0; letter-spacing: -.045em; }
h1 { font-size: clamp(42px, 6vw, 72px); margin-top: 24px; max-width: 740px; }
h2 { font-size: clamp(32px, 4vw, 52px); }
h3 { font-size: 23px; }
.lead { font-size: 21px; color: var(--muted); margin: 24px 0 0; max-width: 680px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.btn {
  display: inline-flex;
  max-width: 100%;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  font: inherit;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--primary); color: white; box-shadow: 0 18px 44px rgba(35,109,158,.28); }
.btn-primary:hover { background: var(--primary-dark); }
.btn-secondary { background: white; color: var(--primary-dark); border-color: var(--line); box-shadow: 0 14px 38px rgba(16,36,58,.07); }
.hero-points { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.hero-points span, .task-list span {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.78);
  border-radius: 999px;
  padding: 10px 14px;
  color: #426178;
  font-weight: 800;
  font-size: 14px;
}

 .hero-visual { min-height: 520px; position: relative; min-width: 0; max-width: 100%; }
.support-dashboard {
  position: relative;
  max-width: 100%;
  border-radius: 34px;
  overflow: hidden;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(217,231,240,.95);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  transform-origin: center;
}
.dashboard-browser {
  min-width: 0;
  min-height: 62px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 0 22px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff 0%, #f7fbfe 100%);
}
.browser-dots { display: flex; gap: 8px; }
.browser-dots i { width: 11px; height: 11px; border-radius: 50%; background: #c8d8e3; }
.browser-dots i:nth-child(2) { background: #d7e4ec; }
.browser-dots i:nth-child(3) { background: #b7d8e7; }
.browser-title { color: #26465f; font-weight: 900; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.browser-status {
  color: var(--primary-dark);
  background: var(--primary-soft);
  border: 1px solid rgba(35,109,158,.16);
  border-radius: 999px;
  padding: 7px 11px;
  font-weight: 900;
  font-size: 12px;
}
.dashboard-tabs {
  display: flex;
  gap: 10px;
  padding: 18px 22px 0;
  flex-wrap: wrap;
}
.dashboard-tabs span {
  border: 1px solid var(--line);
  background: #fff;
  color: #49677d;
  padding: 9px 13px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 13px;
}
.dashboard-tabs .is-active { background: var(--primary); color: #fff; border-color: var(--primary); }
.dashboard-content {
  min-width: 0;
  display: grid;
  grid-template-columns: 1.35fr .9fr;
  gap: 18px;
  padding: 22px;
}
.kpi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; min-width: 0; }
.kpi-card, .chart-card, .task-card {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 12px 36px rgba(16,36,58,.05);
}
.kpi-card { padding: 20px; min-height: 138px; }
.kpi-card small, .chart-head small, .task-card small { color: var(--muted); font-weight: 800; }
.kpi-card strong { display: block; margin-top: 8px; font-size: 19px; line-height: 1.2; }
.progress { height: 9px; border-radius: 999px; background: #e7f0f6; margin-top: 20px; overflow: hidden; }
.progress em { display: block; height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--primary), var(--accent)); }
.chart-card { padding: 20px; }
.dashboard-chart { margin-top: 16px; }
.chart-head { display: flex; justify-content: space-between; gap: 20px; font-weight: 900; }
.chart-bars { display: flex; align-items: end; gap: 12px; height: 150px; margin-top: 30px; }
.chart-bars i { flex: 1; border-radius: 14px 14px 0 0; background: linear-gradient(180deg, var(--accent), var(--primary)); opacity: .9; }
.side-column { display: grid; gap: 14px; align-content: stretch; min-width: 0; }
.task-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
}
.task-card span {
  width: 13px;
  height: 13px;
  margin-top: 4px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 6px rgba(35,109,158,.1);
}
.task-card.attention span { background: #f0ad4e; box-shadow: 0 0 0 6px rgba(240,173,78,.13); }
.task-card strong { display: block; font-size: 18px; margin-bottom: 5px; }
.task-card small { display: block; line-height: 1.45; }
.float-card { animation: float 6s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.split-grid, .time-grid, .reviews-grid, .contact-grid, .bot-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 72px;
  align-items: start;
}
.section-heading p, .text-block p { color: var(--muted); font-size: 18px; margin: 18px 0 0; }
.centered { text-align: center; max-width: 850px; margin: 0 auto 54px; }
.cards-grid { display: grid; gap: 22px; }
.services-grid { grid-template-columns: repeat(4, 1fr); }
.service-card, .format-card, .compare-card, .review-card, .step, .contact-form, .feature-card, .bot-panel, .bot-features article, .bot-offer {
  min-width: 0;
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(16, 36, 58, .06);
}
.service-card { padding: 28px; position: relative; overflow: hidden; }
.service-card::after {
  content: "";
  position: absolute;
  inset: auto -40px -44px auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--primary-soft);
}
.card-label {
  display: inline-grid;
  place-items: center;
  min-width: 58px;
  height: 42px;
  padding: 0 14px;
  border-radius: 16px;
  background: var(--primary-soft);
  color: var(--primary);
  font-weight: 900;
  margin-bottom: 22px;
}
.service-card p, .format-card p, .feature-card p { color: var(--muted); }
.service-card ul { margin-top: 18px; color: #435f77; }
.service-card li { margin: 8px 0; padding-left: 18px; position: relative; }
.service-card li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--primary); position: absolute; left: 0; top: 10px; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature-card { padding: 30px; min-height: 230px; transition: transform .2s ease, box-shadow .2s ease; }
.feature-card:hover { transform: translateY(-5px); box-shadow: 0 24px 60px rgba(35,109,158,.13); }
.feature-card span { color: var(--primary); font-weight: 900; display: block; margin-bottom: 34px; }
.feature-card h3 { margin-bottom: 14px; }

.bot-grid { align-items: center; }
.bot-offer {
  margin-top: 28px;
  padding: 22px;
  background: linear-gradient(135deg, rgba(35,109,158,.08), rgba(57,183,227,.12));
}
.bot-offer strong { display: block; color: var(--primary-dark); font-size: 19px; margin-bottom: 8px; }
.bot-offer span { color: var(--muted); font-weight: 700; }
.bot-panel { padding: 28px; background: #fff; }
.bot-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.bot-panel-head span { color: #426178; font-weight: 900; }
.bot-panel-head strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  color: #fff;
  background: var(--primary);
  font-size: 14px;
}
.bot-features { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.bot-features article { padding: 22px; box-shadow: none; background: #F8FCFE; }
.bot-features h3 { font-size: 19px; margin-bottom: 10px; }
.bot-features p { margin: 0; color: var(--muted); }

.compare-card { display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; }
.compare-col { padding: 32px; }
.compare-col.negative { background: #fff8f5; }
.compare-col.positive { background: #eef8fd; }
.compare-col li { margin: 12px 0; color: #405b70; }
.compare-col li::before { content: "• "; color: var(--primary); font-weight: 900; }
.tasks-section { background: var(--bg-soft); color: var(--text); }
.contact-section .eyebrow { background: rgba(255,255,255,.1); color: white; border-color: rgba(255,255,255,.18); }
.tasks-section .section-heading p { color: var(--muted); }
.task-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.task-list span { background: #fff; color: #426178; border-color: var(--line); }
.review-controls { display: flex; gap: 10px; margin-top: 28px; }
.review-btn { width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--line); background: white; cursor: pointer; font-size: 20px; transition: transform .2s ease; }
.review-btn:hover { transform: translateY(-2px); }
.review-slider { position: relative; min-height: 355px; }
.review-card { position: absolute; inset: 0; padding: 42px; opacity: 0; transform: translateX(24px); pointer-events: none; transition: opacity .35s ease, transform .35s ease; }
.review-card.is-active { opacity: 1; transform: translateX(0); pointer-events: auto; }
.review-card p { font-size: 22px; margin: 0; }
.review-card footer { margin-top: 30px; color: var(--primary); font-weight: 900; }
.formats-grid { grid-template-columns: repeat(3, 1fr); }
.format-card { padding: 34px; }
.format-card.featured { border-color: rgba(35,109,158,.42); box-shadow: 0 26px 70px rgba(35,109,158,.14); transform: translateY(-10px); }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step { padding: 28px; }
.step span { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 16px; background: var(--primary); color: white; font-weight: 900; margin-bottom: 16px; }
.step p { font-weight: 900; margin: 0; }
.contact-section { background: linear-gradient(135deg, #0f2e47 0%, #123e5f 52%, #236D9E 100%); color: white; }
.contact-section .section-heading p { color: rgba(255,255,255,.76); }
.contact-list { display: grid; gap: 12px; margin-top: 30px; }
.contact-list a { color: white; font-weight: 900; font-size: 20px; }
.contact-form { padding: 32px; background: white; color: var(--text); }
.form-step-title { font-weight: 900; color: var(--primary-dark); margin: 4px 0 14px; }
.choice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 24px; }
.choice { margin: 0; display: block; }
.choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice span { display: block; border: 1px solid var(--line); border-radius: 16px; padding: 12px 14px; color: #426178; font-weight: 900; cursor: pointer; transition: .2s ease; }
.choice input:checked + span { background: var(--primary-soft); border-color: rgba(35,109,158,.42); color: var(--primary-dark); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { display: grid; gap: 8px; font-weight: 900; margin-bottom: 16px; }
input, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 15px;
  font: inherit;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
input:focus, textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(35,109,158,.1); }
textarea { resize: vertical; }
.agree { display: flex; grid-template-columns: auto 1fr; align-items: flex-start; gap: 10px; color: var(--muted); font-weight: 700; }
.agree input { width: auto; margin-top: 4px; }
.hidden-field { position: absolute; left: -9999px; opacity: 0; }
.form-submit { width: 100%; }
.form-status { min-height: 24px; margin: 14px 0 0; font-weight: 800; }
.form-status.success { color: var(--success); }
.form-status.error { color: #d84a4a; }
.site-footer { background: #0b2235; color: rgba(255,255,255,.76); padding: 28px 0; }
.footer-inner { display: flex; align-items: center; justify-content: center; gap: 20px; }
.footer-inner p { margin: 0; text-align: center; }

.scroll-top-btn {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  height: 48px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-weight: 900;
  font-family: inherit;
  box-shadow: 0 18px 42px rgba(35,109,158,.34);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity .22s ease, transform .22s ease, background .2s ease, box-shadow .2s ease;
}
.scroll-top-btn:hover { background: var(--primary-dark); box-shadow: 0 20px 48px rgba(18,62,95,.38); }
.scroll-top-btn.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }

@media (max-width: 1060px) {
  .services-grid, .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-grid, .split-grid, .time-grid, .reviews-grid, .contact-grid, .bot-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 460px; }
}
@media (max-width: 820px) {
  .scroll-top-btn { right: 16px; bottom: 16px; min-width: 98px; height: 44px; padding: 0 14px; font-size: 13px; }
  .section-pad { padding: 76px 0; }
  .hero { padding-top: 124px; }
  .menu-toggle { display: block; }
  .main-nav {
    position: fixed;
    left: 20px;
    right: 20px;
    top: 86px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow);
  }
  body.menu-open .main-nav { display: flex; }
  .main-nav a { padding: 14px 16px; }
  .hero-visual { min-height: auto; }
  .support-dashboard { border-radius: 28px; }
  .dashboard-content { grid-template-columns: 1fr; }
  .side-column { grid-template-columns: 1fr 1fr 1fr; }
  .formats-grid, .steps-grid, .bot-features { grid-template-columns: 1fr; }
  .compare-card { grid-template-columns: 1fr; }
  .review-slider { min-height: 430px; }
  .form-row, .choice-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .container { width: calc(100% - 28px); max-width: calc(100vw - 28px); }
  .header-inner { gap: 12px; }
  .brand { gap: 10px; }
  .brand-mark { width: 42px; height: 42px; border-radius: 14px; flex: 0 0 auto; }
  .brand strong { font-size: 16px; }
  .brand small { font-size: 13px; }
  .menu-toggle { flex: 0 0 auto; }
  .eyebrow { font-size: 12px; line-height: 1.35; }
  h1 { font-size: 38px; }
  h2 { font-size: 30px; }
  .lead { font-size: 18px; }
  .services-grid, .feature-grid { grid-template-columns: 1fr; }
  .kpi-grid, .side-column { grid-template-columns: 1fr; }
  .dashboard-browser { grid-template-columns: auto 1fr; }
  .browser-status { display: none; }
  .dashboard-content { padding: 16px; }
  .dashboard-tabs { padding: 16px 16px 0; }
  .review-card { padding: 28px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}


/* Telegram bot detail page */
.inline-link {
  display: inline-flex;
  align-items: center;
  margin-top: 16px;
  color: var(--primary-dark);
  font-weight: 900;
  text-decoration: none;
}
.inline-link:hover { color: var(--primary); }

.page-hero {
  padding-top: 150px;
  min-height: auto;
}
.page-hero .hero-grid { grid-template-columns: 1fr .9fr; }
.bot-detail-visual {
  display: grid;
  gap: 18px;
  min-width: 0;
}
.bot-phone-card, .bot-admin-card, .screenshot-card, .process-card, .stat-card {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.92);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.bot-phone-card {
  max-width: 380px;
  margin-left: auto;
  padding: 18px;
}
.phone-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  color: #426178;
  font-weight: 900;
  font-size: 13px;
}
.bot-chat { display: grid; gap: 12px; padding-top: 16px; }
.chat-bubble {
  padding: 13px 15px;
  border-radius: 18px;
  background: #F4F9FD;
  color: #335269;
  font-weight: 700;
}
.chat-bubble.user { background: var(--primary); color: #fff; justify-self: end; }
.bot-buttons { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 4px; }
.bot-buttons span {
  padding: 11px 10px;
  border-radius: 14px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}
.bot-admin-card { padding: 20px; }
.bot-admin-card h3 { margin-bottom: 14px; }
.admin-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}
.admin-row:first-of-type { border-top: 0; }
.admin-row small { color: var(--muted); font-weight: 800; }
.admin-row strong { color: var(--text); }
.status-pill {
  border-radius: 999px;
  padding: 7px 10px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}
.bot-detail-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.bot-detail-card {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 16px 42px rgba(16,36,58,.07);
}
.bot-detail-card span { color: var(--primary); font-weight: 900; display: block; margin-bottom: 20px; }
.bot-detail-card h3 { margin-bottom: 12px; }
.bot-detail-card p { color: var(--muted); margin: 0; }
.screens-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.screenshot-card { overflow: hidden; background: #fff; }
.screenshot-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}
.screenshot-top strong { font-size: 18px; }
.screenshot-top span { color: var(--muted); font-weight: 800; font-size: 13px; }
.mock-screen {
  min-height: 290px;
  padding: 22px;
  background: linear-gradient(135deg, #F4F9FD 0%, #EAF5FB 100%);
  display: grid;
  gap: 14px;
}
.mock-line, .mock-card, .mock-chart, .mock-table-row {
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(217,231,240,.9);
  border-radius: 16px;
}
.mock-line { height: 18px; width: 70%; }
.mock-line.short { width: 44%; }
.mock-card { padding: 18px; }
.mock-card strong { display: block; color: var(--primary-dark); margin-bottom: 6px; }
.mock-card small { color: var(--muted); font-weight: 800; }
.mock-chart { height: 110px; display: flex; align-items: end; gap: 10px; padding: 16px; }
.mock-chart i { flex: 1; border-radius: 8px 8px 0 0; background: var(--primary); opacity: .75; }
.mock-table-row { height: 44px; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.process-card { padding: 24px; box-shadow: none; }
.process-card span { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 14px; color: #fff; background: var(--primary); font-weight: 900; margin-bottom: 16px; }
.process-card p { color: var(--muted); margin: 10px 0 0; }
.stats-mini-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 28px; }
.stat-card { padding: 22px; box-shadow: none; }
.stat-card strong { display: block; font-size: 30px; color: var(--primary-dark); letter-spacing: -.04em; }
.stat-card span { color: var(--muted); font-weight: 800; }
.bot-cta-box {
  border-radius: 36px;
  padding: 44px;
  background: #fff;
  color: var(--text);
  box-shadow: var(--shadow);
  border: 1px solid rgba(217,231,240,.9);
}
.bot-cta-box p { color: var(--muted); }

@media (max-width: 1060px) {
  .page-hero .hero-grid, .bot-detail-grid, .screens-grid, .process-grid, .stats-mini-grid { grid-template-columns: 1fr 1fr; }
  .bot-phone-card { margin-left: 0; max-width: 100%; }
}
@media (max-width: 700px) {
  .page-hero { padding-top: 122px; }
  .page-hero .hero-grid, .bot-detail-grid, .screens-grid, .process-grid, .stats-mini-grid { grid-template-columns: 1fr; }
  .bot-buttons { grid-template-columns: 1fr; }
  .bot-cta-box { padding: 28px; border-radius: 28px; }
  .mock-screen { min-height: 240px; }
}
