html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    color: #1c2539;
}

.mobile {
    display: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* header *******************************************************************************************************/

header {
    background: #1C2539;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}

.header-wrap {
    height: 80px;
    display: grid;
    grid-template-columns: 230px 1fr 280px;
    align-items: center;
}

.header-logo {
    width: 200px;
}

.header-logo img {
    width: 180px;
    display: block;
}

.header-nav {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    border-left: 1px solid #ffffff25;
    border-right: 1px solid #ffffff25;
}

.header-nav-item {
    position: relative;
}

.header-nav-link {
    padding: 13px;
    font-family: "Montserrat";
    font-size: 14px;
    color: #fff;
    font-weight: 600;
    transition: all .3s;
    white-space: nowrap;
    text-decoration: none;
}

.header-nav-item:hover > .header-nav-link {
    color: #1790FD;
}

/* Dropdown */
.dropdown-arrow {
    font-size: 10px;
    margin-left: 2px;
    display: inline-block;
    transition: transform .3s;
}

.header-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.header-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #1C2539;
    list-style: none;
    margin: 0;
    padding: 8px 0;
    min-width: 200px;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,.25);
    z-index: 100;
}

.header-dropdown:hover .header-dropdown-menu {
    display: block;
}

.header-dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: #fff;
    font-family: "Montserrat";
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    transition: all .2s;
}

.header-dropdown-menu li a:hover {
    background: rgba(255,255,255,.08);
    color: #1790FD;
}

.header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}

.header-socials {
    display: flex;
    gap: 12px;
}

.header-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
}

.header-socials a img {
    width: 26px;
}

.header-button button {
    padding: 10px 20px;
    font-size: 14px;
    border: 1px solid #fff;
    border-radius: 30px;
    cursor: pointer;
    transition: all ease .3s;
    font-family: 'Montserrat';
    font-weight: 500;
    background: #fff;
    color: #1C2539;
}

.header-button button:hover {
    background: #1790FD;
    border-color: #1790FD;
    color: #fff;
}

/* hero *******************************************************************************************************/

.hero {
    background-image: url(../img/hero.webp);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    height: 600px;
    position: relative;
    color: #fff;
    margin-top: 80px;
}

.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(28,37,57,0.85) 0%, rgba(28,37,57,0.5) 100%);
}

.hero-wrap {
    height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 65%;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: 'Montserrat';
    font-weight: 700;
    font-size: 32px;
    line-height: 1.4;
    margin-bottom: 20px;
}

.hero-text {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.7;
}

.hero-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-links a {
    display: inline-flex;
    align-items: center;
    color: #fff;
    padding: 12px 24px;
    background: #1790FD;
    border-radius: 30px;
    font-size: 16px;
    font-family: 'Montserrat';
    font-weight: 500;
    transition: all ease .3s;
}

.hero-links a:hover {
    background: #fff;
    color: #1C2539;
}

.hero-links a img {
    width: 20px;
    margin-right: 10px;
}

.hero-link-cta {
    background: transparent !important;
    border: 2px solid #fff;
}

.hero-link-cta:hover {
    background: #fff !important;
    color: #1C2539 !important;
}

/* section titles *******************************************************************************************************/

.section-title-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

#about .section-title-wrap {
    align-items: flex-start;
}

.section-title {
    position: relative;
    padding: 7px 20px;
    font-size: 18px;
    width: fit-content;
    border: 1px solid #5D666f;
    color: #5d666f;
    border-radius: 30px;
    font-family: 'Montserrat';
    font-weight: 500;
}

.section-title span {
    margin: 0 10px;
}

.section-title::before,
.section-title::after {
    content: url("../img/icon-star.svg");
}

.section-subtitle {
    font-family: 'Montserrat';
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    line-height: 1.3;
}

#about .section-subtitle {
    margin-bottom: 30px;
}

/* buttons *******************************************************************************************************/

.main-button button,
.main-button a {
    display: inline-block;
    padding: 12px 28px;
    font-size: 16px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all ease .3s;
    font-family: 'Montserrat';
    font-weight: 500;
    background: #1790FD;
    color: #fff;
    text-decoration: none;
    text-align: center;
}

.main-button button:hover,
.main-button a:hover {
    background: #1C2539;
    color: #fff;
}

/* about *******************************************************************************************************/

#about {
    padding: 80px 0 60px;
}

