.card_bluep24 {
    padding: 24px;
    border-radius: 24px;
    background: var(--blue3);
}

/* Benefits bar */
.ceny_benefits {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 0;
}
@media (min-width: 700px) {
    .ceny_benefits {
        gap: 16px;
    }
}
@media (min-width: 992px) {
    .ceny_benefits {
        gap: 64px;
    }
}
.ceny_benefits__item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.ceny_benefits__icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
}
.ceny_benefits__text {
    color: var(--black1);
    font-size: 15px;
    line-height: 1.4;
}
@media (min-width: 700px) {
    .ceny_benefits {
        flex-direction: row;
        justify-content: space-between;
    }
    .ceny_benefits__item {
        flex: 1 1 0;
        max-width: 352px;
        flex-direction: column;
    }
}
@media (min-width: 992px) {
    .ceny_benefits__item {
        flex-direction: row;
    }
}

/* Myths section */
.ceny_myths__wrap {
    padding: 48px;
    background: var(--black7, #F5F5F7);
    border-radius: 24px;
    overflow: clip;
}
@media (min-width: 700px) and (max-width: 1199px) {
    .ceny_myths__wrap {
        padding: 32px 24px;
    }
}
@media (max-width: 699px) {
    .ceny_myths__wrap {
        padding: 32px 16px;
    }
}
@media (min-width: 528px) and (max-width: 575px) {
    .ceny_myths__wrap {
        margin-right: var(--negindent_sm);
        margin-left: var(--negindent_sm);
    }
}
@media (max-width: 527px) {
    .ceny_myths__wrap {
        margin-right: var(--negindent_xs);
        margin-left: var(--negindent_xs);
    }
}
.ceny_myths__intro {
    max-width: 1088px;
    margin-bottom: 48px;
}
.ceny_myths__slider {
    position: relative;
    overflow-x: visible;
}
.ceny_myths__nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 24px;
}
.ceny_myths__nav__dots .slick-dots {
    display: flex !important;
    align-items: center;
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.ceny_myths__nav__dots .slick-dots li {
    display: inline-flex;
    align-items: center;
}
.ceny_myths__nav__dots .slick-dots li button {
    width: 32px;
    height: 8px;
    border: 1px solid var(--black4);
    border-radius: 4px;
    background: var(--white);
    color: transparent;
    font-size: 0;
    padding: 0;
    cursor: pointer;
}
.ceny_myths__nav__dots .slick-dots li button:hover {
    border-color: var(--blue1);
}
.ceny_myths__nav__dots .slick-dots .slick-active button {
    background: var(--blue1);
    border-color: var(--blue1);
}
@media (max-width: 699px) {
    .ceny_myths__nav__dots .slick-dots {
        display: none !important;
    }
}
.ceny_myths__nav__arrows {
    display: flex;
    align-items: center;
    gap: 16px;
}
.ceny_myths__nav__arrows .sliderarrow {
    position: static;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 16px;
}
.ceny_myths__nav__arrows .sliderarrow:hover {
    box-shadow: 0px 4px 8px rgba(32, 34, 37, 0.14);
}
.ceny_myths__cards .slick-track {
    display: flex;
    align-items: stretch;
}
.ceny_myths__cards .slick-list {
    overflow: visible;
}
.ceny_myths__cards .slick-slide {
    height: auto;
    transition: opacity 0.2s ease;
}
.ceny_myths__cards .slick-slide:has(+ .slick-current) {
    opacity: 0;
}
@media (min-width: 576px) {
    .ceny_myths__cards .slick-slide {
        width: 440px;
        margin-right: 16px;
    }
}
@media (max-width: 575px) {
    .ceny_myths__cards .slick-list {
        margin-right: -8px;
        margin-left: -8px;
    }
    .ceny_myths__cards .slick-slide {
        margin-right: 0;
    }
    .ceny_myth__slide {
        padding: 0 8px;
    }
    /*.ceny_myths__cards .slick-slide:not(.slick-current) {
        opacity: 0;
    }*/
}
.ceny_myth {
    height: 100%;
    padding: 24px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 16px 32px 0 rgba(32, 34, 37, 0.12);
}
.ceny_myth__label {
    display: inline-block;
    padding: 0 8px;
    border-radius: 8px;
    font-size: 12px;
    line-height: 30px;
    font-weight: 500;
    letter-spacing: 0.64px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
@media (min-width: 700px) {
    .ceny_myth__label {
        line-height: 36px;
        font-size: 16px;
    }
}
.ceny_myth__label_myth {
    background: var(--red6, #FFEBEF);
    color: var(--red1, #E53935);
}
.ceny_myth__label_reality {
    background: #E5F2FF;
    color: #5182FF;
}
.ceny_myth__title {
    color: #202225;
    font-variant-numeric: lining-nums proportional-nums;
    font-family: var(--font_inter);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    /*margin-bottom: 12px;*/
    border-bottom: 1px solid var(--Black-5, #DFE1E5);
    margin-bottom: 24px;
    padding-bottom: 24px;
}
.ceny_myth__desc {
    color: var(--black2);
}
@media (min-width: 1200px) {
    .ceny_myths__wrap {
        padding: 48px;
    }
}

/* Tasks grid */
.ceny_tasks__grid {
    display: grid;
    gap: 16px;
}
@media (min-width: 700px) {
    .ceny_tasks__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 992px) {
    .ceny_tasks__grid {
        grid-template-columns: repeat(12, 1fr);
    }
    .ceny_tasks__grid .ceny_task {
        grid-column: span 5;
    }
    .ceny_tasks__grid .ceny_task:nth-child(2),
    .ceny_tasks__grid .ceny_task:nth-child(3) {
        grid-column: span 7;
    }
}
.ceny_task {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    border-radius: 16px;
    border: 1px solid var(--Black-5, #DFE1E5);
    background: var(--White, #FFF);
}
.ceny_task__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
}
.ceny_task__text {
    font-size: 15px;
    line-height: 1.4;
    color: var(--black1);
}

/* CTA banner */
.ceny_cta {
    padding: 24px;
    border-radius: 24px;
    background: linear-gradient(90deg, #71B3FF 0%, #A38CFF 100%);
}
.ceny_cta .h3 {
    max-width: 984px;
    margin: auto;
}

/* Pricing section */
.ceny_price_section {
    margin-bottom: 64px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.ceny_price_section h2 {
    margin-bottom: 16px !important;
}
.ceny_price_section .button {
    margin-top: 16px !important;
    width: 100%;
}
@media (min-width: 700px) {
    .ceny_price_section .button {
        width: fit-content;
    }
}
@media (min-width: 700px) {
    .ceny_price_section {
        margin-bottom: 96px;
    }
}
@media (min-width: 1200px) {
    .ceny_price_section {
        margin-bottom: 120px;
    }
}

/* Two-column price layout */
.ceny_price2col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.ceny_price2col__left {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
@media (min-width: 992px) {
    .ceny_price2col {
        flex-direction: row;
        display: flex;
    }
    .ceny_price2col__left {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
    .ceny_price2col__right {
        flex: 1;
    }
}

/* УСН с НДС: мобилка/планшет — карточка между quote и таблицей */
@media (max-width: 991px) {
    #usn-nds .ceny_price2col {
        display: grid;
        grid-template-columns: 1fr;
    }
    #usn-nds .ceny_price2col__left {
        display: contents;
    }
    #usn-nds .ceny_price2col__left > h2 { order: 1; }
    #usn-nds .ceny_price2col__left > p { order: 2; }
    #usn-nds .ceny_qnds { order: 3; }
    #usn-nds .ceny_price2col__right { order: 4; }
    #usn-nds .ceny_price2col__left > table { order: 5; }
    #usn-nds .ceny_price2col__left > .button { order: 6; }
}
/* УСН с НДС: мобилка/планшет — карточка между quote и таблицей */
@media (max-width: 991px) {
    #marketplaces .ceny_price2col {
        display: grid;
        grid-template-columns: 1fr;
    }
    #marketplaces .ceny_price2col__left {
        display: contents;
    }
    #marketplaces .ceny_price2col__left > h2 { order: 1; }
    #marketplaces .ceny_price2col__left > p { order: 2; }
    #marketplaces .ceny_qnds { order: 3; }
    #marketplaces .ceny_accordion { order: 4; }
    #marketplaces .ceny_price2col__right { order: 5; }
    #marketplaces .ceny_price2col__left > .button { order: 6; }

    #consult .ceny_price2col {
        display: grid;
        grid-template-columns: 1fr;
    }
    #consult .ceny_price2col__left {
        display: contents;
    }
    #consult .ceny_price2col__left > h2 { order: 1; }
    #consult .ceny_price2col__left > p { order: 2; }
    #consult .ceny_ptable  { order: 3; }
    #consult .ceny_price2col__right { order: 4; }
    #consult .ceny_price2col__left > .button { order: 5; }

    #ecp .ceny_price2col {
        display: grid;
        grid-template-columns: 1fr;
    }
    #ecp .ceny_price2col__left {
        display: contents;
    }
    #ecp .ceny_price2col__left > h2 { order: 1; }
    #ecp .ceny_price2col__left > p { order: 2; }
    #ecp .ceny_ptable  { order: 3; }
    #ecp .ceny_price2col__right { order: 4; }
    #ecp .ceny_price2col__left > .button { order: 5; }

    #ndfl3 .ceny_price2col {
        display: grid;
        grid-template-columns: 1fr;
    }
    #ndfl3 .ceny_price2col__left {
        display: contents;
    }
    #ndfl3 .ceny_price2col__left > h2 { order: 1; }
    #ndfl3 .ceny_price2col__left > p { order: 2; }
    #ndfl3 .ceny_ptable  { order: 3; }
    #ndfl3 .ceny_price2col__right { order: 4; }
    #ndfl3 .ceny_price2col__left > .button { order: 5; }

    #bk .ceny_price2col {
        display: grid;
        grid-template-columns: 1fr;
    }
    #bk .ceny_price2col__left {
        display: contents;
    }
    #bk .ceny_price2col__left > h2 { order: 1; }
    #bk .ceny_price2col__left > p { order: 2; }
    #bk .ceny_ptable  { order: 3; }
    #bk .ceny_price2col__right { order: 4; }
    #bk .ceny_price2col__left > .button { order: 5; }
}




