@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-VariableFont_opsz,wght.ttf') format('truetype');
    font-style: normal;
    font-weight: 100 900;
    /* диапазон весов */
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Italic-VariableFont_opsz,wght.ttf') format('truetype');
    font-style: italic;
    font-weight: 100 900;
    font-display: swap;
}


:root {
    --bg: #ffffff;
    --bg-alt: #f1f6ff;
    --card: #fafcff;
    --ink: #111827;
    --muted: #5f6b7a;
    --primary: #578cff;
    --primary-600: #fc119c;
    --radius: 16px;
    --radius-lg: 22px;
    --shadow: 0 10px 30px rgba(22, 34, 55, .08);
    --shadow-sm: 2px 2px 2px rgba(22, 34, 55, .06);
    --shadow-button: 1px 1px 1px 0px rgb(201 209 220);
    --gradient: linear-gradient(0deg, rgba(255, 255, 255, 0) 30%, rgb(240, 246, 255) 100%);
}

* {
    box-sizing: border-box
}

html,
body {
    height: 100%
}

pre {
  padding: 20px;
  border-radius: 6px;
  background-color: #fafafe;
  white-space: pre-wrap;
  overflow-x: auto;
}

code {
    padding: 3px;
    border-radius: 3px;
    background-color: #f3f3ff;
    font-size: 14px;
}

body {
    margin: 0;
    font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

img {
  opacity: 0; transition: opacity 0.3s
}

.container {
    width: min(1500px, 92vw);
    margin: 0 auto
}

header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgb(240 246 255 / 60%);
    backdrop-filter: saturate(180%) blur(8px);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 14px 0
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    letter-spacing: .2px;
    padding-right: 20px;
}

.brand .logo {
    width: 52px;
    height: 52px;
    border-radius: 100px;
    background-image: url('../images/new-logo.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    font-size: 18px;

    display: flex;
    align-items: center; 
    justify-content: center;
}

.nav .btn-primary {
    margin-left: auto;
}

.nav a:not(.btn-primary):not(.btn-ghost) {
    font-weight: 400;
    color: #2a3442
}

.nav a:not(.btn-primary):not(.btn-ghost):hover {
    color: #ff00aa
}

.nav .links {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap
}

#top-menu {
  display: flex;
  gap: 30px;
  align-items: center;
  flex-wrap: wrap
}

.nav .bold-menu:not(.btn-primary):not(.btn-ghost) {
  font-weight:600;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 100px;
    font-weight: 500;
    font-size: 14px;
    box-shadow: var(--shadow-button);
    transition: .2s ease;
    line-height: 20px;
}

.btn-circle {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  color: #0f3999;
  font-size: 16px;
  flex-shrink: 0;
  vertical-align: middle;
}

a.btn.btn-primary.circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    padding: 4px 14px 4px 22px;
}

.btn-install {
  background: #ff00aa;
}

.main-line {
  min-height: 64px;
}

.btn-primary.circle {
    padding: 2px;
}

.btn-primary:hover {
    background: var(--primary-600);
    transform: translateY(-1px)
}

.btn-install:hover {
  background: #f100ff;
}


.btn-ghost {
    background: #fbf4ff;
    border-color: #dbe7fb;
    color: #2a3442
}

.container.nav a.btn.btn-ghost {
  border-radius: 12px;
}

.container.nav a.btn-primary.circle {
  background: conic-gradient(from 210deg at 50% 50%, #2830ff 0deg, #ff008c 120deg, #e781ff 240deg, #6800ff 360deg);
}

.container.nav a.btn-primary.circle .btn-circle {
  color: #2a3442;
}

.btn-ghost:hover {
    background: #fc119c;
    color: white;
}

.lang-button {
  border: none;
  border-radius: 12px;
  padding: 12px;
  gap: 4px;
}

.lang-button:hover {
  cursor: pointer;
  
}

.language-selector {
    position: relative;
    display: inline-block;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: -30px;
    background-color: #2a3442;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    min-width: 120px;
    margin-top: 8px;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px; 
    left: 50px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #2a3442;
}

.dropdown-menu ul {
    list-style: none;
    margin: 0;
    padding: 8px 0;
}

.dropdown-menu li {
    padding: 3px 8px;
}

.dropdown-menu a {
    color: white !important;
    text-decoration: none;
    display: block;
    padding: 4px 18px;
    border-radius: 4px;
}

.dropdown-menu a:hover {
    background-color: #5a4c62;
}

.top-brand-menu {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.short-button {
  display: none;
  border: none;
  border-radius: 12px;
  padding: 12px;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
  border: 1px solid #ebccff;
}

.short-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: -116px;
    background-color: #fbfbff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    min-width: 260px;
    margin-top: 8px;
}

.short-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px; 
    left: 125px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #fbfbff;
}

