@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

:root {
  --baseColor: #656c7c;
  --baseSize: 16px;
  --baseLineHeight: 1.5;
  --fontFamily: Inter, sans-serif;
  --pink: #ea4c89;
  --pinkLight: #ffecf0;
  --blue: #1769ff;
  --black: #000000;
  --light-gray: #e2e2e2;

  --redTick: url("data:image/svg+xml,%3Csvg width='18' height='14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.552.134 5.717 10.97 1.448 6.701 0 8.149l5.717 5.717L18 1.583 16.552.134Z' fill='%23EA455F'/%3E%3C/svg%3E%0A");

  --whiteTick: url("data:image/svg+xml,%3Csvg width='18' height='14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.552.134 5.717 10.97 1.448 6.701 0 8.149l5.717 5.717L18 1.583 16.552.134Z' fill='%23FFFFFF'/%3E%3C/svg%3E%0A");

  --yellowTick: url("data:image/svg+xml,%3Csvg width='18' height='14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.552.134 5.717 10.97 1.448 6.701 0 8.149l5.717 5.717L18 1.583 16.552.134Z' fill='%23FFCC00'/%3E%3C/svg%3E%0A");

  --grayTick: url("data:image/svg+xml,%3Csvg width='18' height='14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.552.134 5.717 10.97 1.448 6.701 0 8.149l5.717 5.717L18 1.583 16.552.134Z' fill='%23E2E2E2'/%3E%3C/svg%3E%0A");

  --close: url("data:image/svg+xml,%3Csvg width='18' height='18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18 1.414 16.586 0 9 7.586 1.414 0 0 1.414 7.586 9 0 16.586 1.414 18 9 10.414 16.586 18 18 16.586 10.414 9 18 1.414Z' fill='%23B1B8C9'/%3E%3C/svg%3E");

  --entpIcon: url("/assets/images/pricing/rocket.png");
  --freeIcon: url("/assets/images/pricing/eye.png");
  --proIcon: url("/assets/images/pricing/maze.png");
}

/*
* {
  box-sizing: border-box;
}

html {
  color: var(--baseColor);
  font-family: var(--fontFamily);
  font-size: var(--baseSize);
  line-height: var(--baseLineHeight);
}

body {
  margin: 0;
}
*/
.plans {

  width: 96%;
  max-width: 1057px;
  margin: 0 auto;
}
  .plans__container {
    padding: 1rem 0 2rem;
  }

.plansHero {
  text-align: center;
  padding: 2rem 0 1.5rem;
  line-height: 1.21;

}
  .plansHero__title {
    font-weight: 700;
    font-size: 2rem;
    margin: 0 0 1rem 0;
    color: #333333;
  }

  .plansHero__subtitle {
    margin: 0 2rem;
    font-size: 0.9rem;

  }
.planItem {
  --border: 2px solid #999999;
  --bgColor: #fff;
  --boxShadow: none;

  background-color: var(--bgColor);
  border: var(--border);
  border-radius: 1rem;
  box-shadow: var(--boxShadow);
  padding: 2rem 1.5rem;
  display: inline-flex;
  flex-direction: column;





  }

  .planItem .button {
    margin-top: auto;
  }


    .planItem .featureList {
      --icon: var(--whiteTick);
    }
  .planItem .price {
    --priceMargin: 2rem 0;
  }
  
    .planItem   .price,
    .featureList {
      --color: #999999;
    }
  .planItem__container {
    --direction: column;

    display: grid;
    grid-auto-flow: var(--direction);
    grid-auto-columns: 1fr;
    gap: 1.5rem;
  }

  .planItem--free {
    --bgColor: var(--light-gray);
    }
  .planItem--pro {
    --border: 0;
    --boxShadow: 0px 14px 30px rgba(204, 204, 204, 0.7);

  }

    .planItem--entp  .label {
      --labelBg:   #ffcc00;
;
      --labelColor: #fff;
    }

    .planItem--pro .featureList, .planItem--free .featureList {
      --icon: var(--yellowTick);
    }
  .planItem--entp {
    --bgColor: var(--black);
    height: -webkit-fill-available;
    }

  .planItem--entp .featureList, .planItem--entp .price{
    --color: white;
    }

      .planItem--entp .card__icon {
        background-image: var(--entpIcon);
        background-size: cover;
      }
      .planItem--free .card__icon {
        background-image: var(--freeIcon);
        background-size: cover;
      }
      .planItem--pro .card__icon {
        background-image: var(--proIcon);
        background-size: cover;
      }

      .planItem--entp .card {
      --titleColor: #fff;
      --descColor: rgb(255 255 255 / 80%);
      }

