@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&display=swap');

* {
  margin: 0;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  border-radius: 16px;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 16px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  text-decoration: none;
  color: inherit;
}

.btn svg {
  margin-right: 12px;
}

/* Видимый фокус для клавиатурной навигации */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.accordion__title:focus-visible,
.menu-item:focus-visible,
.nav-burger:focus-visible {
  outline: 2px solid #1b6d24;
  outline-offset: 2px;
}

.filled {
  background-color: #a3f69c;
  cursor: pointer;
}

.filled:hover {
  background-color: #96e58f;
  box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.3),
    0px 6px 10px 4px rgba(0, 0, 0, 0.15);
}

.contained {
  background-color: #d6e8ce;
  cursor: pointer;
  transition: all ease-in 0.1s;
}

.contained:hover {
  box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.3),
    0px 6px 10px 4px rgba(0, 0, 0, 0.15);
}

.outlined {
  background-color: transparent;
  border: 1px solid #72796f;
  color: #1b6d24;
  border-radius: 100px;
  cursor: pointer;
  min-height: auto;
}

.outlined:hover {
  background-color: rgba(27, 109, 36, 0.08);
}

.content-container {
  max-width: 1208px;
  margin: 0 auto;
  padding: 48px 24px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.subtitle {
  font-size: 45px;
  line-height: 1.15;
  font-weight: 500;

  @media screen and (max-width: 576px) {
    font-size: 30px;
  }
}

/* ------ title ------ */

.title-block {
  background-color: #f3f4ee;
  border-radius: 32px;
  margin: 16px auto;
  padding: 64px 0 0 0;
}

.title-inner {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 48px;
  padding: 0 32px;

  @media screen and (max-width: 1200px) {
    flex-direction: column;
    gap: 0;
  }
}

.title-content {
  max-width: 690px;
  display: flex;
  flex-direction: column;
}

.title-text {
  font-size: 57px;
  line-height: 1.12;
  font-weight: 400;
  margin-bottom: 16px;

  @media screen and (max-width: 576px) {
    font-size: 36px;
  }
}

.description-text {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
}

.title-img {
  width: 100%;
  max-width: 690px;
  height: 100%;
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
  object-fit: cover;
  display: block;

  @media screen and (max-width: 1200px) {
    height: 450px;
    max-width: none;
  }
}

.actions {
  display: flex;
  gap: 24px;
  margin: 24px 0 16px 0;

  @media screen and (max-width: 1200px) {
    margin: 24px 0 16px 0;
  }

  @media screen and (max-width: 600px) {
    flex-direction: column;

    >a,
    button {
      width: 100%;
    }
  }

  a {
    text-decoration: none;
  }
}

.trust-note {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 14px;
  margin: 0 0 84px 0;
  font-size: 14px;
  line-height: 1.4;
  color: #424940;

  @media screen and (max-width: 1200px) {
    margin: 0 0 48px 0;
  }

  span {
    display: flex;
    align-items: center;
    gap: 6px;
  }

  svg {
    flex-shrink: 0;
  }
}

/* ----- title end ------ */

/* ----- description ----- */

.text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 768px;
  padding: 0 24px;

  @media screen and (max-width: 992px) {
    max-width: none;
  }
}

.group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 24px;
  row-gap: 36px;
  margin-top: 36px;

  @media screen and (max-width: 992px) {
    grid-template-columns: repeat(2, 1fr);
  }

  @media screen and (max-width: 600px) {
    grid-template-columns: repeat(1, 1fr);
  }
}

.advantage {
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #c2c9bd;
  display: flex;
  flex-direction: column;
  gap: 24px;
  background-color: #f9faf3;
}

.icon-wrapper img {
  width: 56px;
  height: 56px;
}

.advantage-title {
  font-size: 24px;
  line-height: 1.5;
  font-weight: 400;
  margin-bottom: 8px;
}

.advantage-text {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  color: #424940;
  margin-bottom: 8px;
}

/* ----- description end ----- */

/* ----- card block ----- */

