@property --initialBtnColor0 {
    syntax: '<color>';
    inherits: false;
    initial-value: #f5f7fa
}

@property --initialBtnColor1 {
    syntax: '<color>';
    inherits: false;
    initial-value: #f5f7fa
}

section{
    display: block !important;
    text-align: left;
}
/* Общий контейнер */
.unq-company-page {
    width: 100%;
    margin: 0;
    padding: 20px;
    background: #fffaf0;
    box-sizing: border-box;
}

/* Карточки */
.unq-card {
    background-color: #f8f7f1;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    box-sizing: border-box;
    max-width: 1400px;
    margin: 0 auto 40px auto;
}

.unq-card:first-child{
    padding: 5% 12% 5% 12%;
}
/* Убираем лишний отступ у последней карточки */
.unq-card:last-child {
    padding: 1% 2% 1% 2%;
    margin-bottom: 0;
}


/* Заголовки секций */
.unq-section-title {
    font-size: 2rem;
    /* background-image: linear-gradient(0deg, #FFD21C 60%, #faf144 100%);
    -webkit-background-clip: text;
    background-clip: text; */
    color: black;
    text-align: center;
    margin-bottom: 20px;
}

/* Заголовки внутри */
h2 {
    /* background-image: linear-gradient(0deg, #FFD21C 60%, #faf144 100%);
    -webkit-background-clip: text;
    background-clip: text; */
    color: black;
    margin-top: 20px;
}

/* Текст */
p {
    font-size: 1rem;
    margin-bottom: 15px;
}

/* Выделенные абзацы */
.unq-highlight {
    font-weight: bold;
    color: #333;
}

/* Маркированные списки */
.unq-list-bullets {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.unq-list-bullets li {
    margin-bottom: 10px;
    line-height: 1.4;
}

.unq-list-bullets li::before {
    content: "•";
    color: #1a73e8;
    margin-right: 8px;
}

/* Сетка технологий */
.unq-tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.unq-tech-grid li {
    background: #e8f4ff;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
}

/* Контейнер для продуктов */
.unq-products-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: stretch; /* растягиваем по высоте */
}

/* Продукты */
.unq-product-card {
    background: #f9fcff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    box-sizing: border-box;
    flex: 1 1 calc(33.333% - 20px); /* три в ряд */
    display: flex;
    flex-direction: column; /* чтобы кнопки/ссылки оставались внизу */
}

.unq-product-card h2 {
    margin-bottom: 2%;
}

/* Ссылки в списках документов */
.unq-docs-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.unq-docs-list li {
    margin-bottom: 10px;
}

.unq-docs-list a {
    color: #1a73e8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.unq-docs-list .extensions {
    color: #ff0000;
}

.unq-docs-list a:hover {
    color: #0c56c1;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    font-weight: inherit;
    line-height: inherit;
    margin: 1.2em 0;
}

ul li {
    padding-left: 40px;
    margin-bottom: 28px;
    position: relative;
}

ul:not(.footer-left) li::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    position: absolute;
    left: 12px;
    top: 6px;
    background: linear-gradient(0deg, #FFD21C 0%, #faf144 100%);
}

.section-documents__list-doc {
    margin: 10px 28px 10px 0;
    width: -webkit-calc(50% - 14px);
    width: calc(50% - 14px);
}

.document_type_box {
    padding: 14px 24px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    background-color: #fff;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.document {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    color: #191919;
    text-decoration: none;
    transition: all 0.3s ease-in;
}

a:not(.document):hover {
    --initialBtnColor0: #dfb719;
    --initialBtnColor1: #faf144;
    background-image: linear-gradient(0deg, var(--initialBtnColor0) 50%, var(--initialBtnColor1) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transition-property: --initialBtnColor0, --initialBtnColor1;
    transition: all .3s ease;
}

.document:hover {
    color: #448BFA;
    text-decoration: none;
}

.documents-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -14px;
}

.documents-list__doc {
    width: -webkit-calc(50% - 28px);
    width: calc(50% - 28px);
    margin: 0 14px 36px;
}

.document__icon {
    display: block;
    width: 24px;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: 18px;
    position: relative;
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
    margin-top: 3px;
}

.document__name {
    display: inline-block;
    max-width: 80%;
}

.icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    stroke-width: 0;
    stroke: black;
    fill: black;
}

.document__icon svg {
    width: 24px;
    height: 24px;
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
}

svg:not(:root) {
    overflow: hidden;
}

.document:hover .document__icon-default {
    opacity: 0;
}

.document:hover .document__icon-default {
    opacity: 0;
}

.document__icon-hover {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
}

.document:hover .document__icon-hover {
    opacity: 1;
    fill: #448BFA;
}

.product-sign_img { 
    max-width: 100%;
    max-height: 160px;
    /* aspect-ratio: 1;
    aspect-ratio: 516∶160;
    width: auto;
    height: auto; */
}

/* Адаптивность */
@media (max-width: 768px) {
    .unq-section-title {
        font-size: 1.5rem;
    }
    p {
        font-size: 0.95rem;
    }
    .unq-card {
        padding: 20px;
    }
    .unq-product-card {
        padding: 15px;
    }
}