.short-dropdown-menu ul {
    list-style: none;
    margin: 0;
    padding: 8px 0;
}

.short-dropdown-menu li {
    padding: 3px 8px;
}

.short-dropdown-menu a {
    text-decoration: none;
    display: block;
    padding: 4px 18px;
    border-radius: 4px;
    font-size: 14px;

}

.short-dropdown-menu a:hover {
    background-color: #fbf5ff;
}

.short-menu {
    position: relative;
    display: inline-block;
}

.hero {
    background: var(--gradient);
    overflow-x: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr .9fr;
    gap: 90px;
    align-items: start;
    padding: 0 0 50px 0;
}

.learning {
  align-items: stretch;
}

h1 {
    font-size: clamp(36px, calc(3vw + 28px), 70px);
    line-height: 1.3;
    margin: 0 0 10px;
    font-weight: 400;
}

.header-string {
    font-size: clamp(24px, 3vw, 40px);
    line-height: 1.3;
    margin: 0 0 100px;
    font-weight: 400;
}


.top-header {
  max-width: 1200px;
  text-align: center;
  margin: 50px auto;
  padding: 0 10px;
}

.icon-box-h1 {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 2.5em;
  height: 2.5em;
  margin: 0 4px;

  background: #fff;
  border-radius: 18px;
  box-shadow: 0 1px 9px rgb(0 0 0 / 7%);

  font-size: 0.6em;
  color: #000;
  vertical-align: top;

}

.gradient-text {
    background: linear-gradient(160deg, #fb17a0, #2d2ffd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.lead {
    font-size: clamp(16px, 1vw + 12px, 19px);
    color: var(--muted);
    margin: 0 0 30px
}

.hero .ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 20px 0 50px;
}

.shot {
    box-shadow: var(--shadow);
    margin-right: -230px;
    border-radius: 18px;
    padding: 15px;
    background: #fbfbfd;
}

.pro-shot {
  background: #3b3b3b;
  margin-right: -390px;
}

.shot-code {
  margin-right: -550px;
  margin-bottom: 40px;
}

.shot img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px
}

.shot .caption {
    color: var(--muted);
    font-size: 14px;
    margin: 15px 0 0 40px;
}

.section {
    margin: 56px 0;
    overflow-x: hidden;
}

.section h2 {
    font-size: 30px;
    font-weight: 400;
    margin-left: 25px;
}

.muted {
    color: var(--muted)
}

.badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 70px 0 10px;
    justify-content: center;
}

.badges i {
    margin-right: 10px;
}

.badge {
    font-weight: 500;
    font-size: 12px;
    letter-spacing: .3px;
    padding: 6px 20px;
    border-radius: 20px;
    color: #4f555e;
    border: 1px dashed #cfdaf1;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px
}

#features.section {
  padding-top: 0;
}

.card {
    background: #fafcff;
    border-radius: var(--radius);
    padding: 30px;
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 10px;
    align-content: start;
}

.card h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 400;
}

.card p {
    margin: 0;
    color: var(--muted)
}

.card img {
    max-width: 100%;
    margin: 20px 0;
    border-radius: 4px;
    justify-self: center;
    box-shadow: var(--shadow-sm);
}

.icon {
    width: 36px;
    height: 36px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    margin-bottom: 12px;
    font-weight: 400;
    color: #fff;
    font-size: 16px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    counter-reset: step
}