.about-wrap {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-left,
.about-right {
    width: 50%;
}

.about-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 40px -10px rgba(0,0,0,0.15);
}

.about-text {
    font-size: 15px;
    line-height: 1.8;
}

.about-text a {
    color: #1790FD;
    text-decoration: underline;
}

/* partners *******************************************************************************************************/

#partners {
    padding: 40px 0;
}

.partners-swiper .swiper-wrapper {
    transition-timing-function: linear;
}

.partners-swiper .swiper-slide {
    display: flex;
    height: 120px;
    align-items: center;
    justify-content: center;
}

.partners-swiper img {
    max-width: 180px;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all ease .3s;
}

.partners-swiper img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* services *******************************************************************************************************/

#services {
    padding: 80px 0;
    background: #f5f7fa;
}

.services-wrap {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.services-block {
    width: calc(33.333% - 17px);
    padding: 0;
    background: #fff;
    border-radius: 12px;
    transition: all ease .3s;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 2px 20px -5px rgba(0,0,0,0.08);
}

.services-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px -5px rgba(0,0,0,0.15);
}

.services-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.services-title {
    font-family: 'Montserrat';
    font-size: 18px;
    font-weight: 600;
    padding: 25px 25px 10px;
    transition: all ease .3s;
}

.services-text {
    padding: 0 25px;
    font-size: 14px;
    color: #5d666f;
    line-height: 1.6;
    flex: 1;
}

.services-block .main-button {
    padding: 15px 25px 25px;
}

.services-block .main-button button,
.services-block .main-button a {
    width: 100%;
    border: 1px solid #1790FD;
    font-size: 14px;
    padding: 10px 20px;
}

/* products *******************************************************************************************************/

#products {
    padding: 80px 0 40px;
}

.product-block {
    padding: 30px;
    border: 1px solid #e0e5ec;
    border-radius: 20px;
    margin-bottom: 40px;
    background: #fff;
    box-shadow: 0 2px 20px -5px rgba(0,0,0,0.06);
}

.product-top {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

#products .swiper-slide img {
    width: 100%;
    border-radius: 10px;
}

.product-image,
.products-description {
    width: 50%;
}

#products .swiper-button-prev,
#products .swiper-button-next {
    color: #1C2539;
    --swiper-navigation-size: 30px;
}

.products-title {
    font-family: 'Montserrat';
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.products-text {
    font-size: 14px;
    margin-bottom: 25px;
    line-height: 1.7;
    color: #5d666f;
}

.products-button {
    display: inline-block;
    padding: 12px 28px;
    font-size: 15px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all ease .3s;
    font-family: 'Montserrat';
    font-weight: 500;
    background: #1790FD;
    color: #fff;
}

.products-button:hover {
    background: #1C2539;
}

.products-bottom {
    margin-top: 25px;
    border-top: 1px solid #f0f0f0;
    padding-top: 25px;
}

.products-chars h3 {
    font-family: 'Montserrat';
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 15px;
}

.products-chars ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.products-chars ul li {
    padding: 10px 15px;
    font-size: 13px;
    border-bottom: 1px solid #f0f0f0;
    line-height: 1.5;
}

.products-chars ul li:nth-child(odd) {
    background: #f8f9fa;
}

.products-chars ul li strong {
    color: #1C2539;
}

.products-chars table {
    width: 100%;
    border-collapse: collapse;
}

.products-chars table th,
.products-chars table td {
    width: 50%;
    padding: 10px 15px;
    font-size: 13px;
    border-bottom: 1px solid #f0f0f0;
}

.products-chars table tr:nth-child(odd) {
    background: #f8f9fa;
}

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

.products-table th,
.products-table td {
    width: 50%;
    padding: 10px 15px;
    font-size: 13px;
    border-bottom: 1px solid #f0f0f0;
}

.products-table tr:nth-child(odd) {
    background: #f8f9fa;
}

/* "see all" link buttons *********************************************************************************/

.main-link {
    display: inline-block;
    padding: 12px 32px;
    border: 2px solid #1790FD;
    border-radius: 30px;
    color: #1790FD;
    font-family: 'Montserrat';
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all .3s;
}

.main-link:hover {
    background: #1790FD;
    color: #fff;
}

/* homepage section spacing ******************************************************************************/

#productcats {
    padding: 80px 0;
    background: #f5f7fa;
}

#applications {
    padding: 80px 0;
}

