:root {
  --tg-blue: #0088cc;
  --tg-blue-soft: rgba(28, 147, 227, .08);
  --tg-blue-line: #179cde;
  --tg-text: #333333;
  --tg-heading: #383a3b;
  --tg-muted: #737c86;
  --tg-soft-muted: #808080;
  --tg-border: #eeeeee;
  --tg-card: #ffffff;
  --tg-bg: #ffffff;
  --tg-page: #f7fbfe;
  --tg-green: #2fb344;
  --tg-warning: #e6a700;
  --shadow-soft: 0 18px 42px rgba(23, 33, 43, .08);
  --shadow-premium: 0 16px 34px rgba(23, 33, 43, .075);
  --shadow-premium-blue: 0 18px 38px rgba(28, 147, 227, .09);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--tg-text);
  background: var(--tg-bg);
  font-family: "Lucida Grande", "Lucida Sans Unicode", Arial, Helvetica, Verdana, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  color: var(--tg-blue);
  text-decoration: none;
}

a:visited {
  color: var(--tg-blue);
}

a:hover {
  color: var(--tg-blue);
  text-decoration: underline;
}

a:focus {
  color: var(--tg-blue);
}

a:focus:not(:focus-visible) {
  outline: none;
  text-decoration: none;
}

a:focus-visible {
  outline: 2px solid rgba(28, 147, 227, .46);
  outline-offset: 3px;
  text-decoration: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.term-tip {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 10px;
  height: 10px;
  margin: 0 1px 0 3px;
  padding: 0;
  border: 1px solid rgba(0, 136, 204, .5);
  border-radius: 50%;
  color: var(--tg-blue);
  background: #f2f9fe;
  font: 700 7px/1 Arial, Helvetica, sans-serif;
  vertical-align: text-top;
  cursor: help;
}

.term-tip::after {
  content: attr(data-tip);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 9px);
  z-index: 40;
  width: min(260px, calc(100vw - 40px));
  padding: 10px 12px 10px 14px;
  border: 1px solid #d9ebf7;
  border-left: 4px solid var(--tg-blue);
  border-radius: 5px;
  color: #17212b;
  background: #eef7fd;
  box-shadow: 0 12px 28px rgba(16, 36, 53, .12);
  font: 400 13px/1.45 "Lucida Grande", "Lucida Sans Unicode", Arial, Helvetica, Verdana, sans-serif;
  text-align: left;
  white-space: normal;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 4px);
  transition: opacity .16s ease, transform .16s ease;
}

.term-tip::before {
  display: none;
}

.term-tip:hover,
.term-tip:focus-visible {
  border-color: rgba(0, 136, 204, .7);
  color: var(--tg-blue);
  background: #e8f5fd;
  outline: none;
}

.term-tip:hover::before,
.term-tip:hover::after,
.term-tip:focus-visible::before,
.term-tip:focus-visible::after {
  opacity: 1;
  transform: translate(-50%, 0);
}

.has-floating-tooltips .term-tip::before,
.has-floating-tooltips .term-tip::after {
  display: none;
}

.floating-tip {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
  max-width: min(280px, calc(100vw - 24px));
  padding: 10px 12px 10px 14px;
  border: 1px solid #d9ebf7;
  border-left: 4px solid var(--tg-blue);
  border-radius: 5px;
  color: #17212b;
  background: #eef7fd;
  box-shadow: 0 12px 28px rgba(16, 36, 53, .12);
  font: 400 13px/1.45 "Lucida Grande", "Lucida Sans Unicode", Arial, Helvetica, Verdana, sans-serif;
  text-align: left;
  pointer-events: none;
}

.floating-tip::after {
  display: none;
}

.floating-tip[data-placement="bottom"]::after {
  display: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 max(18px, calc((100vw - 1010px) / 2));
  background: rgba(255, 255, 255, .84);
  border-bottom: 1px solid #e8e8e8;
  backdrop-filter: blur(25px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--tg-heading);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
}

.brand:hover { text-decoration: none; }

.brand-mark {
  display: inline-block;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: url("t_logo_sprite.svg") -480px 0 / 992px 32px no-repeat;
  flex: 0 0 auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 15px;
  line-height: 48px;
}

.site-nav a {
  color: var(--tg-blue);
  font-weight: 400;
}