.step {
    background: #ffffff;
    border: 1px solid #e7edf7;
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    position: relative;
    min-height: 160px;
}

.step h3 {
    font-weight: 500;
}

.feature-grid {
    display: grid;
    grid-template-columns: .9fr 1fr;
    gap: 60px;
    align-items: center;
    
}

.feature-grid .caption {
    margin-top: 10px;
}

section#analytics.section {
    overflow-x: hidden;
}

.list {
    display: grid;
    gap: 10px;
    list-style: none; 
    padding-left: 5px;
}

.list li {
    border: 1px dashed #e2eaf6;
    padding: 20px;
    border-radius: 12px
}

.statline {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 20px;
    margin-bottom: 20px
}

.stat {
    flex: 1 1 220px;
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: var(--shadow-sm);
    font-size: 15px;
}

.stat strong {
    display: block;
    font-size: 22px;
    font-weight: 500;
}

.faq {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px
}

details {
    background: #fff;
    border-radius: 12px;
    padding: 14px 16px;
}

details summary {
    position: relative;
    cursor: pointer;
    font-weight: 500;
    color: #263a57;
    font-size: 18px;
    padding: 15px;
    padding-left: 24px;
}

summary {
  list-style: none;
}

/*
summary::marker {
  content: "";
}
  */

summary::before {
  content: "▶";
  position: absolute;
  left: 2px;
  top: 18px;
  color: #411877;
  font-size: 14px;
  font-weight: 100;
}
details[open] summary::before {
  content: "▼";
}

.details {
    margin: 0 24px 14px 24px;
}

footer {
    padding: 36px 0 56px;
    border-top: 1px dotted rgba(41, 69, 111, .06)
}

.footergrid {
    display: grid;
    grid-template-columns: 0.8fr 0.4fr 0.4fr 0.4fr;
    gap: 18px;
    align-items: start
}

.footer-c {
  display: grid;
  grid-template-columns: 1fr;
}

.footer-c .mini {
  margin-bottom: 0;
}

.mini {
    font-size: 13px;
    color: #6b7686
}

.compare-buttons {
  margin-bottom: 40px;
  display: flex;
  gap: 30px;
  justify-content: center;
}

.btn-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 16px;
    width: 100%;
    margin-top: 30px;
}

.section-headline {
  text-align: center;
  max-width: 80%;
  margin: auto;
  margin-bottom: 60px;
}

.section .headline {
    font-size: clamp(26px, 3vw + 4px, 35px);
    font-weight: 500;
    margin-left: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  color: #555;
  margin-bottom: 12px;
}

.eyebrow .dot {
  width: 8px;
  height: 8px;
  background: #8b24ff;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
}

#economy .section-headline {
    margin-bottom: 40px;
}

#prices .section-headline {
    margin-bottom: 0;
}

#prices_cards.section {
    padding-top: 30px;
    padding-bottom: 0;
}

.token-title {
    font-size: 20px;
    font-weight: 500;
    margin-top: 0;
}

.token-lead {
    font-size: 20px;
    font-weight: 500;
    margin: 30px 0;
}


/* Pricing */
.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
  align-items: start;
  justify-content: center;
  max-width: 1100px;
  padding-bottom: 40px;
}