.card-group {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-top: 36px;

  @media screen and (max-width: 992px) {
    grid-template-columns: repeat(2, 1fr);
  }

  @media screen and (max-width: 576px) {
    grid-template-columns: repeat(1, 1fr);
  }
}

.card {
  background-color: #f3f4ee;
  padding: 16px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
}

.card.card-free {
  background-color: #eaf7e8;
  border: 1px solid #a3f69c;
}

.card-body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.card button,
.card a.btn {
  margin-top: auto;
}

.card button,
.card a.btn {
  width: 100%;
  display: flex;
  justify-content: center;
}

.card-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}

.card-image {
  width: 100%;
  height: 164px;
  padding: 0 24px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  margin-bottom: 16px;
}

.card1 {
  background-image: url(../images/cat_1.png);
}

.card2 {
  background-image: url(../images/cat_2.png);
}

.card3 {
  background-image: url(../images/cat_3.png);
}

.card4 {
  background-image: url(../images/cat_4.png);
}

.card-content {
  margin-bottom: 24px;
}

.card-content svg {
  width: 12px;
  height: 9px;
  margin: 0 6px;
}

.card-content-item {
  display: flex;
  align-items: center;
}

.card-title {
  font-size: 14;
  line-height: 1.4;
  font-weight: 500;
}

.badge {
  border-radius: 100px;
  padding: 0 12px;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 500;
}

.blue {
  background-color: #bcebf0;
}

.green {
  background-color: #a3f69c;
}

.period {
  font-size: 22px;
  line-height: 1.27;
  font-weight: 400;
  margin-bottom: 16px;
}

/* ----- card block end ----- */

/* ---- questions block ----- */

.questions-inner {
  display: flex;
  align-items: flex-end;
  gap: 48px;
  margin: 24px 0 36px 0;

  @media screen and (max-width: 992px) {
    flex-direction: column;
    align-items: flex-start;
  }
}

.helper-block {
  border: 1px solid #c2c9bd;
  border-radius: 16px;
  padding: 16px 24px;
  max-width: 312px;

  @media screen and (max-width: 992px) {
    max-width: none;
  }
}

.helper-block a {
  color: #38656a;
  text-decoration: none;
}

.helper-block a:hover {
  color: #1b6d24;
}

.helper-block svg {
  margin-bottom: 16px;
}

.accordion-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 12px -24px 0 -24px;
}

.accordion__arrow {
  position: relative;
  top: 4px;
}

.accordion-body {
  font-size: 16;
  line-height: 1.5;
  font-weight: 400;
  color: #424940;
}

.accordion__item {
  width: 100%;
  background-color: #f9faf3;
  border-radius: 16px;
  padding: 16px 24px;
}

.accordion__item .accordion__title {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  font-family: inherit;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  border-radius: 3px;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
  cursor: pointer;
  width: 100%;
  background: none;
  border: none;
  color: inherit;
  text-align: left;
  padding: 0;
}

.accordion__content {
  margin-top: 8px;
}

.accordion__item .accordion-title:hover {
  transition: all 0.5s ease-out;
}

.accordion__item .accordion-title .accordion__arrow {
  display: inline-block;
  vertical-align: middle;
  width: 24px;
  height: 24px;
  text-align: center;
  margin-right: 5px;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.accordion__item .accordion__rotate {
  transform: rotate(180deg);
}

.accordion__item .accordion__content {
  display: none;
}

.accordion__item .accordion__arrow-item {
  width: 12px;
}

/* ---- questions block end ----- */

/* ---- badge in title---- */

.badge-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.badge-title {
  display: flex;
  gap: 4px;
  align-items: center;
  justify-content: center;
  padding: 0 12px 0 8px;
  border: 1px solid #C2C9BD;
  border-radius: 100px;
  width: max-content;
  margin-bottom: 0;
}

.badge-mcp {
  background: #1a1c19;
  border-color: #1a1c19;
  text-decoration: none;
  gap: 8px;
  padding-left: 10px;
}

.badge-mcp:hover {
  background: #111f0f;
  border-color: #a3f69c;
}

.badge-mcp .badge-text {
  color: #a3f69c;
}

.mcp-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #a3f69c;
  box-shadow: 0 0 0 4px rgba(163, 246, 156, 0.18);
  animation: mcp-pulse 1.8s ease-in-out infinite;
}