.nav-cta,
.nav-cta:visited,
.nav-cta:focus,
.nav-cta:active {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 15px;
  border-radius: 17px;
  color: #fff !important;
  background: #1c93e3;
  font-weight: 700 !important;
  line-height: 34px;
  text-decoration: none;
}

.nav-cta:hover {
  color: #fff !important;
  background: #087fbd;
  text-decoration: none;
}

.nav-toggle { display: none; }

h1, h2, h3, h4, h5, h6 {
  position: relative;
  margin: 20px 0 10px;
  color: var(--tg-heading);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
}

h1 {
  font-size: 20px;
  line-height: 1.2;
  margin: 32px 0 12px;
}

h2, h3 {
  font-size: 20px;
  line-height: 1.25;
  margin-top: 32px;
  margin-bottom: 10px;
}

h4 {
  font-size: 16px;
  line-height: 1.4;
  margin-top: 29px;
  margin-bottom: 7px;
}

p { margin: 0 0 10px; }

strong { color: #303335; }

.eyebrow {
  margin: 0 0 9px;
  color: var(--tg-blue);
  font-size: 13px;
  font-weight: 700;
  line-height: 18px;
  letter-spacing: 0;
  text-transform: none;
}

main {
  max-width: 100%;
}

.hero,
.section,
.legal {
  max-width: 800px;
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 22px;
  padding-top: 36px;
  padding-bottom: 28px;
}

.hero-copy {
  max-width: 600px;
}

.hero-text {
  max-width: 620px;
  color: var(--tg-text);
  font-size: 14px;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 20px;
}

.button,
.button:visited,
.button:focus,
.button:active {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  max-width: 100%;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  line-height: 40px;
  text-align: center;
  white-space: nowrap;
  text-decoration: none;
}

.button:hover {
  text-decoration: none;
}

.button-primary,
.button-primary:visited,
.button-primary:focus,
.button-primary:active {
  color: #fff;
  background: #1c93e3;
  border-color: #1c93e3;
}

.button-primary:hover {
  color: #fff;
  background: #087fbd;
  border-color: #087fbd;
}

.button-secondary,
.button-secondary:visited,
.button-secondary:focus,
.button-secondary:active {
  color: var(--tg-blue);
  background: transparent;
  border-color: rgba(0, 136, 204, .28);
}

.button-secondary:hover {
  background: rgba(0, 136, 204, .07);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 600px;
  margin: 6px 0 0;
}

.hero-stats div {
  padding: 11px 12px;
  border: 1px solid var(--tg-border);
  border-radius: 4px;
  background: #fff;
}

.hero-stats dt {
  color: var(--tg-blue);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.1;
}

.hero-stats dd {
  margin: 4px 0 0;
  color: var(--tg-muted);
  font-size: 13px;
  line-height: 1.35;
}

.premium-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 13px;
}

.premium-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid #d9ebf7;
  border-radius: 4px;
  color: #546172;
  background: #fff;
  font-size: 12px;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 360px;
  margin-top: 10px;
  border-top: 1px solid var(--tg-border);
  border-bottom: 1px solid var(--tg-border);
  background: linear-gradient(180deg, #fff, #f7fbfe);
}

.phone-mockup {
  position: absolute;
  right: 38px;
  top: 28px;
  width: 250px;
  min-height: 322px;
  padding: 22px 14px 14px;
  border: 8px solid #17212b;
  border-radius: 34px;
  background: #fafdff;
  box-shadow: var(--shadow-soft);
}

.phone-top {
  width: 62px;
  height: 6px;
  margin: 0 auto 20px;
  border-radius: 999px;
  background: #17212b;
}

.chat,
.scan-card,
.ai-row {
  font-size: 12px;
  line-height: 1.35;
}

.chat {
  padding: 9px 11px;
  margin-bottom: 9px;
  border-radius: 14px;
}

.chat-user {
  margin-right: 16px;
  background: #fff;
  border: 1px solid #d6e6f0;
}

.chat-bot {
  margin-left: 28px;
  color: #fff;
  background: #1c93e3;
}

.scan-card {
  display: grid;
  gap: 5px;
  margin-top: 14px;
  padding: 12px;
  border: 1px solid #d6e6f0;
  border-radius: 4px;
  background: #fff;
}