.plan {
  background: var(--card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 24px;
  display: grid;
  grid-template-rows: auto auto 1fr;
  row-gap: 16px;
  margin: 0 20px;
}

.plan--featured {
  background: #fbf6ff;
  border-color: #dfe9fb;
  box-shadow: var(--shadow);
}

.plan-features .li-disabled::before {
  background: linear-gradient(160deg, #dcdcdc, #cccccc);
  content: "✕"
}

.plan-head { margin-bottom: 4px; }
.plan-title { margin: 0; font-weight: 500; font-size: 22px; }
.plan-sub { color: var(--muted); margin-top: 6px; }

.price { margin-top: 5px; display: flex; align-items: baseline; gap: 8px; }
.price-num { font-size: 40px; font-weight: 500; }
.price-tail { color: var(--muted); }

.plan-cta {
  width: 100%;
  justify-self: stretch;
  padding: 14px 18px;
}

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

.plan-features li {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px dashed #e2eaf6;
}
.plan-features li:last-child { border-bottom: 0; }

.plan-features li::before {
  content: "✓";
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #ffffff;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(160deg, #8fb2ff, #6d8dff);
  box-shadow: inset 0 1px 0 #fff, 0 2px 6px rgba(71,85,105,.15);
}

a.disabled {
  pointer-events: none;
  opacity: 0.5;
  cursor: not-allowed;
}

.ide {
  display: grid;
  gap: calc(100% * 0.03);
  grid-template-columns: 1fr 1fr;
}

.ide-card {
  border: 1px dashed #e2eaf6;
  border-radius: 12px;
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ide-title {
    font-size: 20px;
    font-weight: 500;
    margin-top: 0;
}

.ide-card img {
  width: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  margin-top: 20px;
}

.tokens {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.token-card {
  border: 1px dashed #e2eaf6;
  border-radius: 12px;
  padding: 30px;
}

.cta {
  background: linear-gradient(177deg, #fafcff, #f1f6ff);
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
}

.cta h2 {
  font-size: clamp(20px,3vw,28px);
  font-weight: 500;
  margin: 0 0 12px;
}

.cta h2 em {
  color: #ff00aa;
}

.super-button {
    max-width: 300px;
    margin: auto;
    margin-top: 20px;
}


.calc-two-col {
  display: grid;
  grid-template-columns: minmax(auto, 600px) 1fr;
  gap: 20px;
}

.calc-form {
    padding: 20px;
    width: 100%;
}

#calc .ttm-form .ttm-tableTitle {
  font-family: "Inter", sans-serif;
  font-size: 22px;
  font-weight: 400;
}

#calc .ttm-form {
  font-family: "Inter", sans-serif;
}

#calc .ttm-form .ttm-fieldTitleInner {
  font-size: 18px;
  color: #7c7b83;
}

#calc.section {
    padding-top: 0;
}

.ai-description {
    padding: 30px;
    font-size: 18px;
    border: 1px dashed #e2eaf6;
    border-radius: 12px;
}


.ai-description ul {
    list-style: none;
    margin: 0;
    margin-left: -20px;
    padding-left: 20px;
}

.ai-description li {
    position: relative;
    margin-bottom: 20px;
}

.ai-description li::before {
    content: "";
    position: absolute;
    left: -20px;
    top: 12px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: transparent;
    /* background-color: #6c0843;*/
}

table {
  border-collapse: collapse;
  width: 100%;
}

th, td {
  border: 1px dashed #e2eaf6;
}

th, td {
  padding: 10px;
}

.ai-description#prices {
  border: none
}

.no-border-top {
  border-top: none !important;
}

.no-border-sides {
  border-left: none !important;
  border-right: none !important;
}

table p {
  margin: 0;
}

.ctas#price-buttons {
  display: flex;
  gap: 20px;
  margin: 30px 0;
}

.main-description {
  font-size: 18px;
  margin-bottom: 60px;
  padding: 20px;
  border: 1px dotted #f051d5;
  border-radius: 12px;
}

.main-description .token-title {
  margin-top: 0;
}

.main-description ul {
    list-style: none;
    margin: 0;
    padding-left: 0;
}

.main-description li {
    position: relative;
    margin-bottom: 20px;
}

.main-description li:last-child {
  margin-bottom: 10px;
}

.video {
  margin: 30px 0px 30px;
  padding: 10px;
  display: flex;
  justify-content: center;
}

ul.grid_3_2_1 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 30px;
  padding: 0;
  list-style: none;
  margin: 50px 0;
  align-items: stretch;
}

ul.pro-grid {

  grid-template-columns: repeat(2, 1fr);
}

ul.grid_3_2_1 li {
  margin: 0;
  padding: 0;
  height: 100%;
}

ul.grid_3_2_1 li a:hover {
  background-color: #f2f6ff;
  cursor: pointer;
}

ul.grid_3_2_1 li a {
  display: block;
  color: var(--ink);
  padding: 10px 20px;
  border-radius: 8px;
  background-color: #fafcff;
  border-left: 4px solid #ff00aa;
  height: 100%;
}