@keyframes mcp-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(163, 246, 156, 0.16); }
  50% { box-shadow: 0 0 0 6px rgba(163, 246, 156, 0.08); }
}

.badge-text {
  color: #1b6d24;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.42;
}

/* ---- badge end ---- */

/* ---- MCP strip ---- */

.mcp-strip {
  max-width: 1208px;
  margin: 0 auto 48px;
  padding: 0 24px;
  scroll-margin-top: 80px;
}

.mcp-panel {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1200px 280px at 88% -20%, rgba(163, 246, 156, 0.16), transparent 55%),
    linear-gradient(160deg, #111f0f 0%, #1a1c19 52%, #002204 100%);
  border-radius: 32px;
  padding: 40px 40px 36px;
  color: #e2e3dd;
  display: grid;
  grid-template-columns: 1fr minmax(280px, 420px);
  gap: 40px;
  align-items: center;
}

.mcp-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #a3f69c;
  margin-bottom: 12px;
}

.mcp-title {
  font-size: 36px;
  line-height: 1.15;
  font-weight: 500;
  color: #fcfdf6;
  margin-bottom: 12px;
}

.mcp-copy {
  font-size: 16px;
  line-height: 1.5;
  color: rgba(226, 227, 221, 0.82);
  max-width: 520px;
  margin-bottom: 20px;
}

.mcp-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.mcp-chip {
  border: 1px solid rgba(163, 246, 156, 0.28);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 600;
  color: #a3f69c;
  background: rgba(163, 246, 156, 0.06);
}

.mcp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.mcp-actions .btn.filled {
  color: #002204;
  min-height: 48px;
}

.mcp-actions .btn.outlined {
  border-color: rgba(163, 246, 156, 0.4);
  color: #a3f69c;
  min-height: 48px;
  padding: 10px 18px;
}

.mcp-terminal {
  background: #0d120d;
  border: 1px solid rgba(163, 246, 156, 0.18);
  border-radius: 20px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  font-family: "JetBrains Mono", "Fira Code", "SF Mono", ui-monospace, monospace;
}

.mcp-term-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(163, 246, 156, 0.12);
  font-size: 12px;
  color: rgba(226, 227, 221, 0.55);
}

.mcp-term-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #53a252;
}