.scan-card span {
  position: relative;
  display: block;
  padding-left: 14px;
  color: var(--tg-muted);
}

.scan-card span::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--tg-green);
}

.ai-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  margin-top: 10px;
}

.ai-row span {
  min-height: 28px;
  display: grid;
  place-items: center;
  border-radius: 4px;
  color: var(--tg-blue);
  background: var(--tg-blue-soft);
  font-size: 11px;
  font-weight: 700;
}

.operator-panel {
  position: absolute;
  left: 24px;
  top: 74px;
  width: 285px;
  padding: 14px;
  border: 1px solid var(--tg-border);
  border-left: 4px solid var(--tg-blue-line);
  border-radius: 4px;
  background: rgba(255, 255, 255, .94);
  box-shadow: var(--shadow-soft);
}

.panel-header {
  padding-bottom: 9px;
  margin-bottom: 9px;
  border-bottom: 1px solid var(--tg-border);
  color: var(--tg-heading);
  font-weight: 700;
}

.panel-item {
  position: relative;
  padding: 8px 8px 8px 23px;
  color: var(--tg-muted);
  border-radius: 4px;
}

.panel-item::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 16px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--tg-green);
}

.panel-item.warn::before { background: var(--tg-warning); }

.section {
  padding-top: 16px;
  padding-bottom: 16px;
}

.section::before {
  content: "";
  display: block;
  border-top: 1px solid var(--tg-border);
  margin: 0 0 28px;
}

.section-heading {
  margin-bottom: 18px;
}

.section-heading p:not(.eyebrow),
.split p,
.cta-section p:not(.eyebrow) {
  color: var(--tg-text);
  font-size: 14px;
  line-height: 1.5;
}

.cards,
.pricing-grid,
.security-grid,
.workflow,
.pain-solution-list,
.channel-grid,
.setup-steps {
  display: grid;
  gap: 12px;
}

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

.card,
.price-card,
.security-grid article,
.workflow article,
.pain-solution-list article,
.trust-card,
.contact-line,
.request-card,
.channel-card,
.setup-steps article {
  position: relative;
  padding: 16px 17px;
  border: 1px solid var(--tg-border);
  border-radius: 4px;
  background: #fff;
  transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease, background .22s ease;
}

.card:hover,
.security-grid article:hover,
.workflow article:hover,
.pain-solution-list article:hover,
.trust-card:hover,
.contact-line:hover,
.request-card:hover,
.channel-card:hover,
.setup-steps article:hover {
  border-color: rgba(0, 136, 204, .24);
  box-shadow: var(--shadow-premium);
  transform: translateY(-2px);
}

.card::after,
.security-grid article::after,
.workflow article::after,
.pain-solution-list article::after,
.trust-card::after,
.contact-line::after,
.request-card::after,
.channel-card::after,
.setup-steps article::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  top: 0;
  height: 2px;
  opacity: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #2aabee, transparent);
  transform: translateY(-1px);
  transition: opacity .22s ease;
}

.card:hover::after,
.security-grid article:hover::after,
.workflow article:hover::after,
.pain-solution-list article:hover::after,
.trust-card:hover::after,
.contact-line:hover::after,
.request-card:hover::after,
.channel-card:hover::after,
.setup-steps article:hover::after {
  opacity: .9;
}

.card h3,
.price-card h3,
.security-grid h3,
.workflow h3,
.pain-solution-list h3,
.trust-card h3,
.channel-card h3,
.setup-steps h3 {
  font-size: 16px;
  line-height: 1.35;
  margin: 0 0 7px;
}

.card p,
.security-grid p,
.workflow p,
.price-card li,
.benefits li,
.faq p,
.pain-solution-list p,
.trust-card p,
.channel-card p,
.channel-note p,
.setup-steps p {
  color: var(--tg-text);
  font-size: 14px;
  line-height: 1.55;
}

.personal-channel {
  padding-bottom: 18px;
}

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