#projects-section {
    padding: 60px 0;
    background: #f5f7fa;
}

#certificates-section {
    padding: 60px 0;
}

/* textile *******************************************************************************************************/

#textile {
    padding: 80px 0;
    background: #f5f7fa;
}

.textile-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.textile-block {
    border: 1px solid #e0e5ec;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    background: #fff;
    overflow: hidden;
    transition: all ease .3s;
}

.textile-block:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px -5px rgba(0,0,0,0.1);
}

.textile-top {
    flex: 1;
}

.textile-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.textile-text-block {
    padding: 15px 20px 10px;
}

.textile-title {
    font-family: 'Montserrat';
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 8px;
    line-height: 1.3;
}

.textile-text {
    font-size: 13px;
    color: #5d666f;
    line-height: 1.5;
}

.textile-price {
    font-family: 'Montserrat';
    font-weight: 600;
    font-size: 14px;
    color: #1790FD;
    margin-top: 6px;
}

.textile-bottom {
    padding: 0 20px 20px;
}

.textile-button {
    display: block;
    padding: 10px;
    font-size: 13px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all ease .3s;
    font-family: 'Montserrat';
    font-weight: 500;
    background: #1790FD;
    color: #fff;
    width: 100%;
    text-align: center;
}

.textile-button:hover {
    background: #1C2539;
}

/* contacts *******************************************************************************************************/

#contacts {
    padding: 80px 0;
}

.contacts-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contacts-wrap-inner {
    width: 100%;
    max-width: 900px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 50px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 5px 40px -10px rgba(0,0,0,0.1);
}

.contacts-text {
    font-size: 15px;
    line-height: 1.8;
}

.contacts-text p {
    margin-bottom: 12px;
}

.contacts-text a {
    color: #1790FD;
    text-decoration: none;
}

.contacts-text a:hover {
    text-decoration: underline;
}

.contacts-socials {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.contacts-socials a {
    display: inline-flex;
}

.contacts-socials a img {
    width: 32px;
    height: 32px;
}

.contacts-form {
    display: flex;
    flex-direction: column;
}

.contacts-form-title {
    font-family: 'Montserrat';
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 15px;
}

.contacts-form input,
.contacts-form textarea {
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 12px;
    border-radius: 8px;
    border: 1px solid #e0e5ec;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: border-color ease .3s;
}

.contacts-form input:focus,
.contacts-form textarea:focus {
    outline: none;
    border-color: #1790FD;
}

.contacts-form textarea {
    resize: vertical;
    min-height: 80px;
}

.contacts-form button {
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Montserrat';
    font-weight: 600;
    color: #fff;
    background: #1C2539;
    cursor: pointer;
    transition: all ease .3s;
}

.contacts-form button:hover {
    background: #1790FD;
}

/* footer *******************************************************************************************************/

footer {
    background: #1C2539;
    color: #fff;
    padding: 60px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    width: 170px;
}

.footer-about {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
}

.footer-heading {
    font-family: 'Montserrat';
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 15px;
    color: #fff;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 14px;
    transition: all ease .3s;
}

.footer-links a:hover {
    color: #1790FD;
}

.footer-contacts {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contacts li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

.footer-contacts a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: all ease .3s;
}

.footer-contacts a:hover {
    color: #1790FD;
}

.footer-icon {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    filter: brightness(0) invert(1);
    opacity: 0.6;
}

.footer-icon-placeholder {
    width: 18px;
    margin-right: 10px;
    text-align: center;
    opacity: 0.4;
    font-size: 14px;
    flex-shrink: 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.footer-bottom p {
    margin: 0;
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    font-family: 'Montserrat';
}

.footer-bottom a {
    color: #1790FD;
    text-decoration: none;
}

footer a {
    color: rgba(255,255,255,0.7);
}

/* modal *******************************************************************************************************/

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
}

.modal.active {
    display: block;
    z-index: 100;
}

.modal-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 500px;
    margin: 15vh auto;
    background: white;
    padding: 40px;
    border-radius: 16px;
    z-index: 2;
}

.close-btn {
    position: absolute;
    background: transparent;
    border: none;
    top: 15px;
    right: 15px;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity .3s;
}

.close-btn:hover {
    opacity: 1;
}

.close-btn img {
    width: 24px;
}

.modal-text {
    text-align: center;
    margin-bottom: 25px;
    font-size: 22px;
    font-weight: 600;
    font-family: 'Montserrat';
}