.button {
  --bgColor: var(--pinkLight);
  --color: var(--pink);
  --shadowColor: rgb(234 76 137 / 30%);
  --outline: var(--pink);

  border-radius: 0.5rem;
  display: block;
  width: 100%;
  padding: 1rem 1.5rem;
  border: 0;
  line-height: inherit;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  background-color: var(--bgColor);
  color: var(--color);
  cursor: pointer;
  transition: all 0.1s ease-in-out;
  user-select: none;


}

  .button:hover {
    transform: translateY(-2px);
    box-shadow: 0px 6px 10px var(--shadowColor);
  }

  .button:focus-visible {
    outline-offset: 2px;
    outline: 2px solid var(--outline);
  }

  .button--pink {
    --bgColor: var(--pink);
    --color: #fff;
    --shadowColor: rgb(234 76 137 / 50%);
  }

  .button--white {
    --bgColor: #fff;
    --shadowColor: rgb(255 255 255 / 30%);
    --outline: #fff;
  }

.card {
  --titleColor: #000;
  --descColor: var(--baseColor);

}

  .card__header {
    display: flex;
    gap: 1rem;
    align-items: center;
  }
  .card__icon {
    min-width: 2.625rem;
    height: 2.625rem;
  }
  .card__desc {
    margin: 1.5rem 0 0;
    color: var(--descColor);
  }

  .card h2 {
    color: var(--titleColor);
    font-size: 1.5rem;
    line-height: 1.2;
    font-weight: 400;
    margin: 0;
    flex-grow: 1;
  }




.label {
  --labelColor: var(--baseColor);
  --labelBg: #e5e5e5;

  font-weight: 600;
  line-height: 1.25;
  font-size: 1rem;
  text-align: center;
  padding: 0.625rem 1.125rem;
  border-radius: 1.5rem;
  user-select: none;
  background-color: var(--labelBg);
  color: var(--labelColor);
}

.price {
  --color: #000000;
  --priceMargin: 0;

  display: flex;
  color: var(--color);
  align-items: center;
  gap: 0.5625rem;
  font-weight: 600;
  font-size: 1.6rem;
  margin: var(--priceMargin);

}

 .price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--baseColor);
  }

.featureList {
  --color: #000;
  --icon: var(--redTick);
  --height: 0.875rem;

  margin: 0 0 2.75rem;
  padding: 0;
  font-weight: 500;

}

.featureList li {
    color: var(--color);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;

  }

      .featureList li:before {
      content: "";
      background-image: var(--icon);
      background-size: cover;
      display: block;
      width: 1.125rem;
      height: var(--height);
    }

    .featureList li:last-child {
      margin-bottom: 0;
    }

    .featureList li.disabled {
      --color: #b1b8c9;
      --height: 1.125rem;
      --icon: var(--close);
    }



@media screen and (max-width: 640px) {
  .plans {
    max-width: 480px;
    width: 90%;
  }

  .planItem__container {
    --direction: row;
  }
}

@media screen and (min-width: 641px) and (max-width: 768px) {
  :root {
    --baseSize: 12px;
  }
}

@media screen and (min-width: 769px) and (max-width: 1080px) {
  :root {
    --baseSize: 14px;
  }
}


.sale {
  position: relative;
  color: white;
}
.ribbon1 {
  position: absolute;
  top: -6.1px;
  right: 10px;
}
.ribbon1:after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-left: 53px solid transparent;
  border-right: 53px solid transparent;
  border-top: 10px solid #F8463F;
}
.ribbon1 span {
  position: relative;
  display: block;
  text-align: center;
  background: #F8463F;
  font-size: 10px;
  line-height: 1;
  padding: 12px 8px 10px;
  border-top-right-radius: 8px;
  width: 90px;
}
.ribbon1 span:before, .ribbon1 span:after {
  position: absolute;
  content: "";
}
.ribbon1 span:before {
 height: 6px;
 width: 6px;
 left: -6px;
 top: 0;
 background: #F8463F;
}
.ribbon1 span:after {
 height: 6px;
 width: 8px;
 left: -8px;
 top: 0;
 border-radius: 8px 8px 0 0;
 background: #C02031;
}
.test-drive-input    {
    width: 12rem;
    margin: 10px 16px 10px 0;
    font-size: 1rem;
    padding: 10px 16px;
    font-family: sans-serif;

}
#item_price {
    width: 6rem;
}
        .section-button {
            color: black;
            text-transform: uppercase;
            text-decoration: none;
            font-weight: bold;
            padding: 10px 16px;
            background-color: #e2e2e2;
            border: 2px solid;
            border-color: #ffcc00;
            border-radius: 50px;
            font-size: 14px;
            margin: 10px 10px 0 0;
        }
        .section-button:hover {
            background-color: white;
        }
        .button-telegram {
            border-color: #e2e2e2;
            background-color: #ffcc00;
        }

        .button-telegram {
            border-color: #e2e2e2;
            background-color: #ffcc00;
        }

        .button-telegram-login {
            background-color: #333333;
        }

        .button-telegram-login .link, .button-telegram:hover .link{
            color: white;
        }
        .button-telegram-login:hover, .button-telegram:hover {
            background-color: #54a9eb;
            border-color: white;
        }