.mcp-term-dot:nth-child(2) { background: #a3f69c; }
.mcp-term-dot:nth-child(3) { background: #1b6d24; }

.mcp-term-body {
  padding: 16px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 13px;
  line-height: 1.55;
}

.mcp-line {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mcp-role {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(163, 246, 156, 0.7);
}

.mcp-line p {
  margin: 0;
  color: #e2e3dd;
}

.mcp-line.agent p {
  color: #a3f69c;
}

.mcp-url {
  display: inline-block;
  margin-top: 4px;
  padding: 4px 8px;
  border-radius: 6px;
  background: rgba(163, 246, 156, 0.1);
  color: #a3f69c;
  word-break: break-all;
}

@media screen and (max-width: 900px) {
  .mcp-panel {
    grid-template-columns: 1fr;
    padding: 28px 20px;
    gap: 24px;
  }

  .mcp-title {
    font-size: 28px;
  }
}

/* ---- MCP strip end ---- */

/* ---- behefit group ---- */

.benefit-wrapper {
  padding: 0 24px;
}

.benefit-group {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.benefit-left-text {
  margin-right: -24px;

  @media screen and (max-width: 992px) {
    margin: 0 auto;
  }
}

.benefit-right-text {
  margin-left: -24px;

  @media screen and (max-width: 992px) {
    margin: 0 auto;
  }
}

.benefit-right-text .benefit {
  @media screen and (max-width: 992px) {
    flex-direction: column-reverse;
  }
}

.benefit {
  display: flex;
  gap: 36px;
  justify-content: space-between;
  align-items: center;

  @media screen and (max-width: 992px) {
    flex-direction: column;
  }

  @media screen and (max-width: 576px) {
    gap: 24px;
  }
}

.benefit-content {
  width: calc(100% - 324px - 36px);
  max-width: 768px;

  @media screen and (max-width: 992px) {
    width: 100%;
    max-width: none;
  }
}

.benefit-title {
  font-size: 32px;
  line-height: 1.25;
  margin-bottom: 24px;
}

.benefit-text {
  display: flex;
    line-height: 1.5;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 20px;
}

.benefit-text p {
  font-size: 16px;
    line-height: 1.5;
  letter-spacing: 0.5px;
}

.benefit-img {
  max-width: 420px;
  width: 100%;

  @media screen and (max-width: 992px) {
    align-self: center;
  }

  @media screen and (max-width: 576px) {
    max-width: none;
  }
}

.benefit-img img {
  width: 100%;
}

/* ---- behefit group end ---- */

/* ---- quick start block ---- */

.quick-start {
  margin: 32px 0 112px 0;
  background-color: #52634F;
  background-image: url(../images/banner-back.png);
  background-size: contain;
  border-radius: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 64px 0;
}

.quick-start-title {
  color: #fff;
  text-align: center;
}

.quick-start-description {
  margin: 24px 0 36px 0;
  color: #fff;
  text-align: center;
}

.quick-start .actions {
  margin: 0;
}

.quick-start .trust-note {
  justify-content: center;
  margin: 20px 0 0 0;
  color: rgba(255, 255, 255, 0.75);
}

/* ---- quick start block end ---- */

.animation {
  width: 100%;
}


/* ----- header ----- */

.header-wrapper {
    border-bottom: 1px solid #c2c9bd;
}

.styled-header {
    width: 100%;
    height: 56px;
    display: flex;
    justify-content: space-between;
    align-items: center;

@media screen and (max-width: 576px) {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    height: 100%;
    padding: 16px 0;
}
}

.login-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 500;
    color: #1b6d24;
}

.login-link svg {
    margin-right: 0;
}

/* ----- header end ----- */

/* ----- nav ------ */

.nav-container {
    display: flex;
    align-items: center;

@media screen and (max-width: 768px) {
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}

@media screen and (max-width: 576px) {
    gap: 24px;
}
}

.nav-container svg {
    margin-right: 24px;
}

.nav-group {
    display: flex;
    flex-wrap: wrap;
    column-gap: 16px;
    row-gap: 8px;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 500;
    align-items: center;
}

.nav-group a {
    margin: 0;
    transition: all ease-in 0.1s;
}

.nav-group a:hover {
    color: #1b6d24;
}

.nav-group a.nav-mcp {
    color: #1b6d24;
    font-weight: 700;
}

.nav-burger {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
}

@media screen and (max-width: 768px) {
    .nav-burger {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .nav-group {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .nav-group.nav-group--open {
        display: flex;
    }
}

/* ----- nav end ------ */

/* ----- auth ----- */

.auth-icon {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    position: relative;
}

.styled-auth-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all ease-in-out 0.1s;
    overflow: hidden;
}

.styled-auth-icon img {
    width: 200%;
    position: relative;
    top: 6px;
}

/* ----- auth end ----- */

/* ----- menu ----- */

.menu {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    background-color: #eeeee8;
    padding: 8px 0;
    width: 200px;
    border-radius: 4px;
    box-shadow: 0px 2px 6px 2px rgba(0, 0, 0, 0.15),
    0px 1px 2px 0px rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 44px;

@media screen and (max-width: 576px) {
    left: 0;
}
}

.menu-item {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    cursor: pointer;
    transition: all ease 0.1s;
}

.menu-item:hover {
    background-color: rgba(26, 28, 25, 0.08);
}

/* ----- menu end ----- */

/* ----- auth data ----- */

.auth-data {
    border-radius: 4px;
    background-color: #2F312D;
    font-size: 12px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4px 8px;
    position: absolute;
    right: 48px;
    top: 10px;
    opacity: 0;
    transition: all 0.3s ease;

@media screen and (max-width: 576px) {
    display: none;
}
}

/* ----- auth data end ----- */