.modal-form {
    display: flex;
    flex-direction: column;
}

.modal-form input {
    height: 48px;
    width: 100%;
    margin-bottom: 12px;
    padding: 0 16px;
    border-radius: 8px;
    border: 1px solid #e0e5ec;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
}

.modal-form input:focus {
    outline: none;
    border-color: #1790FD;
}

#modal-form-button {
    width: 100%;
    height: 48px;
    margin-bottom: 25px;
    border-radius: 8px;
    border: none;
    font-size: 16px;
    font-family: 'Montserrat';
    font-weight: 600;
    color: #fff;
    background: #1C2539;
    cursor: pointer;
    transition: all ease .3s;
}

#modal-form-button:hover {
    background: #1790FD;
}

#modal-form-button.hide {
    display: none;
}

#modal-form-sent {
    width: 100%;
    height: 48px;
    margin-bottom: 25px;
    border-radius: 8px;
    font-size: 16px;
    color: #fff;
    background: #1790FD;
    display: none;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat';
    font-weight: 500;
}

#modal-form-sent.show {
    display: flex;
}

.modal-socials {
    display: flex;
    justify-content: center;
    gap: 30px;
    text-align: center;
}

.modal-socials-item p {
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: 600;
    color: #5d666f;
}

.modal-socials-item a {
    text-decoration: none;
    font-size: 15px;
    color: #1790FD;
    font-weight: 500;
}

/* advantages *******************************************************************************************************/

#advantages {
    padding: 80px 0;
}

.advantages-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.advantage-block {
    text-align: center;
    padding: 35px 20px;
    background: #f5f7fa;
    border-radius: 12px;
    transition: all ease .3s;
}

.advantage-block:hover {
    background: #1C2539;
    color: #fff;
}

.advantage-block:hover .advantage-text {
    color: rgba(255,255,255,0.7);
}

.advantage-icon {
    margin-bottom: 20px;
}

.advantage-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.advantage-title {
    font-family: 'Montserrat';
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 10px;
}

.advantage-text {
    font-size: 13px;
    color: #5d666f;
    line-height: 1.6;
    transition: color .3s;
}

/* reviews *******************************************************************************************************/

#reviews {
    padding: 80px 0;
    background: #f5f7fa;
}

.review-block {
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    min-height: 160px;
    box-shadow: 0 2px 10px -3px rgba(0,0,0,0.06);
}

.review-name {
    font-family: 'Montserrat';
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 12px;
    color: #1C2539;
}

.review-text {
    font-size: 14px;
    color: #5d666f;
    line-height: 1.7;
}

.reviews-swiper .swiper-pagination {
    position: relative;
    margin-top: 25px;
}

.reviews-swiper .swiper-pagination-bullet-active {
    background: #1790FD;
}

/* news (homepage) *******************************************************************************************************/

#news {
    padding: 80px 0;
}

.news-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.news-block {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    transition: all ease .3s;
    text-decoration: none;
    color: #1C2539;
}

.news-block:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px -5px rgba(0,0,0,0.1);
}

.news-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s;
}

.news-block:hover .news-image img {
    transform: scale(1.05);
}

.news-title {
    font-family: 'Montserrat';
    font-weight: 600;
    font-size: 15px;
    padding: 20px 20px 5px;
    line-height: 1.4;
}

.news-date {
    font-size: 13px;
    color: #999;
    padding: 0 20px 15px;
}

#news > .container > div:last-child a {
    color: #1790FD;
    font-weight: 500;
    text-decoration: none;
}

#news > .container > div:last-child a:hover {
    text-decoration: underline;
}

/* breadcrumbs *******************************************************************************************************/

.breadcrumbs {
    padding: 20px 0;
    font-size: 14px;
    color: #999;
}