/* Price table */
.ceny_ptable {
    width: 100%;
    border-collapse: collapse;
}
.ceny_ptable th {
    padding: 16px;
    background: var(--black6, #F0F0F0);
    text-align: left;
    font-weight: 600;
    font-size: 15px;
    border-radius: 0;
}
.ceny_ptable th:first-child {
    border-radius: 12px 0 0 0;
}
.ceny_ptable th:last-child {
    border-radius: 0 12px 0 0;
}
.ceny_ptable td {
    padding: 16px;
    border-bottom: 1px solid var(--black5, #E5E5E5);
    font-size: 15px;
    vertical-align: middle;
    color: #202225;
}
.ceny_ptable tr:last-child td {
    border-bottom: none;
}
.ceny_accordion__item:last-child .ceny_ptable tr:last-child td {
    border-bottom: 1px solid var(--black5, #E5E5E5);
}
.ceny_ptable .txt_blue {
    font-weight: 600;
    white-space: nowrap;
}
.ceny_ptable-head th {
    background: transparent;
    border-radius: 0;
    border-bottom: 1px solid #9D9FA3;
    color: #202225;
}
.ceny_ptable-head th:first-child,
.ceny_ptable-head th:last-child {
    border-radius: 0;
}
#ip-psn .ceny_ptable,
#usn-nds .ceny_ptable,
#marketplaces .ceny_ptable,
#ooo .ceny_ptable,
#consult .ceny_ptable,
#otchet .ceny_ptable,
#kadry .ceny_ptable,
#ecp .ceny_ptable,
#jur .ceny_ptable,
#ndfl3 .ceny_ptable,
#bk .ceny_ptable {
    table-layout: fixed;
}
#ip-psn .ceny_ptable th,
#ip-psn .ceny_ptable td:first-child,
#usn-nds .ceny_ptable th,
#usn-nds .ceny_ptable td:first-child,
#marketplaces .ceny_ptable th,
#marketplaces .ceny_ptable td:first-child,
#ooo .ceny_ptable th,
#ooo .ceny_ptable td:first-child,
#consult .ceny_ptable th,
#consult .ceny_ptable td:first-child,
#otchet .ceny_ptable th,
#otchet .ceny_ptable td:first-child,
#kadry .ceny_ptable th,
#kadry .ceny_ptable td:first-child,
#ecp .ceny_ptable th,
#ecp .ceny_ptable td:first-child,
#jur .ceny_ptable th,
#jur .ceny_ptable td:first-child,
#ndfl3 .ceny_ptable th,
#ndfl3 .ceny_ptable td:first-child,
#bk .ceny_ptable th,
#bk .ceny_ptable td:first-child {
    width: 50%;
}
#usn-nds .ceny_ptable td,
#marketplaces .ceny_ptable td,
#ooo .ceny_ptable td,
#consult .ceny_ptable td,
#otchet .ceny_ptable td,
#kadry .ceny_ptable td,
#ecp .ceny_ptable td,
#jur .ceny_ptable td,
#ndfl3 .ceny_ptable td,
#bk .ceny_ptable td {
    color: #202225;
}