.gorizont-erp-hand {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
}

.gorizont-erp-hand .grid-img img {
  max-width: 50px;
  height: auto;
  display: block;
}

.gorizont-erp-hand .grid-text p {
  margin: 0 0 4px 0;
  line-height: 1.4;
}
.gorizont-erp-hand .grid-text p:last-child {
  margin-bottom: 0;
}

#registration .ttm-form,
#registration .ttm-form * {
    font-family: "Inter",sans-serif !important;
}

#oferta h2 {
 margin-left: 0;
}

#oferta li::marker {
  content: none;
}

#oferta li {
  padding-bottom: 5px;
}

#policy h2 {
 margin-left: 0;
}

#policy li {
  padding-bottom: 5px;
}

/* Pills */

.pills {
  margin-bottom: 60px;
  padding: 20px;
  border: 1px dotted #f051d5;
  border-radius: 12px;
}

.pills .nav-wrapper {
  max-width: 100%;
  overflow: auto;
}

.pills .nav-pills {
  display: flex;
  padding: 0 0 10px 0;
  min-width: 600px;
  margin: 0;
  list-style: none;
  justify-content: left;
  white-space: nowrap;
  overflow-x: auto;
  flex-wrap: nowrap;
}

.pills .nav-pills li a {
  display: block;
  padding: 12px 16px;
  text-decoration: none;
  border-radius: 40px;
  cursor: pointer;
  background-color: #fafcff;
}

.pills .nav-pills li a:not(.active):hover {
  background-color: #f2f6ff;
  color: #333 !important;
}

.pills .nav-pills li.active a {
  background-color: #ff00aa;
  color: white;
}

.pills .nav-pills li.active a:hover {
  background-color: #ff00d4;
  color: white !important;
}