.breadcrumbs a {
    color: #1790FD;
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

/* inner page *******************************************************************************************************/

.page-content {
    padding: 50px 0 80px;
}

.page-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* faq *******************************************************************************************************/

.faq-item {
    border: 1px solid #f0f0f0;
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-question {
    padding: 18px 20px;
    font-family: 'Montserrat';
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all ease .3s;
    background: #fff;
}

.faq-question:hover {
    background: #f5f7fa;
}

.faq-question::after {
    content: "+";
    font-size: 22px;
    font-weight: 400;
    color: #1790FD;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-item.active .faq-question {
    background: #1C2539;
    color: #fff;
}

.faq-item.active .faq-question::after {
    content: "−";
    color: #fff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height ease .4s;
    padding: 0 20px;
    background: #f9fafb;
}

.faq-item.active .faq-answer {
    max-height: 600px;
    padding: 20px;
}

/* documents *******************************************************************************************************/

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

.document-card {
    padding: 30px;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    text-decoration: none;
    color: #1C2539;
    transition: all ease .3s;
}

.document-card:hover {
    border-color: #1790FD;
    box-shadow: 0 5px 20px -5px rgba(0,0,0,0.08);
}

.document-card h3 {
    font-family: 'Montserrat';
    font-weight: 600;
    font-size: 17px;
}

/* service / product detail *******************************************************************************************************/

.service-detail {
    display: flex;
    gap: 40px;
}

.service-main {
    flex: 1;
}

.service-sidebar {
    width: 280px;
    flex-shrink: 0;
}

.service-sidebar ul {
    list-style: none;
    padding: 0;
}

.service-sidebar li {
    margin-bottom: 5px;
}

.service-sidebar a {
    display: block;
    padding: 12px 15px;
    color: #1C2539;
    text-decoration: none;
    border-radius: 8px;
    transition: all ease .3s;
    font-size: 14px;
}

.service-sidebar a:hover,
.service-sidebar a.active {
    background: #1790FD;
    color: #fff;
}

.product-detail-image {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 30px;
}

.product-price {
    font-family: 'Montserrat';
    font-weight: 600;
    font-size: 22px;
    color: #1790FD;
    margin-bottom: 20px;
}

.product-colors {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.color-swatch {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #e0e5ec;
}

/* article *******************************************************************************************************/

.article-content {
    max-width: 800px;
    margin: 0 auto;
}

.article-content img {
    max-width: 100%;
    border-radius: 8px;
    margin-bottom: 20px;
}

.article-date {
    color: #999;
    font-size: 14px;
    margin-bottom: 20px;
}

.back-link {
    display: inline-block;
    margin-top: 30px;
    color: #1790FD;
    text-decoration: none;
    font-weight: 500;
}

.back-link:hover {
    text-decoration: underline;
}

/* pagination *******************************************************************************************************/

.pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    padding: 40px 0;
    list-style: none;
    margin: 0;
}

.pagination a,
.pagination span {
    padding: 8px 14px;
    border: 1px solid #e0e5ec;
    border-radius: 8px;
    color: #1C2539;
    text-decoration: none;
    transition: all ease .3s;
    font-size: 14px;
}

.pagination a:hover {
    background: #1790FD;
    color: #fff;
    border-color: #1790FD;
}

.pagination .current {
    background: #1C2539;
    color: #fff;
    border-color: #1C2539;
}

/* CTA *******************************************************************************************************/

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1790FD 0%, #0d6ecc 100%);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -10%;
    width: 60%;
    height: 200%;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    pointer-events: none;
}

.cta-section .section-title {
    border-color: rgba(255,255,255,0.4);
    color: rgba(255,255,255,0.9);
}

.cta-section .section-subtitle {
    color: #fff;
}

.cta-section .main-button button {
    background: #fff;
    color: #1790FD;
    font-size: 17px;
    padding: 14px 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.cta-section .main-button button:hover {
    background: #1C2539;
    color: #fff;
}

.cta-section a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.cta-section a:hover {
    opacity: 0.8;
}

.cta-contacts {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.cta-contact-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 17px;
    font-weight: 500;
    text-decoration: none;
    transition: opacity .3s;
}

.cta-contact-item:hover {
    opacity: 0.8;
}

.cta-contact-item img {
    width: 22px;
    height: 22px;
    filter: brightness(0) invert(1);
}

/* product detail page *******************************************************************************************************/

.pd-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 50px;
}

.pd-main-img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 15px;
}

.pd-thumbs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.pd-thumb {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.6;
    transition: all .3s;
}

.pd-thumb:hover,
.pd-thumb.active {
    opacity: 1;
    border-color: #1790FD;
}

.pd-title {
    font-family: 'Montserrat';
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 10px;
    line-height: 1.3;
}

.pd-price {
    font-family: 'Montserrat';
    font-weight: 600;
    font-size: 22px;
    color: #1790FD;
    margin-bottom: 20px;
}