.channel-card {
  border-left: 4px solid var(--tg-blue-line);
  background: linear-gradient(180deg, #fff, #fbfdff);
}

.channel-note {
  margin-top: 14px;
  padding: 16px 18px;
  border: 1px solid #d9ebf7;
  border-left: 4px solid var(--tg-blue-line);
  border-radius: 4px;
  background: var(--tg-blue-soft);
}

.channel-note h3 {
  margin-top: 0;
  font-size: 16px;
}

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

.setup-panel {
  margin-top: 28px;
  padding: 18px 18px 16px;
  border: 1px solid #d9ebf7;
  border-left: 4px solid var(--tg-blue-line);
  border-radius: 4px;
  background: linear-gradient(180deg, #fff, #f8fcff);
}

.setup-panel .section-heading {
  margin-bottom: 14px;
}

.setup-panel blockquote {
  margin-bottom: 0;
}

.setup-steps article {
  background: #fff;
}

.setup-steps span {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-bottom: 10px;
  border-radius: 50%;
  color: #fff;
  background: #1c93e3;
  font-size: 12px;
  font-weight: 700;
}

.pain-solution-list {
  gap: 14px;
}

.pain-solution-list article {
  position: relative;
  border-left: 4px solid var(--tg-blue-line);
  background: linear-gradient(180deg, #fff, #fbfdff);
}

.pain-solution-list h4 {
  margin-top: 17px;
  margin-bottom: 6px;
  color: var(--tg-blue);
  font-size: 14px;
}

.pain-tag {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  margin-bottom: 9px;
  padding: 0 8px;
  border-radius: 4px;
  color: var(--tg-blue);
  background: var(--tg-blue-soft);
  font-size: 12px;
  font-weight: 700;
}

.impact {
  margin-bottom: 0;
  padding: 9px 11px;
  border-radius: 4px;
  color: #546172 !important;
  background: var(--tg-blue-soft);
}

.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.feature-list {
  display: grid;
  gap: 10px;
}

.feature-list div {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: start;
  gap: 12px;
  padding: 12px 14px;
  border-left: 4px solid var(--tg-blue-line);
  background: var(--tg-blue-soft);
}

.feature-list span {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  color: #fff;
  background: #1c93e3;
  font-size: 12px;
  font-weight: 700;
}

.feature-list p {
  margin: 0;
  color: var(--tg-text);
  font-size: 14px;
}

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

.step {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-bottom: 10px;
  border-radius: 50%;
  color: #fff;
  background: #1c93e3;
  font-size: 12px;
  font-weight: 700;
}

.security {
  max-width: 800px;
  color: var(--tg-text);
  background: #fff;
}

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

.security-grid article {
  background: var(--tg-blue-soft);
  border-left: 4px solid var(--tg-blue-line);
}

.benefits {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.benefits li {
  padding: 0 0 0 18px;
  position: relative;
}

.benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--tg-blue);
}

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

.price-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  isolation: isolate;
  background: transparent;
}

.price-card::before {
  content: "";
  position: absolute;
  left: -40%;
  top: -100%;
  width: 180%;
  height: 300%;
  z-index: -2;
  border-radius: 5px;
  opacity: 0;
  background: conic-gradient(rgba(42, 171, 238, 0), rgba(42, 171, 238, .92), rgba(0, 136, 204, .36), rgba(42, 171, 238, 0) 35%);
  transition: opacity .22s ease;
}

.price-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: 3px;
  background: #fff;
}

.price-card:hover,
.price-card:focus-within {
  border-color: rgba(0, 136, 204, .48);
  box-shadow: var(--shadow-premium-blue);
  transform: translateY(-3px);
}

.price-card:hover::before,
.price-card:focus-within::before {
  opacity: 1;
  animation: priceBorderFlow 4.8s linear infinite;
}

.pricing-grid:hover .price-card.featured:not(:hover)::before {
  opacity: 0;
  animation: none;
}

.price-card.featured {
  border-color: rgba(0, 136, 204, .42);
  background: transparent;
  box-shadow: 0 12px 28px rgba(28, 147, 227, .075);
}