.pills .scroll-indicator {
  display: none;
  text-align: right;
  padding-right: 20px;
  font-size: 16px;
  background: linear-gradient(270deg, #fafcff, transparent);
  border-radius: 0 12px 12px 0;
}

.pills .tab-content {
  margin-top: 0;
}

.pills .tab-pane {
  display: none;
  padding: 0;
}

.pills .tab-pane.active {
  display: block;
}

.pills .tab-pane p {
  font-size: 18px;
  padding-top: 20px;
  padding-left: 18px;
  margin: 0 0 16px 0;
}

.pills pre {
  margin-top: 20px;
  padding: 20px 20px 0 20px;
  background: #fafcff;
  border-radius: 4px;
  overflow-x: auto;
  white-space: pre;
}

.pills code {
  font-family: Consolas, Monaco, monospace;
  font-size: 14px;
}

/* Code */

span.cm-start {
  color: #1372bb; }
  span.cm-start.fixed {
    color: #1b6cec; }
  span.cm-start.cm-dubbled {
    color: red; }

span.cm-var-not-in {
  font-style: italic; }

span.cm-variable {
  color: #48a5ec; }

span.cm-code-var {
  color: #0a3a5e; }

span.cm-inVars {
  color: #3a0b65; }

span.cm-db_name {
  color: #576ce8; }

span.cm-fieldParam {
  color: orange; }

span.cm-reqParam {
  font-weight: bold; }

span.cm-multiParam {
  text-decoration: underline; }

span.cm-operator {
  color: #ff6600; }

span.cm-boolean {
  color: #ff38ec; }

span.cm-number {
  color: #ff6600; }

span.cm-string {
  color: #8bbe10; }

span.cm-string-name {
  color: #698f0c; }

span.cm-dollar-dollar {
  color: #1372bb; }

span.cm-error {
  color: red !important; }

span.cm-comment {
  color: #3F7F5F; }


.padding_40 {
  padding: 40px;
}

/* Learning */

.learning-section {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  padding: 30px;
  border: 1px dotted #f051d5;
  border-radius: 12px;
}

.services-l {
  grid-template-columns: 1.5fr 1fr
}

.text-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.text-column p {
  margin: 0;
}

.text-column .subtitle {
  font-size: 20px;
  margin-bottom: 10px;
}

.learning-section h2 {
  margin: 0;
}

.buttons-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: start;
  align-items: center;
}

.buttons-column .btn {
  width: 100%;
  max-width: 320px; 
}

.revizor {
  padding: 30px;
  background: #fafcff;
  border-radius: 12px;
  margin-top: 30px;
}

.revizor p {
  font-size: 22px;
  text-align: center;
  line-height: 40px;
}

.revizor em {
  color: #ff00aa;
}

/* ################## AI ##################### */

.With-AI {
  display: flex;
  flex-direction: row;
  height: 100%;
}
.AI-Block {
  padding: 10px;
  padding-bottom: 5px;
  display: flex;
  flex-direction: column;
  flex: 1;
  box-sizing: border-box;
  gap: 10px;
}
.AI-Input {
  height: 170px;
  overflow: auto;
  border: 1px solid transparent;
   border-radius: 8px;
}
.AI-Dialog {
  height: calc(0vh);
  padding: 0 0 15px 0;
  max-height: 100%;
  box-sizing: content-box;
  overflow: auto;
}
.With-AI .AI-Input .CodeMirror { 
  height: 168px;
  min-height: 98px;
  background: #f9fbff;

}

.With-AI .AI-Input .CodeMirror pre {
  font-size: 16px;
}

.With-AI .AI-Buttons button {
  padding: 14px 14px;
  margin-bottom: 1px;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  background-color: #fbf5ff;
  box-shadow: var(--shadow-button);
}

.With-AI .AI-Buttons button:hover {
  background: #fc119c;
  color: white;
}

.With-AI .AI-Dialog .user {
    text-align: right;
    color: #222;
    white-space: pre-line;
    background: var(--bg-alt);
    border-radius: 4px;
    margin: 30px 5px;
    padding: 10px;
}

.AI-Footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px;
}

.context-counter {
  display: flex;
  align-items: center;
  color: #666
}

.context-counter span {
  font-size: 14px;
}

.context-counter .count {
  margin: 0 5px;
}

/* ################## AI ##################### */



/* Responsive */

/* ################## Header ##################### */

@media (max-width: 1420px) {
  .nav #top-menu a[href="/projects.html"] {
    display: none;
  }
  .short-button {
    display: block;
  }
}

@media (max-width: 1350px) {
  .nav #top-menu a[href="/learning.html"] {
    display: none;
  }
}

@media (max-width: 1230px) {
  .nav #top-menu a[href="/contacts.html"] {
    display: none;
  }
}

@media (max-width: 1120px) {
  .nav #top-menu a[href="/services.html"] {
    display: none;
  }
}

@media (max-width: 1000px) {
  .nav #top-menu a[href="/ai.html"] {
    display: none;
  }
}

@media (max-width: 940px) {
  .nav #top-menu a[href="/demo.html"] {
    display: none;
  }
}

@media (max-width: 860px) {
  #live-demo {
    display: none;
  }
}

@media (max-width: 780px) {
  .nav #top-menu a[href="/chat.html"] {
    display: none;
  }
}

@media (max-width: 690px) {
  .nav #top-menu a[href="/pro.html"] {
    display: none;
  }
  #top-menu {
    display: none;
  }
}

@media (max-width: 560px) {
  #circle-button {
    display: none;
  }
}

@media (max-width: 450px) {
  #docs-button,
  #div-docs-button {
    display: none;
  }
}

@media (max-width: 420px) {
  #shortDropdownMenu {
    right: calc(130px - 100vw/1.77);
    left: auto;
  }
  #shortDropdownMenu:before {
    left: calc(211px - (100vw - 260px) / 1.9);
  }
}

@media (max-width: 380px) {
  #telegram-button,
  #div-circle-button {
    display: none;
  }
  #shortDropdownMenu {
    right: -12px;
    left: auto;
  }
  #shortDropdownMenu:before {
    left: 221px;
  }
}

/* ###################### End header ###################### */

@media (max-width: 530px) {
  .header-string {
    line-height: 1.6;
  }
}

@media (max-width: 1400px) {
  .hero-grid {
    gap: 40px;
  }
  .shot {
    margin-top: 0px;
  }
}