.pd-desc {
    font-size: 14px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.pd-desc h3 {
    font-family: 'Montserrat';
    font-weight: 600;
    font-size: 16px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #1C2539;
}

.pd-desc ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.pd-desc li {
    margin-bottom: 5px;
    font-size: 14px;
}

.pd-colors {
    margin-bottom: 20px;
}

.pd-colors-label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.pd-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.pd-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: 1px solid #25d366;
    border-radius: 30px;
    color: #25d366;
    font-family: 'Montserrat';
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    transition: all .3s;
}

.pd-wa-btn:hover {
    background: #25d366;
    color: #fff;
}

.pd-wa-btn img,
.pd-wa-btn svg {
    width: 20px;
    height: 20px;
}

.pd-wa-btn:hover svg {
    fill: #fff;
}

.pd-call-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: 1px solid #1790FD;
    border-radius: 30px;
    color: #1790FD;
    font-family: 'Montserrat';
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    transition: all .3s;
}

.pd-call-btn:hover {
    background: #1790FD;
    color: #fff;
}

.pd-call-btn svg {
    width: 20px;
    height: 20px;
}

.pd-call-btn:hover svg {
    fill: #fff;
}

.pd-specs {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid #f0f0f0;
}

/* article page *******************************************************************************************************/

.article-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 50px;
    align-items: start;
}

.article-hero-img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 25px;
}

.article-date {
    font-size: 14px;
    color: #999;
    margin-bottom: 15px;
}

.article-body {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
}

.article-body h3 {
    font-family: 'Montserrat';
    font-weight: 600;
    font-size: 18px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #1C2539;
}

.article-body p {
    margin-bottom: 15px;
}

.article-body img {
    max-width: 100%;
    border-radius: 8px;
}

/* sidebar *******************************************************************************************************/

.sidebar-heading {
    font-family: 'Montserrat';
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 20px;
    color: #1C2539;
    padding-bottom: 10px;
    border-bottom: 2px solid #1790FD;
}

.sidebar-news-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    text-decoration: none;
    color: #1C2539;
    transition: all .3s;
}

.sidebar-news-item:hover {
    color: #1790FD;
}

.sidebar-news-item img {
    width: 80px;
    height: 55px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.sidebar-news-title {
    font-family: 'Montserrat';
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 4px;
    line-height: 1.3;
}

.sidebar-news-date {
    font-size: 12px;
    color: #999;
}

.article-sidebar .sidebar-heading,
.service-sidebar .sidebar-heading {
    font-size: 16px;
}

/* service content *******************************************************************************************************/

.service-content {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
}

.service-content h3 {
    font-family: 'Montserrat';
    font-weight: 600;
    font-size: 18px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #1C2539;
}

.service-content ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.service-content li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.service-content img {
    max-width: 100%;
    border-radius: 8px;
}

/* document page *******************************************************************************************************/

.document-section {
    padding: 50px 0 80px;
}

.document-content {
    max-width: 800px;
    margin: 0 auto;
}

.document-heading {
    font-family: 'Montserrat';
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 30px;
    color: #1C2539;
}

.document-body {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
}

.document-body h2 {
    font-family: 'Montserrat';
    font-weight: 600;
    font-size: 20px;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #1C2539;
    padding-bottom: 8px;
    border-bottom: 1px solid #f0f0f0;
}

.document-body h3 {
    font-family: 'Montserrat';
    font-weight: 600;
    font-size: 17px;
    margin-top: 25px;
    margin-bottom: 10px;
    color: #1C2539;
}

.document-body p {
    margin-bottom: 12px;
}

.document-body ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.document-body li {
    margin-bottom: 6px;
    line-height: 1.7;
}

.document-body em {
    color: #999;
}

.document-back {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.document-back a {
    color: #1790FD;
    text-decoration: none;
    font-weight: 500;
}

.document-back a:hover {
    text-decoration: underline;
}

/* contact page info blocks *******************************************************************************************************/

.contacts-info-block {
    margin-bottom: 15px;
}

.contacts-info-label {
    font-weight: 600;
    font-size: 14px;
    color: #5d666f;
    margin-bottom: 3px;
}

.contacts-info-block a {
    color: #1790FD;
    text-decoration: none;
    font-size: 16px;
}

.contacts-info-block a:hover {
    text-decoration: underline;
}

.contacts-info-block span {
    font-size: 16px;
}