.price-card.featured::after {
  background: linear-gradient(180deg, #fff, #f7fbfe);
}

.pricing-grid.is-hovering .price-card.featured:not(.is-hovered) {
  border-color: var(--tg-border);
  box-shadow: none;
}

.pricing-grid.is-hovering .price-card.featured:not(.is-hovered)::after {
  background: #fff;
}

.pricing-grid.is-hovering .price-card.is-hovered,
.pricing-grid:not(.is-hovering) .price-card.featured {
  border-color: rgba(0, 136, 204, .42);
}

.pricing-grid.is-hovering .price-card.is-hovered::before,
.pricing-grid:not(.is-hovering) .price-card.featured::before {
  opacity: 1;
  animation: priceBorderFlow 4.8s linear infinite;
}

.pricing-grid.is-hovering .price-card.is-hovered::after {
  background: linear-gradient(180deg, #fff, #fbfdff);
}

.price-card.is-hovered {
  border-color: rgba(0, 136, 204, .48);
  box-shadow: var(--shadow-premium-blue);
  transform: translateY(-3px);
}

.price-card.is-hovered::before {
  opacity: 1;
  animation: priceBorderFlow 4.8s linear infinite;
}

.pricing-grid.is-hovering .price-card.featured:not(.is-hovered) {
  border-color: var(--tg-border);
  box-shadow: none;
  transform: none;
}

.pricing-grid.is-hovering .price-card.featured:not(.is-hovered)::before {
  opacity: 0;
  animation: none;
}

.badge {
  display: inline-flex;
  width: max-content;
  margin: 0 0 9px;
  padding: 4px 8px;
  border: 1px solid #d9ebf7;
  border-radius: 4px;
  color: var(--tg-blue);
  background: #fff;
  font-size: 12px;
  font-weight: 700;
}

.price {
  margin: 10px 0 6px;
  color: var(--tg-heading);
  font-size: 25px;
  line-height: 1;
  font-weight: 700;
}

.price span {
  color: var(--tg-muted);
  font-size: 13px;
  font-weight: 400;
}

.setup {
  margin: 0 0 13px;
  color: var(--tg-muted);
  font-size: 13px;
}

.price-card ul {
  margin: 0;
  padding-left: 18px;
}

.pricing-note {
  margin: 14px 0 0;
  color: var(--tg-muted);
  font-size: 14px;
}

.trust-model {
  padding-bottom: 4px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.trust-card {
  border-left: 4px solid var(--tg-blue-line);
}

.trust-note {
  margin: 18px 0 0;
  padding: 13px 15px;
  border-left: 4px solid var(--tg-blue-line);
  background: var(--tg-blue-soft);
  color: #546172;
}

.final-demo {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 176px;
  align-items: center;
  gap: 20px;
  margin-top: 18px;
  padding: 17px 18px;
  border: 1px solid #d9ebf7;
  border-radius: 4px;
  background: linear-gradient(180deg, #fff, #f9fcff);
}

.final-demo h3 {
  margin: 0 0 7px;
  font-size: 16px;
}

.final-demo p {
  margin: 0;
  color: var(--tg-text);
}

.cta-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 218px;
  align-items: center;
  gap: 28px;
  margin-top: 8px;
  padding: 24px 26px;
  border: 1px solid #d9ebf7;
  border-top: 3px solid var(--tg-blue-line);
  border-radius: 4px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .68), rgba(255, 255, 255, .22)),
    var(--tg-blue-soft);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .78);
  transition: box-shadow .22s ease, transform .22s ease;
}

.cta-section::before {
  display: none;
}

.cta-section:hover {
  box-shadow: var(--shadow-premium);
  transform: translateY(-2px);
}

.cta-content {
  max-width: 620px;
  min-width: 0;
}

.cta-points {
  display: grid;
  gap: 7px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.cta-points li {
  position: relative;
  padding: 0 0 0 18px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--tg-muted);
  font-size: 13px;
  line-height: 1.45;
}

.cta-points li::before {
  content: "";
  position: absolute;
  left: 1px;
  top: .72em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--tg-blue);
}

.cta-action {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: 10px;
  min-width: 0;
  padding-left: 23px;
  border-left: 1px solid rgba(0, 136, 204, .16);
}

.cta-section .button {
  min-width: 178px;
  width: 100%;
  line-height: 1.2;
  white-space: nowrap;
}

.cta-action span {
  color: var(--tg-muted);
  font-size: 12px;
  line-height: 1.45;
  text-align: left;
}

.technical-page {
  padding-top: 34px;
}

.tech-lead {
  color: var(--tg-muted);
  font-size: 14px;
  line-height: 1.5;
}