@media (max-width: 1200px) {
  .hero-grid {
    grid-template-columns: 1fr
  }
  .shot .caption {
    margin: 15px auto;
    text-align: center;
  }
}

@media (max-width: 1100px) {
  .shot {
    margin-right: 0;
  }
}


@media (max-width: 880px) {
  .video iframe {
    min-height: calc((100vw - 20px) * 0.56) !important;
  }
}


@media (max-width: 900px) {
  ul.grid_3_2_1 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  ul.grid_3_2_1 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1100px) {
  .section-headline {
    max-width: 96%;
  }
}

@media (max-width: 570px) {
  .pills .scroll-indicator {
    display: block;
  }
}

@media (max-width: 500px) {
  .padding_40 {
    padding: 30px 20px;
  }
}

@media (max-width: 400px) {
  .padding_40 {
    padding: 20px 10px;
  }
}

@media (max-width: 700px) {
  .ide {
    grid-template-columns: 1fr;
    gap: 30px
  }
}

@media (max-width: 1000px) {
    .cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 960px) {
    .steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 500px) {
    .section {
        padding: 30px 0;
    }
}

@media (max-width: 830px) {
    .learning-section {
        grid-template-columns: 1fr;
    }
}




@media (max-width: 520px) {
    .hero .ctas {
        display: grid;
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .hero .ctas .btn {
      width: 80vw;
      max-width: 300px;
      
    }
}

@media (max-width: 1250px) {
  .feature-grid .shot {
      align-self: start;
      margin-top: 70px;
  }
}

@media (max-width: 1210px) {
  .feature-grid .shot {
      align-self: start;
      margin-top: 120px;
  }
}

@media (max-width: 1100px) {
  .feature-grid {
      grid-template-columns: 1fr;
  }

  .feature-grid .shot {
      margin-top: 0;
      margin-left: 0;
      max-width: 800px;
      justify-self: center;
      margin-bottom: 50px;
  }
}

@media (max-width: 1100px) {
  .calc-two-col {
      grid-template-columns: 1fr;
  }
  .calc-form {
    max-width: 92vw;
    padding: 0;
  }
  .ai-description {
    padding: 10px;
  }
}

@media (max-width: 850px) {
  .faq {
    grid-template-columns: 1fr;
    gap: 10px
  }
}

@media (max-width: 600px) {
  .compare-buttons {
    flex-direction: column;
    align-items: center;
  }
  .compare-buttons a {
    white-space: nowrap;
    width: 300px;
}
}



/* ############### Footer ############### */

@media (max-width: 1080px) {
  .footergrid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-c {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 530px) {
  .footergrid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 440px) {
  .min-f {
    display: none;
  }
}

@media (max-width: 360px) {
  .footer-c {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1200px) {
  .pro-shot {
    margin-right: 0;
  }
}

@media (max-width: 1100px) {
  .ctas#price-buttons {
    justify-content: center;
  }
}

@media (max-width: 375px) {
  .ctas#price-buttons {
    flex-direction: column;
  }
}

@media (max-width: 1250px) {
  .services-l {
    grid-template-columns: 1fr;
  }
  .services-l img {
    max-height: 40vw !important;
  }
}

@media (max-width: 500px) {
  .AI-Footer {
    flex-direction: column; 
    align-items: flex-end;
  }
  .AI-Buttons {
    order: 1;
    margin-right: 0;
  }
  .context-counter {
    order: 2;
    margin-top: 10px;
  }
}

/* ############### Banner ############### */

#banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #362f5b;
  color: white;
  text-align: center;
  padding: 10px;
  display: none;
  z-index: 1000;
}

#banner button {
  background-color: #ff00aa;
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 16px;
  border-radius: 6px;
}
  
.columns2b{
	grid-template-columns: minmax(0, 4fr) minmax(0, 1fr);
	grid-gap: 20px;
	display: grid;
	padding-top: 0px;
}
  
@media(max-width:600px){
	.columns2b{
	  grid-gap: 10px;
		grid-template-columns: 1fr;
	 }
}

#langButton {
  display: none;
}