/* УСН с НДС: quote-плашка без левой полосы */
.ceny_qnds {
    background: #E5F2FF;
    border-radius: 8px;
    padding: 8px 16px;
}
.ceny_qnds p {
    color: #414346;
}
.ceny_qnds strong {
    color: #414346;
}
.ceny_qyell {
    background: #E5F2FF;
    border-radius: 8px;
    padding: 8px 16px;
}
.ceny_qyell p {
    margin: 0;
    color: #414346;
}
.ceny_qyell strong {
    color: #414346;
}

/* УСН с НДС: правая белая карточка */
#ip-psn .ceny_services,
#usn-nds .ceny_services,
#marketplaces .ceny_services,
#ooo .ceny_services,
#consult .ceny_services,
#otchet .ceny_services,
#kadry .ceny_services,
#ecp .ceny_services,
#jur .ceny_services,
#ndfl3 .ceny_services,
#bk .ceny_services {
    background: #FFFFFF;
    border-radius: 32px;
    padding: 32px;
    box-shadow: 0 32px 24px rgba(32, 34, 37, 0.1);
}
#usn-nds .ceny_price2col__right_bottom {
    text-align: left;
}

/* Accordion pricing rows */
.ceny_accordion__item {
    border-bottom: 1px solid #DFE1E5;
}
.ceny_accordion__item:last-child {
    border-bottom: none;
}
.ceny_accordion__head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 0;
    cursor: pointer;
    user-select: none;
}
.ceny_accordion__head b {
    color: #202225;
}
.ceny_accordion__head:hover {
    opacity: 0.8;
}
.ceny_accordion__arrow {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}
.ceny_accordion__item_active .ceny_accordion__arrow {
    transform: rotate(180deg);
}
.ceny_accordion__body {
    display: none;
}
.ceny_accordion__item_active .ceny_accordion__body {
    display: block;
}