.tech-layout {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

.tech-block,
.legal-block {
  position: relative;
  padding: 17px 18px;
  border: 1px solid var(--tg-border);
  border-left: 4px solid var(--tg-blue-line);
  border-radius: 4px;
  background: #fff;
  transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease, background .22s ease;
}

.tech-block:hover,
.legal-block:hover {
  border-color: rgba(0, 136, 204, .24);
  box-shadow: var(--shadow-premium);
  transform: translateY(-2px);
  background: linear-gradient(180deg, #fff, #fbfdff);
}

.tech-block h2,
.legal-block h2 {
  margin-top: 0;
}

.tech-block blockquote,
.legal blockquote {
  margin: 16px 0 0;
  padding: 11px 14px;
  border-left: 4px solid var(--tg-blue-line);
  background: var(--tg-blue-soft);
  color: #546172;
}

.tech-list {
  display: grid;
  gap: 9px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.tech-list li {
  position: relative;
  padding-left: 18px;
}

.tech-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--tg-blue);
}

.legal-index {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0;
}

.request-page {
  max-width: 800px;
}

.request-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  align-items: start;
  gap: 18px;
  margin: 24px 0 22px;
  padding: 20px 22px;
  border: 1px solid #d9ebf7;
  border-top: 3px solid var(--tg-blue-line);
  border-radius: 4px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .82), rgba(255, 255, 255, .42)),
    var(--tg-blue-soft);
}

.request-hero h2,
.request-card h2 {
  margin-top: 0;
}

.contact-stack {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.contact-line {
  display: grid;
  gap: 4px;
  color: var(--tg-heading);
  text-decoration: none;
}

.contact-line:hover {
  text-decoration: none;
}

.contact-line span {
  color: var(--tg-muted);
  font-size: 12px;
}

.contact-line strong {
  color: var(--tg-blue);
  font-size: 15px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.request-card {
  border-left: 4px solid var(--tg-blue-line);
  background: #fff;
}

.cost-panel {
  margin: 22px 0 24px;
  padding: 18px 20px;
  border: 1px solid #d9ebf7;
  border-left: 4px solid var(--tg-blue-line);
  border-radius: 4px;
  background: linear-gradient(180deg, #fff, #f8fcff);
  transition: box-shadow .22s ease, transform .22s ease;
}

.cost-panel:hover {
  box-shadow: var(--shadow-premium);
  transform: translateY(-2px);
}

.cost-copy h2 {
  margin-top: 0;
}

.cost-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.cost-grid article {
  padding: 14px 15px;
  border: 1px solid var(--tg-border);
  border-radius: 4px;
  background: #fff;
}

.cost-grid span {
  display: block;
  margin-bottom: 6px;
  color: var(--tg-muted);
  font-size: 12px;
}

.cost-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--tg-blue);
  font-size: 18px;
  line-height: 1.25;
}

.cost-grid p {
  margin: 0;
  color: var(--tg-text);
}

.cost-panel blockquote {
  margin: 16px 0 0;
  padding: 11px 14px;
  border-left: 4px solid var(--tg-blue-line);
  background: var(--tg-blue-soft);
  color: #546172;
}

.faq details {
  padding: 0;
  border-top: 1px solid var(--tg-border);
  transition: background .18s ease, border-color .18s ease;
}

.faq details:last-child {
  border-bottom: 1px solid var(--tg-border);
}

.faq summary {
  position: relative;
  cursor: pointer;
  display: block;
  padding: 15px 34px 15px 0;
  color: var(--tg-heading);
  font-size: 16px;
  font-weight: 700;
  list-style: none;
}

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

.faq summary::after {
  content: "";
  position: absolute;
  right: 2px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--tg-blue);
  border-bottom: 2px solid var(--tg-blue);
  transform: translateY(-65%) rotate(45deg);
  transition: transform .18s ease;
}