/* Services checkmark list */
.ceny_services {
    display: flex;
    flex-direction: column;
    padding: 32px;
    background: var(--black7, #F5F5F7);
    border-radius: 16px;
}
.ceny_services__title {
    font-size: 18px;
    color: #202225;
}
.ceny_services__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.ceny_services__item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 15px;
    line-height: 1.4;
}
.ceny_services__check {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    margin-top: 1px;
}
.mt24 {
    margin-top: 24px;
}

/* Calculator / price card */
.ceny_calc {
    padding: 32px;
    background: var(--white);
    border-radius: 24px;
    box-shadow: 0px 32px 48px rgba(32, 34, 37, 0.1);
}
.ceny_calc__price {
    margin-bottom: 8px;
}
.ceny_calc__note {
    font-size: 14px;
    color: var(--black2);
}
.ceny_calc_wrap .products__item, .ceny_calc_wrap .products .products__item:hover{
    transform: none;
}
/* Section navigation */
.ceny_nav {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.ceny_nav__img {
    display: none;
    border-radius: 16px;
    overflow: hidden;
}
.ceny_nav__img img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.ceny_nav__left .h2 {
    margin-bottom: 0;
}
.ceny_nav__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.ceny_nav__link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--black1);
    line-height: 150%;
    transition: opacity 0.2s;
    text-decoration: underline;
}
@media (min-width: 992px) {
    .ceny_nav__link::before {
        content: '';
        position: absolute;
        left: -44px;
        top: 50%;
        transform: translateY(-50%);
        width: 32px;
        height: 32px;
        opacity: 0;
        transition: opacity 0.2s;
        background: center/contain no-repeat url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19.2402 7.90668L27.3336 16L19.2402 24.0933' stroke='%235182FF' stroke-width='1.5' stroke-miterlimit='10' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M4.66699 16H27.107' stroke='%235182FF' stroke-width='1.5' stroke-miterlimit='10' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    }
    .ceny_nav__link.is-active::before,
    .ceny_nav__link:hover::before {
        opacity: 1;
    }
    .ceny_nav__list {
        padding-left: 44px;
    }
    .ceny_nav {
        flex-direction: row;
    }
    .ceny_nav__img {
        display: block;
    }
    .ceny_nav__left {
        flex: 0 0 384px;
    }
    .ceny_nav__left .h2 {
        margin-bottom: 16px;
    }
    .ceny_nav__right {
        flex: 1;
    }
}