.faq details[open] {
  background: linear-gradient(180deg, #fff, #f8fcff);
}

.faq details[open] summary::after {
  transform: translateY(-35%) rotate(225deg);
}

.faq p {
  max-width: 720px;
  margin: 0;
  padding: 0 34px 15px 0;
}

.site-footer {
  max-width: 1010px;
  margin: 38px auto 0;
  padding: 28px 18px 34px;
  color: var(--tg-soft-muted);
  border-top: 1px solid var(--tg-border);
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr .95fr 1.05fr 1.05fr .9fr;
  gap: 38px;
  max-width: 100%;
  margin: 0 auto;
}

.site-footer h2 {
  margin: 0 0 9px;
  color: var(--tg-heading);
  font-size: 14px;
  line-height: 1.3;
}

.site-footer p {
  margin: 0 0 6px;
  color: var(--tg-soft-muted);
  font-size: 13px;
  line-height: 160%;
}

.site-footer section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.site-footer a {
  font-size: 14px;
  line-height: 23px;
  overflow-wrap: anywhere;
}

.copyright {
  max-width: 100%;
  margin: 22px auto 0 !important;
  padding-top: 16px;
  border-top: 1px solid var(--tg-border);
  color: var(--tg-soft-muted);
  font-size: 13px !important;
  line-height: 160% !important;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  max-width: 790px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px;
  border: 1px solid #d9ebf7;
  border-left: 4px solid var(--tg-blue-line);
  border-radius: 4px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.cookie-banner p {
  margin: 0;
  color: var(--tg-text);
  font-size: 13px;
  line-height: 1.45;
}

.cookie-banner div {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.cookie-banner button {
  min-height: 34px;
  padding: 0 13px;
  border: 0;
  border-radius: 4px;
  color: #fff;
  background: #1c93e3;
  font-weight: 700;
  cursor: pointer;
}

.legal {
  padding-top: 36px;
  padding-bottom: 36px;
}

.legal h1 {
  font-size: 20px;
  line-height: 1.2;
}

.legal h2 {
  font-size: 20px;
}

.legal .muted {
  color: var(--tg-muted);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--tg-muted);
  font-size: 13px;
}

.breadcrumbs a {
  position: relative;
  padding-right: 12px;
}

.breadcrumbs a::after {
  content: "/";
  position: absolute;
  right: 0;
  color: #b5bec7;
}

.blog-page {
  max-width: 1010px;
}

.article-page {
  max-width: 800px;
}

.blog-page > h1,
.blog-page > .tech-lead {
  max-width: 760px;
}

.blog-featured,
.blog-preview-grid {
  display: grid;
  gap: 12px;
  margin: 24px 0 26px;
}

.blog-preview-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.blog-featured {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.blog-card {
  position: relative;
  padding: 16px 17px;
  border: 1px solid var(--tg-border);
  border-left: 4px solid var(--tg-blue-line);
  border-radius: 4px;
  background: #fff;
  transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease, background .22s ease;
}

.blog-card:hover {
  border-color: rgba(0, 136, 204, .24);
  box-shadow: var(--shadow-premium);
  transform: translateY(-2px);
  background: linear-gradient(180deg, #fff, #fbfdff);
}

.blog-card.featured {
  grid-column: 1 / -1;
  min-height: 170px;
  padding: 20px 22px;
  background: linear-gradient(180deg, #fff, #f8fcff);
}

.blog-card time,
.article-meta {
  display: block;
  margin: 0 0 8px;
  color: var(--tg-muted);
  font-size: 13px;
  line-height: 1.45;
}

.blog-card h2,
.blog-card h3 {
  margin-top: 0;
  font-size: 16px;
  line-height: 1.35;
}

.blog-card.featured h2 {
  max-width: 720px;
  font-size: 20px;
  line-height: 1.25;
}

.blog-card.featured p {
  max-width: 760px;
}

.blog-card p {
  margin-bottom: 0;
}

.blog-tag {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  margin: 0 0 10px;
  padding: 0 8px;
  border-radius: 4px;
  color: var(--tg-blue);
  background: var(--tg-blue-soft);
  font-size: 12px;
  font-weight: 700;
}

.blog-more {
  margin: 14px 0 0;
  font-weight: 700;
}

.blog-crosslinks {
  margin-top: 32px;
}

.blog-crosslinks .three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.article-page article {
  max-width: 720px;
}

.article-page h2 {
  margin-top: 30px;
}

.article-list {
  display: grid;
  gap: 9px;
  margin: 12px 0 18px;
  padding: 0;
  list-style: none;
}

.article-list li {
  position: relative;
  padding-left: 18px;
}

.article-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--tg-blue);
}

.related-posts {
  display: grid;
  gap: 8px;
  margin-top: 30px;
  padding: 16px 17px;
  border: 1px solid #d9ebf7;
  border-left: 4px solid var(--tg-blue-line);
  border-radius: 4px;
  background: var(--tg-blue-soft);
}

.related-posts h2 {
  margin: 0 0 4px;
  font-size: 16px;
}

.version-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0 28px;
}

.version-summary article,
.changelog article {
  position: relative;
  padding: 16px 17px;
  border: 1px solid var(--tg-border);
  border-left: 4px solid var(--tg-blue-line);
  border-radius: 4px;
  background: #fff;
  transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease, background .22s ease;
}

.version-summary article:hover,
.changelog article:hover {
  border-color: rgba(0, 136, 204, .24);
  box-shadow: var(--shadow-premium);
  transform: translateY(-2px);
  background: linear-gradient(180deg, #fff, #fbfdff);
}

.version-summary h2,
.changelog h2,
.changelog h3 {
  margin-top: 0;
}

.version-number {
  margin: 4px 0 10px;
  color: var(--tg-blue);
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
}

.changelog {
  display: grid;
  gap: 14px;
}

.changelog time {
  display: block;
  margin-bottom: 6px;
  color: var(--tg-muted);
  font-size: 13px;
}

.changelog ul {
  margin: 0;
  padding-left: 18px;
}

@media (min-width: 1060px) {
  .hero::before {
    content: "";
    position: absolute;
    left: -180px;
    top: 40px;
    width: 160px;
    height: 160px;
    background: url("press-bot-card.svg") center / contain no-repeat;
  }
}

@media (max-width: 860px) {
  .three,
  .workflow,
  .security-grid,
  .pricing-grid,
  .version-summary,
  .blog-featured,
  .blog-preview-grid,
  .blog-crosslinks .three,
  .trust-grid,
  .channel-grid,
  .setup-steps,
  .final-demo,
  .request-hero,
  .cost-grid,
  .cta-points,
  .legal-index {
    grid-template-columns: 1fr;
  }

  .final-demo .button {
    width: auto;
    justify-self: start;
  }

  .hero-visual {
    min-height: 440px;
  }

  .phone-mockup {
    right: 8px;
    width: min(250px, 74vw);
  }

  .operator-panel {
    left: 8px;
    top: auto;
    bottom: 22px;
    width: min(292px, 86vw);
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 22px;
  }

  .site-footer a {
    white-space: normal;
  }

  .cta-section {
    grid-template-columns: 1fr;
  }

  .cta-action {
    align-items: flex-start;
    padding-left: 0;
    padding-top: 16px;
    border-left: 0;
    border-top: 1px solid rgba(0, 136, 204, .16);
  }

  .cta-section .button {
    width: auto;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding-left: 14px;
    padding-right: 14px;
  }

  .nav-toggle {
    display: inline-grid;
    gap: 4px;
    width: 36px;
    height: 36px;
    place-content: center;
    border: 1px solid #d9ebf7;
    border-radius: 18px;
    background: #fff;
  }

  .nav-toggle span:not(.sr-only) {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 99px;
    background: var(--tg-blue);
  }

  .site-nav {
    position: absolute;
    top: 55px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    line-height: 1.4;
    border: 1px solid #d9ebf7;
    border-radius: 4px;
    background: #fff;
    box-shadow: var(--shadow-soft);
  }

  .site-nav.open,
  .site-nav.visible {
    display: flex;
  }

  .site-nav a {
    padding: 10px;
  }

  .nav-cta {
    justify-content: center;
  }

  .hero,
  .section,
  .legal {
    padding-left: 14px;
    padding-right: 14px;
  }

  .hero {
    padding-top: 26px;
  }

  .hero-actions {
    width: 100%;
  }

  .button {
    width: 100%;
    white-space: normal;
  }

  .cta-section .button,
  .nav-cta {
    white-space: nowrap;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
    display: grid;
    place-items: center;
    gap: 14px;
    padding: 24px 0;
  }

  .phone-mockup {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    transform: none;
    width: min(250px, 82vw);
  }

  .operator-panel {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: min(320px, 92vw);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    left: 10px;
    right: 10px;
    bottom: 10px;
  }
}

@keyframes priceBorderFlow {
  to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