/* "Why us" gradient block */
.ceny_gradient_block {
    padding: 24px;
    border-radius: 24px;
    background: linear-gradient(90deg, #71B3FF 0%, #A38CFF 100%);
}
.ceny_gradient_block .h3 {
    max-width: 984px;
    margin: auto;
}

/* Related services grid */
.ceny_related {
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr;
}
@media (min-width: 700px) {
    .ceny_related {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 992px) {
    .ceny_related {
        grid-template-columns: repeat(3, 1fr);
    }
}
.ceny_related__card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0px 16px 32px rgba(32, 34, 37, 0.08);
    min-height: 180px;
    text-decoration: none;
    color: var(--black1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ceny_related__card:hover {
    transform: translateY(-4px);
    box-shadow: 0px 24px 48px rgba(32, 34, 37, 0.12);
}
.ceny_related__card .h4 {
    margin-bottom: auto;
}
.ceny_related__card .h3 {
    color: var(--blue1, #5182FF);
}

/* nform */
.nform_wrap{
    padding: 40px 16px;
    margin-right: var(--negindent_xs);
    margin-left: var(--negindent_xs);
    background: var(--blue1);
}
.nform_wrap form{
    background-color: var(--white);
    padding: 24px;
    border-radius: 16px;
}
@media (min-width: 576px){
    .nform_wrap{
        padding: 40px 30px;
        margin-right: 0;
        margin-left: 0;
        border-radius: 16px;
    }
}
@media (min-width: 700px){
    .nform_wrap{
        background-image: var(--form_image_md);
        background-color: var(--blue1);
        background-repeat: no-repeat;
        background-position: bottom 251px right -160px;
        background-size: 534px;
    }
    .nform_info{
        max-width: 67%;
    }
}
@media (min-width: 760px){
    .nform_wrap{
        background-position: top 42px right -128px;
        background-size: auto;
    }
    .nform_info{
        max-width: 61%;
    }
}
@media (min-width: 992px){
    .nform_wrap{
        background-image: var(--form_image);
        background-size: auto;
        background-position: top right -175px;
    }
    .nform_info{
        max-width: 552px;
    }
}
@media (min-width: 1200px){
    .nform_wrap{
        background-size: auto;
        background-position: top right;
    }
}

/* ===== TEAM (tabs) ===== */
.ceny_team_text{
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.ceny_team_text p{
    margin: 0;
}
@media (min-width: 992px){
    .ceny_team_text{
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

/* ===== Calculator ===== */
.ceny_calc_wrap {
    padding: 32px;
    background: var(--blue-1, #5182FF);
    border-radius: 32px;
}
.ceny_calc_wrap .products{margin-bottom: 0;}
.ceny_calc_wrap .tarifcalc__cur{background: white;}
.ceny_calc_wrap p:not(:is(.products, .products *)), .ceny_calc_wrap .h2:not(:is(.products, .products *)){
  color: white;
}
@media (min-width: 528px) and (max-width: 575px) {
    .ceny_calc_wrap {
        margin-right: var(--negindent_sm);
        margin-left: var(--negindent_sm);
        border-radius: 0;
    }
}
@media (max-width: 527px) {
    .ceny_calc_wrap {
        padding: 32px 16px;
        margin-right: var(--negindent_xs);
        margin-left: var(--negindent_xs);
        border-radius: 0;
    }
}
.about_tags_person{
    position: relative;
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
}
.about_tags_person__inner{
    position: relative;
    display: inline-flex;
    gap: 16px;
    flex-wrap: nowrap;
    background-image: linear-gradient(#BCBEC2, #BCBEC2);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: 100% 1px;
}
.about_tag_person{
    color: #202225;
    text-align: center;
    font-variant-numeric: lining-nums proportional-nums;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 0.48px;
    text-transform: uppercase;
    padding: 0 16px;
    height: 34px;
    line-height: 34px;
    display: inline-flex;
    white-space: nowrap;
    align-items: center;
    justify-content: center;
}
.about_tag_person.about_tag_person__active{
    color: #5182FF;
    border-bottom: 1px solid #5182FF;
}
.about_persons{
    display: grid;
    gap: 24px;
}
.about_person{
    display: flex;
    align-items: center;
    gap: 24px;
}
.about_person_photo{
    flex-shrink: 0;
    width: 96px;
    height: 96px;
    border-radius: 16px;
    display: flex;
}
.about_person_name{
    color: #202225;
    font-variant-numeric: lining-nums proportional-nums;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    margin-bottom: 6px;
}
.about_person_position{
    color: #9D9FA3;
    font-variant-numeric: lining-nums proportional-nums;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}
@media (min-width: 700px){
    .about_persons{
        grid-template-columns: 1fr 1fr;
    }
}
@media (min-width: 992px){
    .about_persons{
        grid-template-columns: 1fr 1fr 1fr;
    }
    .about_tags_person__inner{
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        gap: 16px;
        width: 100%;
        justify-content: space-between;
    }
}

/* Pricing margins */
.mt16 {
    margin-top: 16px;
}

/* Inline note inside price table cell (3-НДФЛ) */
.ceny_qnds_inline {
    display: block;
    margin-top: 4px;
    font-size: 13px;
    line-height: 1.4;
    padding: 4px 8px;
}
@media (min-width: 700px) {
    .ceny_qnds_inline {
        font-size: 14px;
    }
}
