:root {
    --primary-blue: #23A0D8;
    --primary-blue-light: #8EBBD7;
    --button-blue-light: #BBDEFA;
    --secondary-blue-light: #CCE9FA;
    --primary-blue-dark: #3B658B;
    --secondary-blue-dark: #23A0D8;
    --text-dark: #000000;
    --text-gray: #787878;
    --background-color: #F6F6F6;
    --secondary-background-color: #EBEBEB;
    --white: #ffffff;
    --font-family: 'Montserrat', sans-serif;
    --font-family-italic: 'Montserrat', sans-serif;
    --font-size: 16px;
    --success-green: #00A933;
    --success-green-light: #C9EFD4;

    /* Border */
    --border-light: #e0e8f0;

    /* Transition */
    --transition-default: all 0.3s ease;

    /* Font sizes (titles) */
    --font-size-title-xl: 72px;
    --font-size-title-lg: 48px;
    --font-size-title-md: 28px;

    /* Border radius */
    --border-radius-sm: 10px;
    --border-radius-md: 12px;
    --border-radius-lg: 16px;
    --border-radius-xl: 20px;
    --border-radius-pill: 25px;
}

* {
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size);
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}

main {
    margin-bottom: 3rem;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family);
    font-weight: 700;
    margin-bottom: 1rem;
}

a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-blue-light);
    text-decoration: none;
}

/* Layout */
.main-col {
    max-width: 1367px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 14px;
    border: none;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    outline: none;
}

.btn-primary {
    background: var(--primary-blue-light);
    color: var(--white);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background: var(--primary-blue-light);
    color: var(--white);
    outline: none;
    box-shadow: none;
    text-decoration: none;
}

.btn-outline {
    background: transparent;
    color: var(--primary-blue);
    border: 1px solid var(--primary-blue-light);
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 12px;
}

/* Logo Section */
.logo-section {
    background: var(--white);
    padding: 40px 0 25px;
    max-width: 1367px;
    margin: 0 auto;
}

.logo-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 15px;
}

.servio-logo-combined {
    height: 86px;
    width: auto;
    flex-shrink: 0;
}

.servio-tagline {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-gray);
    line-height: 1.5;
    text-align: right;
    margin: 0;
}

.control-text {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1;
    text-align: right;
    flex-shrink: 0;
}

.top_logo {
    background: var(--white);
}

/* Header */
.header {
    background: var(--white);
    padding: 10px 0;
    top: 0;
    z-index: 1000;
}

.header .navbar {
    padding: 0;
}

.header .navbar-brand img {
    height: 35px;
    width: auto;
}

.header .nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark) !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 15px !important;
}

.header .nav-link:hover {
    color: var(--primary-blue) !important;
}

.header-buttons {
    gap: 15px;
}

.header-buttons .btn {
    border-radius: var(--border-radius-xl);
    background: transparent;
    color: var(--primary-blue-light);
    border: 1px solid var(--primary-blue-light);
}

.header-buttons .btn:hover {
    background: var(--primary-blue-light);
    color: var(--white);
    border-color: var(--primary-blue-light);
}

/* Header order dropdown */
.header-order-dropdown .btn.dropdown-toggle {
    border-radius: var(--border-radius-xl);
    background: transparent;
    color: var(--primary-blue-light);
    border: 1px solid var(--primary-blue-light);
}

.header-order-dropdown .btn.dropdown-toggle::after {
    display: none;
}

.header-order-dropdown .btn.dropdown-toggle:hover,
.header-order-dropdown .btn.dropdown-toggle.show {
    background: var(--primary-blue-light);
    color: var(--white);
    border-color: var(--primary-blue-light);
}

.header-order-dropdown .btn.dropdown-toggle.show {
    visibility: hidden;
}

.header-order-dropdown {
    position: relative;
}

.header-order-menu {
    border-radius: var(--border-radius-xl);
    border: 1px solid var(--text-dark);
    padding: 6px;
    min-width: 180px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    top: 0 !important;
    margin: 0 !important;
    transform: none !important;
}

.header-order-menu li + li {
    margin-top: 4px;
}

.header-order-menu .dropdown-item {
    padding: 10px 20px;
    font-size: 14px;
    color: var(--text-dark);
    font-family: var(--font-family);
    background: var(--background-color);
    border-radius: var(--border-radius-xl);
    text-align: center;
}

.header-order-menu .dropdown-item:hover {
    background: #e8e8e8;
    color: var(--text-dark);
}

.header-order-menu .header-order-label {
    background: var(--primary-blue-light);
    color: var(--white);
    cursor: default;
}

.header-order-menu .header-order-label:hover {
    background: var(--primary-blue-light);
    color: var(--white);
}


/* Custom hamburger - no border, animated to X */
.header .navbar-toggler {
    border: none;
    padding: 10px;
    background: transparent;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    display: none;
}
.header .navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.header .toggler-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--primary-blue-light);
    transition: var(--transition-default);
    transform-origin: center;
}

/* Animate to X when open */
.header .navbar-toggler[aria-expanded="true"] .toggler-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.header .navbar-toggler[aria-expanded="true"] .toggler-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.header .navbar-toggler[aria-expanded="true"] .toggler-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Desktop: horizontal nav */
.navbar-nav-wrapper {
    display: flex;
    align-items: center;
    flex-grow: 1;
}

.nav-links-row {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    margin: 0;
    flex-grow: 1;
    justify-content: center;
}

.nav-links-row .col-6 {
    width: auto;
    flex: none;
    padding: 0;
}

.nav-buttons-mobile {
    display: none;
}

/* Hero Slider */
/* Hero Swiper inside card-top */
.card-top .hero-swiper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 597px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.0) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
    z-index: 1;
    pointer-events: none;
}

.hero-slide-text {
    position: absolute;
    bottom: 55px;
    left: 30px;
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    max-width: 60%;
    z-index: 2;
}

.hero-slider-controls {
    position: absolute;
    top: 50px;
    left: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 10;
    pointer-events: none;
}

.hero-slider-arrows {
    display: flex;
    align-items: center;
    gap: 6px;
    pointer-events: auto;
    background: var(--white);
    border-radius: var(--border-radius-sm);
    padding: 6px;
}

.hero-slider-prev,
.hero-slider-next {
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 6px;
    background: transparent;
    color: var(--primary-blue-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-default);
}

.hero-slider-prev:hover,
.hero-slider-next:hover {
    color: var(--primary-blue-dark);
}

.hero-slider-pagination {
    display: flex;
    align-items: center;
    pointer-events: auto;
    margin-left: auto;
}

.hero-slider-pagination.swiper-pagination-horizontal {
    position: static;
    width: auto;
}

.hero-slider-pagination .swiper-pagination-bullet {
    width: 24px;
    height: 4px;
    border-radius: 2px;
    background: var(--white);
    opacity: 1;
    transition: var(--transition-default);
}

.hero-slider-pagination .swiper-pagination-bullet-active {
    width: 32px;
    background: var(--primary-blue-light);
}

/* Slider Section */
.slider-section {
    position: relative;
}

.slider-section .card-part.card-top {
    overflow: hidden;
    background: transparent;
    border: none;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 0;
    padding: 0;
    min-height: 597px;
}

.slider-section .card-part.card-top::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 250px;
    height: 127px;
    background: var(--white);
    z-index: 2;
    clip-path: path('M 55 30 L 220 30 A 30 30 0 0 0 250 0 L 250 127 L 0 127 A 30 30 0 0 0 30 97 L 30 55 A 25 25 0 0 1 55 30 Z');
}

.slider-section .card-bottom-row {
    margin-top: auto;
    position: relative;
    z-index: 3;
}

.slider-section .card-part.card-bottom {
    background: transparent;
    border-color: transparent;
}

.slider-section .card-wrap {
    background: transparent;
}

/* Mobile Slider Section (<=992px) */
.slider-section-mobile {
    padding: 0;
}

.hero-mobile-swiper-wrap {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
}

.slider-section-mobile .hero-slide-text {
    bottom: 40px;
    left: 25px;
}

.hero-mobile-controls {
    position: absolute;
    top: 30px;
    left: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 10;
    pointer-events: none;
}

.hero-mobile-prev,
.hero-mobile-next {
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 6px;
    background: transparent;
    color: var(--primary-blue-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-default);
}

.hero-mobile-prev:hover,
.hero-mobile-next:hover {
    color: var(--primary-blue-dark);
}

.hero-mobile-pagination {
    display: flex;
    align-items: center;
    pointer-events: auto;
    margin-left: auto;
}

.hero-mobile-pagination.swiper-pagination-horizontal {
    position: static;
    width: auto;
}

.hero-mobile-pagination .swiper-pagination-bullet {
    width: 24px;
    height: 4px;
    border-radius: 2px;
    background: var(--white);
    opacity: 1;
    transition: var(--transition-default);
}

.hero-mobile-pagination .swiper-pagination-bullet-active {
    width: 32px;
    background: var(--primary-blue-light);
}

.slider-section-mobile .btn-primary {
    min-width: 200px;
}

.main-slider-wrap {
    position: relative;
}

.main-slider-wrap .slick-slide {
    height: auto;
}

.main-slider-wrap .slick-track {
    display: flex;
}

.main-slider-wrap.slick-initialized .slick-slide {
    display: block;
}

.slider-container {
    position: relative;
    min-height: 550px;
    background-size: cover;
    background-position: center;
    display: flex !important;
    align-items: flex-end;
}

.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    border-radius: var(--border-radius-pill);
}

.slider_text_div {
    position: relative;
    z-index: 2;
    padding-top: 80px;
    padding-bottom: 100px;
    max-width: 600px;
}

.slidertoptext {
    color: var(--white);
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 10px;
    line-height: 1.3;
}

.slidertext {
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 30px;
}

.slidertext p {
    margin: 0;
}

.slider-cut {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 280px;
    height: 120px;
    background: var(--white);
    border-radius: 100px 0 0 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 40px;
    padding-top: 20px;
}

.slider-cut .btn {
    background: var(--primary-blue-light);
    color: var(--white);
    border-radius: 15px;
    padding: 12px 30px;
    font-weight: 500;
    font-size: 16px;
    border: none;
}

.slider-cut .btn:hover {
    background: #d5623b;
    color: var(--white);
}

.slider-nav {
    position: absolute;
    left: 30px;
    bottom: 100px;
    display: flex;
    gap: 5px;
    z-index: 10;
}

.slider-prev,
.slider-next {
    width: 40px;
    height: 40px;
    border: 2px solid var(--white);
    background: transparent;
    color: var(--white);
    border-radius: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-default);
}

.slider-prev:hover,
.slider-next:hover {
    background: var(--white);
    color: var(--primary-blue);
}

.slick-dots li button:before {
    content: none;
}

.main-slider-wrap .slick-dots {
    position: absolute;
    right: 300px;
    bottom: 50px;
    display: flex !important;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
    z-index: 10;
}

.main-slider-wrap .slick-dots li {
    margin: 0;
    width: auto;
    height: auto;
}

.main-slider-wrap .slick-dots li button {
    width: 30px;
    height: 3px;
    background: var(--white);
    border: none;
    padding: 0;
    font-size: 0;
    cursor: pointer;
    transition: var(--transition-default);
    border-radius: 0;
}

.main-slider-wrap .slick-dots li.slick-active button {
    background: var(--white);
    width: 50px;
}

/* News Plugin */
.news-plugin {
    padding: 50px 0;
    background: var(--white);
}

.news-page {
    padding: 60px 0 80px;
    background: var(--primary-blue-light);
}

.news-page-header {
    margin-bottom: 40px;
}

.news-label-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: var(--white);
    border: 1px solid var(--primary-blue-light);
    border-radius: var(--border-radius-xl);
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-blue-light);
}

.news-label-text .dot {
    width: 8px;
    height: 8px;
    background: var(--primary-blue-light);
    border-radius: 50%;
}

.news-page-title {
    font-size: 48px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--text-dark);
    line-height: 1.1;
    margin: 0;
}

.news-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.news-page-featured {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-page-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.news-card {
    background: var(--secondary-blue-light);
    border-radius: var(--border-radius-md);
    padding: 25px;
}

.news-card--bordered {
    background: var(--white);
    border: 1px solid var(--border-light);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.news-card-date {
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: 12px;
}

.news-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
}

.news-tag,
.news-tag-more {
    display: inline-block;
    padding: 6px 14px;
    background: var(--white);
    border-radius: 15px;
    font-size: 14px;
    color: var(--text-dark);
}

.news-card-title {
    font-size: 23px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 12px;
}

.news-card-featured .news-card-title {
    font-size: 26px;
}

.news-card-excerpt {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.5;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.news-card-link:hover {
    color: var(--primary-blue-dark);
}

.news-card-link span {
    font-size: 18px;
}

.news-card--compact {
    padding: 25px 30px;
    min-height: 350px;
    display: flex;
    flex-direction: column;
}

.news-card--compact .news-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.news-card--compact .news-card-date {
    margin-bottom: 0;
    white-space: nowrap;
}

/*.news-card--compact .news-card-tags {*/
/*    margin-bottom: 0;*/
/*}*/

.news-card--compact .news-card-title {
    font-size: 22px;
    margin-bottom: 12px;
}

.news-card--compact .news-card-excerpt {
    font-size: 13px;
    margin-bottom: 12px;
}

.news-card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.news-page-footer {
    text-align: center;
    margin-top: 50px;
}

/* ==========================================
   NEWS PAGE (index.html)
   ========================================== */
.news-page-section {
    padding: 40px 0 80px;
    background: var(--white);
}

.news-page-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.news-page-header-left {
    flex: 0 0 auto;
}

/* Page Main Titles — shared styles */
.news-page-main-title,
.support-main-title,
.contacts-main-title,
.projects-main-title,
.faq-page-main-title,
.pricelist-page-main-title,
.geo-main-title,
.download-main-title {
    font-size: var(--font-size-title-lg);
    font-weight: 900;
    text-transform: uppercase;
    color: var(--text-dark);
    line-height: 1.1;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.news-page-main-title,
.projects-main-title,
.faq-page-main-title,
.pricelist-page-main-title {
    margin: 0 0 10px;
}

.geo-main-title {
    max-width: 700px;
}

.news-page-main-title .news-page-num {
    font-size: inherit;
    font-weight: inherit;
    color: var(--text-dark);
    text-transform: none;
}

/* Breadcrumbs — shared styles */
.news-breadcrumbs,
.news-item-breadcrumbs,
.support-breadcrumbs,
.contacts-breadcrumbs,
.projects-breadcrumbs,
.faq-breadcrumbs,
.pricelist-breadcrumbs,
.download-breadcrumbs,
.product-breadcrumbs,
.order-breadcrumbs,
.order-breadcrumb-nav {
    margin-bottom: 40px;
    font-size: 14px;
    color: var(--text-gray);
}

.news-breadcrumbs a,
.news-item-breadcrumbs a,
.support-breadcrumbs a,
.contacts-breadcrumbs a,
.projects-breadcrumbs a,
.faq-breadcrumbs a,
.pricelist-breadcrumbs a,
.download-breadcrumbs a,
.product-breadcrumbs a,
.order-breadcrumbs a,
.order-breadcrumb-nav a {
    color: var(--text-gray);
    text-decoration: none;
}

.news-breadcrumbs a:hover,
.news-item-breadcrumbs a:hover,
.support-breadcrumbs a:hover,
.contacts-breadcrumbs a:hover,
.projects-breadcrumbs a:hover,
.faq-breadcrumbs a:hover,
.pricelist-breadcrumbs a:hover,
.download-breadcrumbs a:hover,
.product-breadcrumbs a:hover,
.order-breadcrumbs a:hover,
.order-breadcrumb-nav a:hover {
    color: var(--primary-blue);
}

.breadcrumb-sep,
.breadcrumb-separator {
    margin: 0 8px;
    color: var(--text-gray);
}

.news-breadcrumbs .breadcrumb-current,
.news-item-breadcrumbs .breadcrumb-current,
.faq-breadcrumbs .breadcrumb-current,
.pricelist-breadcrumbs .breadcrumb-current,
.contacts-breadcrumbs .breadcrumb-current,
.projects-breadcrumbs .breadcrumb-current,
.download-breadcrumbs .breadcrumb-current,
.product-breadcrumbs .breadcrumb-current,
.support-breadcrumbs .breadcrumb-current,
.order-breadcrumbs .breadcrumb-current,
.order-breadcrumb-nav .breadcrumb-current {
    color: var(--text-dark);
    background: var(--secondary-blue-light);
    padding: 4px 14px;
    border-radius: var(--border-radius-xl);
}

.news-page-header-right {
    flex: 0 0 400px;
    text-align: right;
}

.news-page-subtitle {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.5;
    margin: 0;
}

.news-page-center {
    text-align: center;
    margin-bottom: 60px;
}

/* Page Big Titles — shared styles */
.news-page-big-title,
.pricelist-page-big-title {
    font-size: var(--font-size-title-xl);
    font-weight: 900;
    text-transform: uppercase;
    color: var(--text-dark);
    line-height: 1.1;
    margin: 0 0 20px;
}

.news-page-description {
    font-size: 16px;
    color: var(--text-gray);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.5;
}

/* News Filter Tags */
.news-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.news-filter-tag {
    display: inline-block;
    padding: 10px 20px;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-pill);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition-default);
}

.news-filter-tag:hover {
    background: var(--secondary-blue-light);
    border-color: var(--primary-blue-light);
    color: var(--text-dark);
}

.news-filter-tag.active {
    background: var(--primary-blue-light);
    border-color: var(--primary-blue-light);
    color: var(--white);
}

/* News Grid - 2 per row */
.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

/* News Pagination - right aligned */
.news-pagination {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}

.news-pagination-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--primary-blue-light);
    border-radius: 8px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 18px;
    transition: var(--transition-default);
}

.news-pagination-arrow:hover {
    background: var(--primary-blue-light);
    color: var(--white);
}

.news-pagination-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition-default);
}

.news-pagination-num:hover {
    background: var(--primary-blue-light);
    color: var(--white);
}

.news-pagination-num.active {
    background: var(--primary-blue-light);
    color: var(--white);
}

.news-pagination-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    color: var(--text-gray);
    font-size: 14px;
}

/* News Page Responsive */
/* News Detail */
.news-detail {
    padding: 40px 0 80px;
    background: var(--primary-blue-light);
}

.news-detail-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 30px;
    transition: color 0.3s ease;
}

.news-detail-back:hover {
    color: var(--primary-blue-light);
}

.news-detail-back span {
    font-size: 18px;
}

.news-detail-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    align-items: start;
}

.news-detail-content {
    background: var(--white);
    border-radius: var(--border-radius-md);
    padding: 40px;
}

.news-detail-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.news-detail-date {
    font-size: 14px;
    color: var(--text-gray);
}

.news-detail-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 25px;
}

.news-detail-text {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.7;
}

.news-detail-text p {
    margin-bottom: 15px;
}

.news-detail-gallery {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.news-detail-image {
    display: block;
    border-radius: 8px;
    overflow: hidden;
}

.news-detail-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.news-detail-image:hover img {
    transform: scale(1.03);
}

/* News Item Page */
.news-item-section {
    padding: 40px 0 80px;
    background: var(--white);
}

.news-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 15px;
}

.news-item-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin: 0;
    text-transform: uppercase;
}

.news-item-date {
    font-size: 14px;
    color: var(--text-gray);
    white-space: nowrap;
    padding-top: 10px;
}

/* news-item-breadcrumbs, breadcrumb-separator, breadcrumb-current — moved to shared breadcrumbs block */
.breadcrumb-current {
    font-size: 14px;
    color: var(--text-gray);
}

.news-item-left-column {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.news-item-main {
    flex: 1;
}

.news-item-section .row {
    align-items: stretch;
}

.news-item-section .col-lg-8,
.news-item-section .col-lg-4 {
    display: flex;
    flex-direction: column;
}

.news-item-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.news-item-tag {
    display: inline-block;
    padding: 6px 15px;
    background: var(--primary-blue-light);
    border-radius: var(--border-radius-xl);
    font-size: 13px;
    color: var(--text-dark);
}

.news-item-content {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.7;
}

.news-item-content a {
    color: var(--primary-blue-light);
}

.news-item-content a:hover {
    color: var(--primary-blue);
    text-decoration: underline;
}

.news-item-content p {
    margin-bottom: 15px;
}

.news-item-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.news-item-image {
    display: block;
    border-radius: 8px;
    overflow: hidden;
    max-width: 200px;
}

.news-item-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

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

/* Sidebar */
.news-item-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.sidebar-news-card {
    background: var(--white);
    padding: 20px;
    border-bottom: 2px solid var(--secondary-blue-light);
}

.sidebar-news-card:last-child {
    border-bottom: none;
}

.sidebar-news-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.sidebar-news-tag {
    display: inline-block;
    padding: 4px;
    border-radius: 15px;
    font-size: 12px;
    color: var(--text-dark);
}

.sidebar-news-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.3;
    margin: 0 0 12px;
}

.sidebar-news-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    text-decoration: none;
}

.sidebar-news-link:hover {
    color: var(--primary-blue);
}

/* Contact Block in Sidebar */
.news-contact-block {
    background:
        url('/static/imgs/callback_logo.svg') right calc(100% + 10px) no-repeat,
        radial-gradient(
            circle at center,
            rgba(48, 85, 120, 0.005) 0%,
            rgba(47, 82, 117, 0.01) 15%,
            rgba(45, 80, 115, 1) 70%
        );
    background-size: 110% auto, cover;
    border-radius: var(--border-radius-md);
    padding: 30px;
    text-align: left;
    min-height: 273px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-top: auto;
    overflow: hidden;
}

.news-contact-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 15px;
}

.news-contact-block .btn-footer {
    width: auto;
    display: inline-block;
    align-self: flex-start;
    padding: 10px 20px;
    font-size: 12px;
    background: var(--white);
    border-color: var(--white);
    color: var(--text-dark);
}

.news-contact-block .btn-footer:hover,
.news-contact-block .btn-footer:focus,
.news-contact-block .btn-footer:active,
.news-contact-block .btn-footer:focus-visible {
    background: var(--white);
    border-color: var(--white);
    color: var(--text-dark);
    outline: none;
    box-shadow: none;
    text-decoration: none;
}

/* News Pagination */
.news-item-pagination {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: auto;
    padding-top: 30px;
}

.news-pagination-btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border-radius: var(--border-radius-pill);
    transition: var(--transition-default);
}

.news-pagination-prev,
.news-pagination-next {
    background: transparent;
    color: var(--text-dark);
    border: 1px solid var(--primary-blue-light);
}

.news-pagination-prev:hover,
.news-pagination-next:hover {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: var(--white);
}

.news-pagination-btn.disabled {
    opacity: 0.5;
    pointer-events: none;
    cursor: default;
}

.news-pagination-line {
    flex: 1;
    height: 1px;
    background: var(--primary-blue-light);
}

/* Footer */
.footer {
    background: var(--primary-blue-dark);
    color: var(--white);
    padding: 50px 0 25px;
    overflow-x: hidden;
    position: relative;
    z-index: 2;
}

/* Footer Main Row - Desktop: 3 columns */
.footer-main-row {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-col-links {
    flex: 1;
}

.footer-col-contacts {
    flex: 1;
}

.footer-col-buttons {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-links-grid {
    display: flex;
    gap: 40px;
}

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

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

.footer-links a {
    color: var(--white);
    font-size: 16px;
    transition: color 0.3s ease;
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--primary-blue-light);
}

.footer-contact-list p {
    font-size: 16px;
    color: var(--white);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-icon {
    flex-shrink: 0;
}

.footer-buttons-wrap {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-footer {
    width: 200px;
    white-space: nowrap;
    padding: 14px 28px;
    font-size: 15px;
    background: transparent;
    color: var(--white);
    border: 1px solid var(--primary-blue-light);
    border-radius: 8px;
    text-align: center;
    transition: var(--transition-default);
    text-decoration: none;
}

.btn-footer:hover {
    background: var(--primary-blue-light);
    color: var(--white);
}

/* Footer Bottom Row */
.footer-bottom-row {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 25px;
}

.footer-copyright {
    font-size: 14px;
    color: var(--white);
}

.footer-line {
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,0.3);
}

.footer-policy-link {
    font-size: 14px;
    color: var(--white);
    text-decoration: none;
}

.footer-policy-link:hover {
    color: var(--primary-blue-light);
}

/* Footer Marquee */
.footer-marquee {
    overflow: hidden;
    white-space: nowrap;
    padding: 15px 0 0;
}

.marquee-track {
    display: inline-flex;
    animation: marquee 20s linear infinite;
    min-width: max-content;
}

.marquee-text {
    font-size: 200px;
    font-weight: 900;
    color: var(--white);
    text-transform: uppercase;
    padding-right: 80px;
}

@keyframes marquee {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

/* Card Element */
.card-element {
    width: 100%;
    position: relative;
}

.card-part {
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.card-top {
    width: 100%;
    min-height: 500px;
    border-top-right-radius: 30px;
    border-top-left-radius: 30px;
    border-bottom-right-radius: 30px;
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.card-bottom-row {
    display: flex;
    width: 100%;
}

.card-bottom {
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 50px;
    padding: 20px;
    width: calc(100% - 220px);
    height: 97px;
}

.card-bottom-wrapper {
    position: relative;
}

.card-wrap {
    position: absolute;
    width: 55px;
    height: 75px;
    left: 0;
    top: 0;
    background: var(--primary-blue-light);
}

.card-corner-white {
    position: absolute;
    width: 55px;
    height: 75px;
    border-top-left-radius: 25px;
    background: var(--white);
    left: 0;
    top: 0;
}

.card-button-wrapper {
    z-index: 10;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 75px;
    padding-left: 25px;
}

.card-button-wrapper .btn {
    width: 170px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 16px;
    border-radius: var(--border-radius-sm);
}

.card-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: var(--border-radius-xl);
}

/* Swiper Slider inside Card */
.card-top .main-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-top-right-radius: 30px;
    border-top-left-radius: 30px;
    border-bottom-right-radius: 30px;
    overflow: hidden;
}

.card-slide {
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.card-slide .slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.4) 100%);
}

.card-slide .slider_text_div {
    position: absolute;
    bottom: 120px;
    left: 30px;
    right: 30px;
    color: var(--white);
    z-index: 2;
}

.card-slide .slidertoptext {
    font-size: 18px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.card-slide .slidertext {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
    max-width: 600px;
}

.card-bottom-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 5;
}

.card-bottom-transparent {
    background: transparent;
    border-color: transparent;
}

.card-wrap-transparent {
    background: transparent;
    border-color: transparent;
}

/* Slider controls */
.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 250px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.slider-arrows {
    display: flex;
    gap: 10px;
}

.slider-prev,
.slider-next {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--white);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-default);
}

.slider-prev:hover,
.slider-next:hover {
    background: var(--white);
}

/* Swiper pagination */
.swiper-pagination {
    position: static !important;
    display: flex;
    gap: 8px;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--white);
    opacity: 1;
    transition: var(--transition-default);
}

.swiper-pagination-bullet-active {
    background: var(--white);
    width: 30px;
    border-radius: 5px;
}

/* ==========================================
   SUPPORT PAGE
   ========================================== */
.support-page-section {
    padding: 50px 0;
    background: var(--white);
}

.support-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

/* support-main-title — moved to shared page titles block */

.support-cabinet-btn,
a.btn.btn-cabinet {
        display: inline-block;
    padding: 12px 24px;
    background: var(--button-blue-light);
    color: var(--secondary-blue-dark);
    border-radius: var(--border-radius-xl);
    font-family: var(--font-family);
    font-size: 14px;
    text-decoration: none;
    border: none;
    white-space: nowrap;
}

a.btn.support-cabinet-btn:hover,
a.btn.support-cabinet-btn:focus,
a.btn.support-cabinet-btn:active,
a.btn.support-cabinet-btn:focus-visible {
    background: var(--button-blue-light);
    color: var(--secondary-blue-dark);
    text-decoration: none;
    outline: none;
    box-shadow: none;
}


/* support-breadcrumbs — moved to shared breadcrumbs block */

/* Support cards */
.support-card {
    border-radius: var(--border-radius-lg);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    min-height: 200px;
}

.support-card--accent {
    background: var(--secondary-blue-light);
    border: 1px solid #e0edf5;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: box-shadow 0.2s;
}

.support-card--accent:hover {
    color: var(--white);
    background: var(--primary-blue-light);
}

.support-card--doc {
    background: var(--background-color);
}

.support-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.support-card-body {
    color: var( --text-dark);
}

.support-card-label {
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: 12px;
}

.support-card--accent:hover .support-card-body,
.support-card--accent:hover .support-card-body .support-card-label {
    color: var(--white);
}

.support-card--accent:hover .support-card-arrow svg path {
    stroke: var(--white);
}

.support-card-phone {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 2px;
}

.support-card-email {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 2px;
}

.support-card-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.support-card-arrow {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 50%;
    transition: background 0.2s;
}

/* Document cards */
.support-card--doc .support-card-body {
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    justify-content: flex-start;
}

.support-doc-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    margin-top: 2px;
}

.support-doc-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.4;
    margin: 0;
}

.support-doc-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: var(--border-radius-sm);
    font-size: 14px;
    padding: 10px 20px;
    margin-top: auto;
    align-self: flex-start;
}

/* Support FAQ section */
.support-faq-section {
    padding: 0 30px;
}

.support-faq-center {
    text-align: center;
    margin-bottom: 40px;
}

.support-faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 1000px;
    margin: 0 auto;
}
/* ==========================================
   CONTACTS PAGE
   ========================================== */
.contacts-page-section {
    padding: 40px 0 80px;
    background: var(--white);
}

.contacts-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
    gap: 40px;
}

/* contacts-main-title — moved to shared page titles block */

.contacts-header-desc {
    max-width: 300px;
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.5;
    margin: 0;
    text-align: left;
}

/* contacts-breadcrumbs — moved to shared breadcrumbs block */

.contacts-big-title {
    font-size: 52px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--text-dark);
    margin: 0 0 10px;
    line-height: 1.1;
}

.contacts-subtitle {
    font-size: 16px;
    color: var(--text-gray);
    margin: 0;
}

/* Blue info card */
.contacts-info-card {
    background: var(--primary-blue-light);
    border-radius: var(--border-radius-lg);
    padding: 24px 30px;
    min-width: 280px;
    color: var(--white);
}

.contacts-info-card-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
}

.contacts-info-card-hours {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
}

.contacts-info-card-email {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 2px;
}

.contacts-info-card-note {
    font-size: 13px;
    margin: 0;
}

/* Office cards */
.contacts-card {
    border-radius: var(--border-radius-lg);
    padding: 24px;
    display: flex;
    flex-direction: column;
    position: relative;
    min-height: 200px;
}

.contacts-card--office {
    background: var(--secondary-blue-light);
    border: 1px solid #e0edf5;
}

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

.contacts-card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 2px;
}

.contacts-card-subtitle {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
}

.contacts-card-arrow {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.contacts-card-label {
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: 6px;
}

.contacts-card-text {
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.5;
    margin-bottom: 4px;
}

.contacts-card-text-sm {
    font-size: 11px;
    color: var(--text-gray);
    line-height: 1.4;
    margin-bottom: 8px;
}

.contacts-card-phone {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.contacts-card-email {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

/* Divider */
.contacts-divider {
    border: none;
    border-top: 1px solid var(--border-light);
    margin: 30px 0;
}

/* Person cards */
.contacts-card--person {
    background: var(--background-color);
    justify-content: space-between;
    min-height: 240px;
}

.contacts-person-top {
    margin-bottom: 16px;
}

.contacts-person-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.contacts-person-role {
    font-size: 13px;
    color: var(--text-gray);
    margin: 0;
}

.contacts-person-bottom {
    margin-top: auto;
}

.contacts-person-phone {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.contacts-person-phone-note {
    font-size: 11px;
    color: var(--text-gray);
    margin-bottom: 6px;
}

.contacts-person-email {
    font-size: 13px;
    color: var(--text-dark);
    margin: 0;
}

/* Contacts responsive */
/* ==========================================
   PROJECTS PAGE
   ========================================== */
.projects-page-section {
    padding: 40px 0 80px;
    background: var(--white);
}

.projects-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.projects-header-left {
    flex: 0 0 auto;
}

/* projects-main-title — moved to shared page titles block */

/* projects-breadcrumbs — moved to shared breadcrumbs block */

.projects-header-right {
    flex: 0 1 400px;
    text-align: right;
}

.projects-header-desc {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.5;
    margin: 0;
}

.projects-page-center {
    text-align: center;
    margin-bottom: 40px;
}

.projects-big-title {
    font-size: 42px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--text-dark);
    margin: 0 0 16px;
    line-height: 1.15;
}

.projects-page-description {
    font-size: 16px;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Card */
.projects-card {
    background: var(--primary-blue-light);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    padding: 40px;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 397px;
}

.projects-card-top {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 10px;
}

.projects-card-icon {
    flex-shrink: 0;
}

.projects-card-desc {
    font-size: 15px;
    color: #fff;
    margin: 0;
    line-height: 1.4;
}

.projects-card-img-wrap {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    position: relative;
    height: 220px;
    flex-shrink: 0;
}

.projects-swiper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.45) 0%, transparent 100%);
    pointer-events: none;
    z-index: 5;
    border-radius: 0 0 12px 12px;
}

.projects-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.projects-swiper {
    position: relative;
    height: 100%;
}

.projects-swiper .swiper-wrapper {
    height: 100%;
}

.projects-swiper .swiper-slide {
    height: 100%;
}

.projects-swiper .swiper-slide img {
    height: 100%;
}

.projects-swiper .swiper-pagination,
.projects-swiper.swiper-horizontal > .swiper-pagination-bullets {
    position: absolute !important;
    bottom: 12px !important;
    right: 12px !important;
    left: auto !important;
    width: auto !important;
    display: flex !important;
    align-items: center;
    gap: 4px;
    z-index: 15 !important;
    top: auto !important;
}

.projects-swiper .swiper-pagination-bullet {
    width: 24px !important;
    height: 4px !important;
    border-radius: 2px !important;
    background: #fff !important;
    opacity: 0.6;
    transition: var(--transition-default);
    margin: 0 !important;
}

.projects-swiper .swiper-pagination-bullet-active {
    width: 32px !important;
    opacity: 1 !important;
    background: #fff !important;
}

.projects-card-title {
    font-size: 29px;
    font-weight: 700;
    color: #fff;
    margin-top: auto;
    padding-top: 12px;
    line-height: 1.2;
    flex-shrink: 0;
}

.projects-card-hidden {
    display: none;
}

.projects-show-all-btn {
    font-weight: 500;
    padding: 10px 32px;
}

/* Projects quote */
.projects-quote-section {
    background: var(--white);
    padding: 50px 0;
}

.projects-quote-inner {
    width: 100%;
}

.projects-quote-text {
    font-size: 48px;
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.3;
    margin: 0 0 32px;
}

.projects-quote-highlight {
    color: var(--text-gray);
    font-weight: 900;
}

.projects-quote-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.projects-quote-avatar {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    background: var(--button-blue-light);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.projects-quote-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.projects-quote-name {
    font-size: 20px;
    font-weight: 500;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.3;
}

.projects-quote-role {
    font-size: 13px;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.3;
}

.projects-quote-line {
    flex: 1;
    height: 1px;
    background: #e0e0e0;
}
/* ==========================================
   CERTIFICATES SLIDER
   ========================================== */
.certificates-section {
    padding: 50px 0;
    overflow: hidden;
}

.certificates-header {
    max-width: 1367px;
    margin: 0 auto;
    padding: 0 30px;
}

.certificates-title {
    font-size: 36px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.certificates-slider-wrap {
    padding-left: max(30px, calc((100vw - 1367px) / 2 + 30px));
    overflow: visible;
}

.certificates-swiper {
    overflow: visible;
}

.certificates-swiper .swiper-slide {
    width: 200px;
    flex-shrink: 0;
}

.certificates-card {
    display: block;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    border: 1px solid #eee;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.certificates-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.certificates-card img {
    width: 100%;
    height: auto;
    display: block;
}

.certificates-placeholder {
    background-color: #eee;
    height: 280px;
    width: 100%;
}

.certificates-controls {
    max-width: 1367px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    overflow: hidden;
}

.certificates-controls::before {
    content: '';
    flex: 1 1 0;
    min-width: 0;
    height: 1px;
    background: #ddd;
}

.certificates-prev,
.certificates-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-default);
    flex-shrink: 0;
}

.certificates-prev {
    background: var(--text-dark);
    color: var(--white);
}

.certificates-next {
    background: var(--primary-blue-light);
    color: var(--white);
}

.certificates-prev:hover {
    background: #333;
}

.certificates-next:hover {
    background: #7aadc8;
}
/* ==========================================
   TESTIMONIALS SLIDER
   ========================================== */
.testimonials-section {
    padding: 50px 0;
    overflow: hidden;
}

.testimonials-header {
    max-width: 1367px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    margin-bottom: 40px;
}

.testimonials-header-left {
    flex: 1;
}

.testimonials-big-title {
    font-size: 42px;
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.1;
    margin: 0;
}

.testimonials-header-right {
    flex: 0 1 400px;
}

.testimonials-desc {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.testimonials-slider-wrap {
    padding-left: max(30px, calc((100vw - 1367px) / 2 ));
    overflow: visible;
}

.testimonials-swiper {
    overflow: visible;
}

.testimonials-swiper .swiper-slide {
    flex-shrink: 0;
}

.testimonials-card {
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonials-quote-icon {
    display: block;
    margin-bottom: 16px;
}

.testimonials-card-text {
    font-family: var(--font-family-italic);
    font-style: italic;
    font-size: 20px;
    color: var(--text-dark);
    line-height: 1.7;
    margin: 0 0 20px;
    flex: 1;
}

.testimonials-card-author {
    margin-top: auto;
}

.testimonials-card-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 4px;
}

.testimonials-card-position {
    font-size: 13px;
    color: var(--text-gray);
    margin: 0;
}

.testimonials-controls {
    max-width: 1367px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
    overflow: hidden;
}

.testimonials-controls::before {
    content: '';
    flex: 1 1 0;
    min-width: 0;
    height: 1px;
    background: #ddd;
}

.testimonials-prev,
.testimonials-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-default);
    flex-shrink: 0;
}

.testimonials-prev {
    background: var(--text-dark);
    color: var(--white);
}

.testimonials-next {
    background: var(--primary-blue-light);
    color: var(--white);
}

.testimonials-prev:hover {
    background: #333;
}

.testimonials-next:hover {
    background: #7aadc8;
}
/* ==========================================
   FAQ PLUGIN (home page)
   ========================================== */
.faq-plugin-section {
    padding: 50px 0;
}

.faq-plugin-section .faq-question {
    background: var(--white);
    border: 1px solid var(--primary-blue-light);
}

.faq-plugin-section .faq-question-text {
    color: var(--text-dark);
}

.faq-plugin-section .faq-icon::before {
    border-right-color: var(--text-dark);
    border-bottom-color: var(--text-dark);
}

.faq-plugin-section .faq-answer-content {
    background: var(--primary-blue-light);
    color: var(--white);
    box-shadow: none;
}

.faq-plugin-section .faq-answer-content p {
    color: var(--white);
}

/* ==========================================
   FAQ PAGE
   ========================================== */
.faq-page-section {
    padding: 40px 0 80px;
    background: var(--white);
}

.faq-page-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 40px;
}

.faq-page-header-left {
    flex: 0 0 auto;
}

/* faq-page-main-title — moved to shared page titles block */

/* faq-breadcrumbs — moved to shared breadcrumbs block */

.faq-page-center {
    text-align: center;
    margin-bottom: 60px;
}

.faq-label-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: var(--white);
    border: 1px solid var(--primary-blue-light);
    border-radius: var(--border-radius-xl);
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-blue-light);
}

.faq-label-text .dot {
    width: 8px;
    height: 8px;
    background: var(--primary-blue-light);
    border-radius: 50%;
}

.faq-page-big-title {
    font-size: 72px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--text-dark);
    line-height: 1.1;
    margin: 20px 0;
}

.faq-page-description {
    font-size: 16px;
    color: var(--text-gray);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.5;
}

/* FAQ Columns */
.faq-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* FAQ Item - Accordion */
.faq-item {
    border-radius: var(--border-radius-md);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
    padding: 20px 25px;
    background: var(--primary-blue-light);
    border: none;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    text-align: left;
    transition: var(--transition-default);
}

/* Question keeps full border radius since answer is now separate */
.faq-question:not(.collapsed),
.faq-question[aria-expanded="true"] {
    border-radius: var(--border-radius-md);
}

.faq-question-text {
    font-size: 16px;
    /*font-weight: 600;*/
    color: var(--white);
    line-height: 1.4;
    flex: 1;
}

.faq-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    position: relative;
    margin-top: 2px;
    transition: transform 0.3s ease;
}

.faq-icon::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    left: 50%;
    top: 40%;
    transform: translate(-50%, -50%) rotate(45deg);
    transition: transform 0.3s ease;
}

.faq-question:not(.collapsed) .faq-icon::before,
.faq-question[aria-expanded="true"] .faq-icon::before {
    top: 55%;
    transform: translate(-50%, -50%) rotate(-135deg);
}

.faq-answer {
    overflow: hidden;
    margin-top: 10px;
}

.faq-answer-content {
    padding: 24px 30px;
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.7;
    background: var(--secondary-blue-light);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.faq-answer-content p {
    margin: 0 0 10px;
}

.faq-answer-content p:last-child {
    margin-bottom: 0;
}

/* FAQ Contact Form Section */
.faq-contact-section {
    margin-top: 60px;
}

.faq-contact-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-xl);
    padding: 40px;
}

.faq-contact-header {
    margin-bottom: 30px;
}

.faq-contact-title {
    font-size: 24px;
    font-weight: 400;
    color: var(--text-dark);
    margin: 0;
}

.faq-contact-title strong {
    font-weight: 700;
}

.faq-contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

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

.faq-form-group--full {
    grid-column: 1 / -1;
}

.faq-form-group label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
}

.faq-form-group input,
.faq-form-group textarea {
    padding: 14px 18px;
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-sm);
    font-size: 14px;
    font-family: var(--font-family), sans-serif;
    color: var(--text-dark);
    background: var(--white);
    transition: border-color 0.3s ease;
}

.faq-form-group input:focus,
.faq-form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue-light);
}

.faq-form-group input::placeholder,
.faq-form-group textarea::placeholder {
    color: #a0a0a0;
}

.faq-form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.faq-form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-top: 10px;
}

.faq-form-captcha {
    flex: 1;
}

.faq-submit-btn {
    min-width: 200px;
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 500;
}

.faq-success-screen {
    display: none;
    align-items: center;
    justify-content: center;
    background: var(--success-green-light);
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
}

.faq-success-screen h3 {
    font-family: var(--font-family);
    font-size: 18px;
    font-weight: 600;
    color: var(--success-green);
    margin: 0;
    text-align: center;
}

/* ==========================================
   PRICELIST PAGE
   ========================================== */
.pricelist-page-section {
    padding: 40px 0 80px;
    background: var(--white);
}

.pricelist-page-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 40px;
}

.pricelist-page-header-left {
    flex: 0 0 auto;
}

/* pricelist-page-main-title — moved to shared page titles block */

/* pricelist-breadcrumbs — moved to shared breadcrumbs block */

.pricelist-page-center {
    text-align: center;
    margin-bottom: 40px;
}

.pricelist-order-btn {
    display: inline-block;
    margin-bottom: 20px;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue-light);
    border-radius: var(--border-radius-pill);
    transition: var(--transition-default);
}

.pricelist-order-btn:hover {
    background: var(--primary-blue-light);
    border: 2px solid var(--primary-blue-light);
    color: var(--white);
}

.pricelist-order-btn:active,
.pricelist-order-btn.active,
.pricelist-order-btn:first-child:active {
    background: transparent;
    color: var(--primary-blue);
    border-color: var(--primary-blue-light);
}

/* pricelist-page-big-title — moved to shared big titles block */

.pricelist-page-description {
    font-size: 16px;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Toggle Switch Row */
.pricelist-toggle-row {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
}

.pricelist-toggle-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
}

.pricelist-toggle-switch {
    position: relative;
    width: 50px;
    height: 26px;
}

.pricelist-toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.pricelist-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    border-radius: 26px;
    transition: 0.3s;
}

.pricelist-toggle-slider::before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: var(--white);
    border-radius: 50%;
    transition: 0.3s;
}

.pricelist-toggle-switch input:checked + .pricelist-toggle-slider {
    background-color: var(--secondary-blue-light);
}

.pricelist-toggle-switch input:checked + .pricelist-toggle-slider::before {
    transform: translateX(24px);
    background-color: var(--primary-blue-light);
}

/* Accordion */
.pricelist-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 60px;
}

.pricelist-accordion-item {
    border-radius: var(--border-radius-md);
    overflow: hidden;
}

.pricelist-accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    padding: 20px 30px;
    background: var(--primary-blue-light);
    border: none;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    text-align: left;
    transition: var(--transition-default);
}

.pricelist-accordion-header:hover {
    background: #7db8d4;
}

.pricelist-accordion-header:not(.collapsed),
.pricelist-accordion-header[aria-expanded="true"] {
    border-radius: var(--border-radius-md);
    margin-bottom: 15px;
}

.pricelist-accordion-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.4;
    flex: 1;
    text-transform: uppercase;
}

.pricelist-accordion-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    position: relative;
    transition: transform 0.3s ease;
}

.pricelist-accordion-icon::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    left: 50%;
    top: 40%;
    transform: translate(-50%, -50%) rotate(45deg);
    transition: transform 0.3s ease;
}

.pricelist-accordion-header:not(.collapsed) .pricelist-accordion-icon::before,
.pricelist-accordion-header[aria-expanded="true"] .pricelist-accordion-icon::before {
    top: 55%;
    transform: translate(-50%, -50%) rotate(-135deg);
}

.pricelist-accordion-collapse {
    overflow: hidden;
}

.pricelist-accordion-body {
    padding: 0;
    background: transparent;
}

/* Pricelist Table */
.pricelist-table {
    width: 100%;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.pricelist-table th,
.pricelist-table td {
    padding: 15px 20px;
    text-align: left;
    border: none;
    border-bottom: 1px solid #e8f0f5;
}

.pricelist-table thead th {
    background: var(--secondary-blue-light);
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    border-bottom: none;
}

.pricelist-table thead th:first-child {
    border-top-left-radius: 16px;
}

.pricelist-table thead th:last-child {
    border-top-right-radius: 16px;
}

.pricelist-table tbody tr:last-child td {
    border-bottom: none;
}

.pricelist-table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 16px;
}

.pricelist-table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 16px;
}

.pricelist-table tbody tr:hover {
    background: rgba(142, 187, 215, 0.08);
}

.pricelist-table-header {
    white-space: nowrap;
}

.pricelist-table-price {
    text-align: center !important;
    font-weight: 600;
    color: var(--primary-blue-dark);
    white-space: nowrap;
}

.pricelist-table-group-row td {
    background: #d9edf7;
    font-weight: 700;
    color: var(--primary-blue-dark);
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #c5dde9;
}

.pricelist-table a {
    color: var(--primary-blue);
    text-decoration: none;
}

.pricelist-table a:hover {
    color: var(--primary-blue-dark);
    text-decoration: underline;
}

/* Order Section */
.pricelist-order-section {
    background: var(--secondary-blue-light);
    border-radius: var(--border-radius-xl);
    padding: 40px;
    margin-top: 40px;
}

.pricelist-order-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.pricelist-select {
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--border-light);
    padding: 12px 15px;
    font-size: 14px;
}

.pricelist-checkboxes {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.pricelist-checkboxes li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricelist-checkboxes label {
    font-size: 14px;
    color: var(--text-dark);
    cursor: pointer;
}

.pricelist-cost {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-blue-dark);
    margin-top: 10px;
}

.pricelist-order-subtitle {
    font-size: 18px;
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
}

.pricelist-order-table {
    width: 100%;
    background: var(--white);
    border-radius: var(--border-radius-md);
    overflow: hidden;
}

.pricelist-order-table td {
    padding: 15px 20px;
    vertical-align: middle;
    border-bottom: 1px solid var(--border-light);
}

.pricelist-order-table tr:last-child td {
    border-bottom: none;
}

.pricelist-order-item-amount {
    width: 80px;
}

.pricelist-order-item-amount input {
    width: 60px;
    text-align: center;
    border-radius: 8px;
    border: 1px solid var(--border-light);
    padding: 8px;
}

.pricelist-order-item-name {
    font-size: 14px;
    color: var(--text-dark);
}

.pricelist-order-item-price {
    text-align: right;
    white-space: nowrap;
}

.pricelist-order-item-price .cost-repr {
    font-weight: 600;
    color: var(--primary-blue-dark);
    margin-right: 15px;
}

.pricelist-order-item-price .delete-item {
    color: #e74c3c;
    font-size: 13px;
}

.pricelist-order-item-price .delete-item:hover {
    color: #c0392b;
}

.pricelist-order-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.pricelist-order-total {
    display: flex;
    align-items: center;
    gap: 15px;
}

.pricelist-total-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-blue-dark);
}

.pricelist-order-submit .btn {
    padding: 14px 40px;
    font-size: 16px;
}

.main-color {
    color: var(--primary-blue-dark);
}

/* ==========================================
   ORDER WIZARD PAGE
   ========================================== */
.order-page-section {
    padding: 40px 0 80px;
    background: var(--white);
}

.order-page-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.order-page-title {
    font-size: 36px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--text-dark);
    margin: 0;
}

/* order-breadcrumbs — moved to shared breadcrumbs block */

/* Steps Progress */
.order-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 50px;
}

.order-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    min-width: 120px;
}

.order-step-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--primary-blue-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-gray);
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.order-step.active .order-step-circle {
    background: var(--primary-blue-light);
    border-color: var(--primary-blue-light);
    color: var(--white);
}

.order-step.completed .order-step-circle {
    background: var(--success-green);
    border-color: var(--success-green);
    color: var(--white);
}

.order-step.completed .order-step-circle::before {
    content: '✓';
    font-size: 20px;
}

.order-step.completed .order-step-circle span {
    display: none;
}

.order-step-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-blue);
}

.order-step-subtitle {
    font-size: 12px;
    color: var(--text-gray);
}

.order-step.active .order-step-title {
    color: var(--text-dark);
}

.order-step.completed .order-step-title {
    color: var(--success-green) !important;
}

/*.order-step.completed .order-step-subtitle {*/
/*    color: var(--success-green);*/
/*}*/

.order-step-line {
    flex: 1;
    height: 2px;
    background: var(--border-light);
    margin: 0 10px;
    margin-bottom: 45px;
    min-width: 80px;
}

.order-step-line.completed {
    background: var(--success-green);
}

/* Step Content */
.order-step-content {
    margin-bottom: 40px;
}

.order-step-heading {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.order-step-description {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 30px;
}

/* Product Selection Cards */
.order-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.order-product-card {
    border: 1px solid var(--primary-blue-light);
    border-radius: var(--border-radius-lg);
    padding: 25px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-default);
    background: var(--white);
}

.order-product-card:hover {
    border-color: var(--primary-blue-light);
}

.order-product-card.selected {
    border-color: var(--primary-blue-light);
    background: rgba(142, 187, 215, 0.05);
}

.order-product-card input {
    display: none;
}

.order-product-logo {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.order-product-logo img {
    max-width: 100%;
    max-height: 100%;
}

.order-product-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.order-product-desc {
    font-size: 12px;
    color: var(--text-gray);
}

/* Configuration Select */
.order-form-group {
    margin-bottom: 25px;
}

.order-form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.order-form-label.required::after {
    content: '*';
    color: #e74c3c;
    margin-left: 4px;
}

.order-form-select {
    width: 100%;
    padding: 16px 50px 16px 20px;
    border: 1px solid var(--text-gray);
    border-radius: var(--border-radius-md);
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    background: var(--white);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%238EBBD7' d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    cursor: pointer;
    transition: var(--transition-default);
}

.order-form-select:hover {
    border-color: var(--primary-blue-light);
}

.order-form-select option {
    padding: 12px;
    font-size: 14px;
}

.order-form-input,
.order-form-textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid var(--text-gray);
    border-radius: var(--border-radius-md);
    font-size: 14px;
    color: var(--text-dark);
    background: var(--white);
    font-family: var(--font-family);
    transition: border-color 0.3s ease;
}

.order-form-input:hover,
.order-form-textarea:hover {
    border-color: var(--primary-blue-light);
}

.order-form-textarea {
    min-height: 120px;
    resize: vertical;
}

.order-form-textarea::placeholder {
    color: var(--text-gray);
    font-size: 13px;
}

/* ID Keys field visibility */
.if_bb,
#id_keys_group {
    display: none;
}

.if_bb.visible,
#id_keys_group.visible {
    display: block !important;
}

.order-form-input:focus,
.order-form-select:focus,
.order-form-textarea:focus {
    outline: none;
    border-color: var(--primary-blue-light);
}

/* Validation Errors */
.validation-error .order-form-select,
.validation-error .order-form-input,
.validation-error .order-form-textarea {
    border-color: #e74c3c;
    background-color: #fff5f5;
}

.validation-error .order-product-card-radio {
    border-color: #e74c3c;
}

.validation-error::before {
    content: '';
}

.order-form-group.validation-error .order-form-label::after {
    color: #e74c3c;
}

.validation-error-message {
    color: #e74c3c;
    font-size: 13px;
    margin-top: 5px;
    display: block;
}

/* Inline field error (order checkout form) */
.order-form-group .order-field-error {
    display: none;
    color: #c62828;
    font-size: 12px;
    margin-top: 4px;
}
.order-agreement-box .order-field-error,
#error-captcha.order-field-error {
    display: none;
    color: #c62828;
    font-size: 12px;
    margin-top: 8px;
}
.order-form-input.order-input-error,
.order-form-textarea.order-input-error {
    border-color: #c62828 !important;
    background-color: #fff5f5;
}

/* License List */

.order-licenses-list {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-md);
    padding: 0 20px;
    list-style: none;
    margin: 0;
    max-height: 520px;
    overflow-y: auto;
}

.order-licenses-list::-webkit-scrollbar {
    width: 6px;
}

.order-licenses-list::-webkit-scrollbar-track {
    background: transparent;
}

.order-licenses-list::-webkit-scrollbar-thumb {
    background: var(--primary-blue-light);
    border-radius: 3px;
}

.order-licenses-list {
    scrollbar-width: thin;
    scrollbar-color: var(--primary-blue-light) transparent;
}

.order-licenses-search {
    margin-bottom: 20px;
}

.order-licenses-search input {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-md);
    font-size: 14px;
    color: var(--text-gray);
    background: var(--white);
    outline: none;
    transition: border-color 0.2s ease;
}

.order-licenses-search input:focus {
    border-color: var(--primary-blue-light);
}

.order-licenses-search input::placeholder {
    color: var(--text-gray);
}

.order-license-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    margin: 0 -20px;
    border-bottom: 1px solid #e8f0f5;
    transition: background 0.2s ease;
}

.order-license-item:last-child {
    border-bottom: none;
}

.order-license-item:has(input:checked) {
    background: var(--secondary-background-color);
}

.order-license-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.order-license-checkbox input[type="checkbox"] {
    width: 22px;
    height: 22px;
    min-width: 22px;
    min-height: 22px;
    flex-shrink: 0;
    border: 1px solid var(--primary-blue-light);
    border-radius: 6px;
    appearance: none;
    cursor: pointer;
    position: relative;
}

.order-license-item :checked {
    background: var(--secondary-background-color);
}

.order-license-checkbox input[type="checkbox"]:checked {
    background: var(--primary-blue-light);
}

.order-license-checkbox input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    color: var(--white);
    font-size: 14px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.order-license-name {
    font-size: 14px;
    color: var(--text-dark);
}

.order-license-price {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-blue);
}

/* Cart Sidebar */
.order-cart {
    display: flex;
    flex-direction: column;
}

.order-cart-inner {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

/* Section: Header "Ваш заказ" */
.order-cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background: var(--primary-blue-light);
    color: var(--white);
}

.order-cart-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
}

.order-cart-badge {
    background: rgba(255,255,255,0.25);
    color: var(--white);
    padding: 4px 12px;
    border-radius: var(--border-radius-xl);
    font-size: 12px;
    font-weight: 600;
}

/* Generic section separator */
.order-cart-section {
    padding: 15px 25px;
    border-bottom: 1px solid var(--border-light);
}

.order-cart-section:last-child {
    border-bottom: none;
}

/* Section: Packages */
.order-cart-item {
    padding: 15px 0;
    border-bottom: 1px solid #e8f0f5;
}

.order-cart-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.order-cart-item:first-child {
    padding-top: 0;
}

.order-cart-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.order-cart-item-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.order-cart-item-actions {
    display: flex;
    gap: 6px;
    align-items: center;
}

.order-cart-item-action {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    color: #787878;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
}

.order-cart-item-action:hover {
    color: #787878;
}

.order-cart-item-delete:hover {
    color: #e74c3c;
    background: #FFE0E0;
}

.order-cart-item-action svg {
    flex-shrink: 0;
}

.order-cart-item-line {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: 5px;
    gap: 10px;
}

.order-cart-item-line > span:last-child,
.order-cart-item-total > span:last-child,
.order-cart-item-total > .cost-repr {
    white-space: nowrap;
    flex-shrink: 0;
}

.order-cart-item-total {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 10px;
    gap: 10px;
}

/* Section: Total */
.order-cart-total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.order-cart-total-label {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
}

.order-cart-total-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-blue);
    white-space: nowrap;
}

.order-cart-delivery {
    font-size: 12px;
    color: var(--success-green);
}

/* Section: Button */
.order-cart-btn {
    width: 100%;
    padding: 14px;
    background: var(--primary-blue-light);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius-md);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-default);
}

.order-cart-btn:hover {
    background: var(--primary-blue);
}

/* Section: Discount note */
.order-cart-note {
    font-size: 11px;
    color: var(--text-gray);
    line-height: 1.5;
    border-radius: 8px;
}

/* Agreement Box */
.order-agreement-box {
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-md);
    padding: 20px;
    margin-bottom: 30px;
}

/* Current Package Box */
.order-current-package {
    background: var(--secondary-blue-light);
    border-radius: var(--border-radius-lg);
    padding: 25px;
    margin-top: 30px;
}

.order-package-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.order-package-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.order-package-line {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    margin-bottom: 8px;
    gap: 10px;
}

.order-package-line span:last-child {
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}

.order-package-total {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 700;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(0,0,0,0.1);
    gap: 10px;
}

.order-package-total span:last-child {
    white-space: nowrap;
    flex-shrink: 0;
}

.order-quantity-control {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--text-dark);
    border-radius: var(--border-radius-sm);
    overflow: hidden;
}

.order-quantity-btn {
    width: 28px;
    height: 28px;
    border: none;
    border-radius: 0;
    background: var(--secondary-blue-light);
    color: var(--text-dark);
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.order-quantity-input {
    width: 36px;
    height: 28px;
    text-align: center;
    border: none;
    border-left: 1px solid var(--border-light);
    border-right: 1px solid var(--border-light);
    border-radius: 0;
    padding: 0;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 14px;
    background: var(--white);
}

.order-quantity-input::-webkit-outer-spin-button,
.order-quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.order-add-btn {
    width: 100%;
    padding: 14px;
    background: var(--primary-blue-light);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius-md);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 15px;
}

.order-add-btn:hover {
    background: #008f2b;
}

.order-add-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* Success State */
.order-success-main {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.order-success-box {
    background: var(--success-green-light);
    border: 2px solid var(--success-green);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    text-align: center;
    margin-bottom: 30px;
}

.order-success-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--success-green-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.order-success-icon::before {
    content: '✓';
    font-size: 30px;
    color: var(--success-green);
}

.order-success-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.order-success-text {
    font-size: 14px;
    color: var(--text-dark);
}

.order-success-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.order-success-btn {
    padding: 18px 20px;
    border-radius: var(--border-radius-md);
    border: none;
    cursor: pointer;
    text-align: center;
    transition: var(--transition-default);
}

.order-success-btn strong {
    display: block;
    font-size: 14px;
    margin-bottom: 4px;
}

.order-success-btn span {
    display: block;
    font-size: 12px;
    opacity: 0.7;
}

.order-success-btn-secondary {
    background: var(--white);
    border: 1px solid var(--border-light);
    color: var(--text-dark);
}

.order-success-btn-secondary:hover {
    background: #f5f8fa;
}

.order-success-btn-primary {
    background: var(--primary-blue-light);
    color: var(--white);
}

.order-success-btn-primary:hover {
    background: var(--primary-blue);
}

/* Validation Error */
.validation-error {
    border-color: #dc3545 !important;
}

.validation-error .order-form-select,
.validation-error .order-form-textarea {
    border-color: #dc3545 !important;
}

.order-form-group.validation-error .order-form-label {
    color: #dc3545;
}

/* Form Sections */
.order-form-section {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    margin-bottom: 25px;
}

.order-form-section-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.order-form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.order-form-row-3 {
    grid-template-columns: repeat(3, 1fr);
}

/* Info Boxes */
.order-info-box {
    background: #FFF8E6;
    border: 1px solid #F5E6C8;
    border-radius: var(--border-radius-md);
    padding: 15px 20px;
    font-size: 13px;
    color: #8B6914;
    margin-bottom: 20px;
}

.order-info-box.blue {
    background: var(--secondary-blue-light);
    border-color: var(--primary-blue-light);
    color: var(--primary-blue-dark);
}

/* Navigation Buttons */
.order-nav-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.order-nav-btn {
    padding: 14px 40px;
    border-radius: var(--border-radius-md);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-default);
}

.order-nav-btn-back {
    background: transparent;
    border: 1px solid var(--border-light);
    color: var(--text-dark);
}

.order-nav-btn-back:hover {
    border-color: var(--primary-blue-light);
}

.order-nav-btn-next {
    background: var(--primary-blue-light);
    border: none;
    color: var(--white);
}

.order-nav-btn-next:hover {
    background: var(--primary-blue);
}

.order-nav-btn-next:disabled {
    background: #b0c4d8;
    cursor: not-allowed;
}

/* Success Page */
.order-success {
    text-align: center;
    padding: 60px 20px;
}

/* Duplicate .order-success-icon removed — primary definition is above */

.order-success-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.order-success-text {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.order-success-btn {
    display: inline-block;
    padding: 14px 40px;
    background: var(--primary-blue-light);
    color: var(--white);
    border-radius: 15px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-default);
}

.order-success-btn:hover {
    background: var(--primary-blue-light);
    color: var(--white);
}

/* 404 Error Page */
.error-404-section {
    padding: 80px 0 0;
    position: relative;
    overflow: visible;
}

.error-404-code {
    font-size: 120px;
    font-weight: 800;
    color: var(--primary-blue-light);
    line-height: 1;
    margin-bottom: 10px;
}

.error-404-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.error-404-desc {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.error-404-btn {
    display: inline-block;
    padding: 14px 30px;
    background: var(--primary-blue-light);
    color: var(--white);
    border-radius: 15px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-default);
}

.error-404-btn:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.error-404-image {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-left: -60px;
}

.error-404-image svg {
    width: 160%;
    max-width: none;
    height: auto;
    margin-bottom: -250px;
    position: relative;
    z-index: 1;
}

/* Package Added Success Box */
.order-package-added {
    background: var(--success-green-light);
    border-radius: var(--border-radius-xl);
    padding: 50px;
    text-align: center;
    margin-bottom: 30px;
}

.order-package-added-icon {
    width: 60px;
    height: 60px;
    background: var(--success-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.order-package-added-icon::after {
    content: '✓';
    font-size: 30px;
    color: var(--white);
}

.order-package-added-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.order-package-added-text {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 25px;
}

.order-package-added-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.order-package-added-btn {
    padding: 14px 30px;
    border-radius: var(--border-radius-md);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-default);
}

.order-package-added-btn-secondary {
    background: var(--white);
    border: 1px solid var(--border-light);
    color: var(--text-dark);
}

.order-package-added-btn-primary {
    background: var(--primary-blue-light);
    border: none;
    color: var(--white);
}

/* ========================================
   ORDER WIZARD ADDITIONAL STYLES
   ======================================== */

/* Product Cards as Radio Buttons */
.order-product-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.order-product-card-radio {
    display: flex;
    align-items: center;
    padding: 18px 20px;
    border: 1px solid var(--text-gray);
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: var(--transition-default);
    background: var(--white);
    position: relative;
}

/*.order-product-card-radio:hover {*/
/*    border-color: var(--primary-blue-light);*/
/*}*/

.order-product-card-radio input[type="radio"] {
    display: none;
}

.order-product-card-radio input[type="radio"]:checked + .order-product-card-content + .order-product-card-check {
    background: var(--primary-blue-light);
    border-color: var(--primary-blue-light);
}

.order-product-card-radio input[type="radio"]:checked + .order-product-card-content + .order-product-card-check::after {
    opacity: 1;
}

.order-product-card-radio:has(input:checked) {
    border-color: var(--primary-blue-light);
    background: rgba(142, 187, 215, 0.05);
}

.order-product-card-content {
    flex: 1;
}

.order-product-card-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.order-product-card-desc {
    font-size: 12px;
    color: var(--text-gray);
}

.order-product-card-check {
    width: 22px;
    height: 22px;
    border: 2px solid var(--primary-blue-light);
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    transition: all 0.2s ease;
}

.order-product-card-check::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

/* Info Boxes */
/* .order-info-box base — defined above (line ~4463) */

.order-info-box-warning {
    background: #FFF3E0;
    color: #E65100;
}

.order-info-box-info {
    background: var(--secondary-blue-light);
    color: var(--primary-blue-dark);
}

/* Wizard Step Content */
.wizard-step-content {
    padding: 30px 0;
}

/* Calc Summary */
.order-calc-summary {
    background: #f8fafc;
    border-radius: var(--border-radius-lg);
    padding: 20px 25px;
    margin-top: 25px;
}

.order-calc-row {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.order-calc-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.order-calc-label {
    font-size: 14px;
    color: var(--text-gray);
}

.order-calc-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-blue);
}

.order-calc-input {
    width: 80px;
    padding: 10px 15px;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
}

.order-add-btn {
    margin-left: auto;
}

/* Cart Table in Wizard */
.order-cart-table {
    width: 100%;
    font-size: 13px;
}

.order-cart-table td {
    padding: 10px 0;
    border-bottom: 1px solid #e8f0f5;
    vertical-align: middle;
}

.order-cart-items {
    counter-reset: package-counter;
}

.order-cart-item {
    counter-increment: package-counter;
}

.order-cart-item-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-gray);
    margin-bottom: 6px;
}

.order-cart-item-label::before {
    content: "Пакет#" counter(package-counter);
}

.order-cart-item-subtitle {
    font-size: 12px;
    color: var(--text-gray);
    margin-bottom: 4px;
}

/* Product Card as Link */
.order-product-card {
    display: flex;
    align-items: center;
    padding: 20px;
    text-decoration: none;
    color: inherit;
}

.order-product-info {
    flex: 1;
    text-align: left;
    padding: 0 15px;
}

.order-product-price {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-top: 5px;
}

.order-product-price-label {
    color: var(--text-gray);
}

.order-product-price-value {
    font-weight: 600;
    color: var(--primary-blue);
}

.order-product-arrow {
    color: var(--primary-blue-light);
    flex-shrink: 0;
}

.order-product-logo-placeholder {
    width: 60px;
    height: 60px;
    background: var(--secondary-blue-light);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    color: var(--primary-blue-dark);
}

.order-no-products {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--text-gray);
    padding: 40px;
}

/* Product Tabs */
.order-product-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.order-product-tab {
    padding: 10px 20px;
    border: 2px solid var(--primary-blue-light);
    border-radius: var(--border-radius-pill);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-default);
}

.order-product-tab:hover {
    border-color: var(--primary-blue-light);
    color: var(--primary-blue);
}

.order-product-tab.active {
    background: var(--primary-blue-light);
    border-color: var(--primary-blue-light);
    color: var(--white);
}

/* License Groups */
.order-license-group {
    margin-bottom: 25px;
}

.order-license-group-header {
    background: var(--secondary-blue-light);
    padding: 12px 18px;
    border-radius: var(--border-radius-sm);
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-blue-dark);
    margin-bottom: 10px;
}

.order-license-prices {
    display: flex;
    gap: 25px;
}

.order-license-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    min-width: 100px;
}

.order-license-price-label {
    font-size: 11px;
    color: var(--text-gray);
}

.order-license-price-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-blue);
}

/* Workplace Section */
.order-workplace-section {
    background: #f8fafc;
    border-radius: var(--border-radius-lg);
    padding: 25px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.order-workplace-row {
    display: flex;
    gap: 40px;
}

.order-workplace-group {
    flex: 1;
}

.order-counter {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    background: var(--white);
    max-width: 150px;
}

.order-counter-btn {
    width: 45px;
    height: 45px;
    border: none;
    background: transparent;
    font-size: 20px;
    font-weight: 500;
    color: var(--primary-blue);
    cursor: pointer;
    transition: background 0.2s ease;
}

.order-counter-btn:hover {
    background: var(--secondary-blue-light);
}

.order-counter-input {
    width: 60px;
    height: 45px;
    border: none;
    border-left: 1px solid var(--border-light);
    border-right: 1px solid var(--border-light);
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    font-family: var(--font-family);
}

.order-counter-input:focus {
    outline: none;
}

.order-counter-input::-webkit-outer-spin-button,
.order-counter-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Add to Cart Button */
.order-add-to-cart-btn {
    width: 100%;
    padding: 16px 30px;
    background: var(--primary-blue-light);
    border: none;
    border-radius: var(--border-radius-md);
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition-default);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.order-add-to-cart-btn:hover {
    background: var(--primary-blue);
}

/* Cart Item Remove */
.order-cart-item-remove {
    background: transparent;
    border: none;
    font-size: 22px;
    color: var(--text-gray);
    cursor: pointer;
    padding: 0 5px;
    line-height: 1;
}

.order-cart-item-remove:hover {
    color: #e74c3c;
}

.order-cart-empty {
    color: var(--text-gray);
    font-size: 14px;
    text-align: center;
    padding: 30px 0;
}

/* Order Main Content */
.order-licenses-main {
    background: var(--white);
}

/* Order Wizard Responsive */
@media (max-width: 991px) {
    .order-steps {
        gap: 0;
        margin-bottom: 30px;
    }
    .order-step {
        min-width: 80px;
    }
    .order-step-circle {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }
    .order-step.completed .order-step-circle::before {
        font-size: 17px;
    }
    .order-step-title {
        font-size: 12px;
    }
    .order-step-subtitle {
        font-size: 10px;
    }
    .order-step-line {
        min-width: 40px;
        margin-bottom: 35px;
    }
}

@media (max-width: 768px) {
    .order-steps {
        margin-bottom: 25px;
    }
    .order-step:not(.active) {
        display: none;
    }
    .order-step-line {
        display: none;
    }
    .order-step.active {
        display: flex;
        width: 100%;
    }
    .order-step.active .order-step-circle {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
    .order-step.active .order-step-title {
        font-size: 14px;
    }
    .order-step.active .order-step-subtitle {
        font-size: 12px;
    }
}

/* ==========================================
   GEO SECTION
   ========================================== */
.geo-section {
    padding: 50px 0;
    background: var(--white);
}

.geo-top-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}

/* geo-main-title — moved to shared page titles block */

.geo-content-row {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
}

.geo-map-col {
    flex: 0 0 75%;
    max-width: 75%;
}

.geo-map-wrap {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

#newsin {
    width: 100%;
    height: 420px;
    padding: 0;
    margin: 0;
}

.geo-map-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--white);
    border-radius: var(--border-radius-md);
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    z-index: 10;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.geo-badge-number {
    font-size: 32px;
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.1;
}

.geo-badge-label {
    font-size: 13px;
    color: var(--text-gray);
}

.geo-info-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.geo-info-block {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.geo-info-title {
    font-size: 20px;
    font-weight: 500;
    color: var(--text-dark);
    margin: 0;
}

.geo-info-text {
    font-family: var(--font-family-italic), sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.5;
    margin: 0;
}

.geo-projects-btn {
    display: inline-block;
    padding: 12px 32px;
    background: var(--primary-blue-light);
    color: var(--white);
    border-radius: var(--border-radius-sm);
    font-size: 14px;
    text-decoration: none;
    text-align: center;
    align-self: flex-start;
}

.geo-projects-btn:hover {
    color: var(--white);
    text-decoration: none;
}

.geo-stats-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 0;
    border-top: 1px solid var(--secondary-blue-light);
}

.geo-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.geo-stat-number {
    font-size: 56px;
    font-weight: 900;
    font-style: var( --font-family);
    color: var(--text-dark);
    line-height: 1;
}

.geo-stat-label {
    font-size: 14px;
    color: var(--primary-blue-light);
    text-align: center;
}

/* ==========================================
   PARTNERS LOGOS
   ========================================== */
.partners-section {
    padding: 0;
    background: var(--white);
}

.partners-col {
    max-width: 1367px;
    margin: 0 auto;
    padding: 0 10px;
}

.partners-logos-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 0;
    gap: 20px;
    flex-wrap: wrap;
}

.partners-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.partners-logo-item img {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s;
}

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

.partners-logo-item {
    cursor: pointer;
}

/* Partner Modal */
.partner-modal-content {
    border: none;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.partner-modal-header {
    border-bottom: none;
    padding: 20px 24px;
}

.partner-modal-header .modal-title {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 20px;
    color: var(--dark);
}

.partner-modal-body {
    padding: 24px;
}

.partner-modal-logo {
    text-align: center;
    margin-bottom: 20px;
}

.partner-modal-logo img {
    max-height: 80px;
    width: auto;
    object-fit: contain;
}

.partner-modal-desc {
    font-family: var(--font-family);
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-gray);
    text-align: center;
}

.partner-modal-desc a {
    display: inline-block;
    padding: 10px 32px;
    background: var(--primary-blue-light);
    color: var(--white);
    border-radius: var(--border-radius-sm);
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    margin-top: 16px;
    transition: background 0.2s;
}

.partner-modal-desc a:hover {
    background: var(--primary-blue);
    color: var(--white);
    text-decoration: none;
}

/* ==========================================
   FEEDBACK MODAL
   ========================================== */
#feedbackModal .modal-dialog {
    max-width: 1197px;
    width: 100%;
}

.feedback-modal-content {
    border: none;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    background: var(--white);
    min-height: 732px;
}

.feedback-modal-header {
    border-bottom: none;
    padding: 40px 50px 0;
    align-items: center;
}

.feedback-modal-header > div {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.feedback-modal-subtitle {
    font-family: var(--font-family);
    font-size: 16px;
    color: var(--text-gray);
    white-space: nowrap;
}

.feedback-modal-title {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 24px;
    color: var(--text-dark);
    margin: 0;
    white-space: nowrap;
}

.feedback-modal-body {
    padding: 24px 50px 40px;
}

.feedback-form-group {
    margin-bottom: 20px;
    flex: 1;
}

.feedback-form-group label {
    display: block;
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.feedback-form-group input,
.feedback-form-group textarea {
    width: 100%;
    background: var(--white);
    border: 1px solid var(--primary-blue-light);
    border-radius: 8px;
    padding: 14px 16px;
    font-family: var(--font-family);
    font-size: 15px;
    color: var(--text-dark);
    outline: none;
    transition: border-color 0.2s;
}

.feedback-form-group input:focus,
.feedback-form-group textarea:focus {
    border-color: var(--primary-blue);
}

.feedback-form-group input::placeholder,
.feedback-form-group textarea::placeholder {
    color: #bbb;
}

.feedback-form-row {
    display: flex;
    gap: 20px;
}

.feedback-form-bottom {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 12px;
}

.btn-feedback-submit {
    flex: 1;
    padding: 16px 30px;
    background: var(--primary-blue-light);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius-sm);
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-feedback-submit:hover {
    background: var(--primary-blue);
}

.feedback-form-message {
    margin-top: 12px;
    padding: 10px 14px;
    border-radius: 8px;
    font-family: var(--font-family);
    font-size: 14px;
}

.feedback-form-success {
    background: #e8f5e9;
    color: var(--success-green);
}

.feedback-success-screen {
    display: none;
    align-items: center;
    justify-content: center;
    background: var(--success-green-light);
    border-radius: var(--border-radius-lg);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 30px 60px;
    z-index: 10;
}

.feedback-success-screen h3 {
    font-family: var(--font-family);
    font-size: 18px;
    font-weight: 600;
    color: var(--success-green);
    margin: 0;
    text-align: center;
}

.feedback-form-error {
    background: #fce4ec;
    color: #c62828;
}

.feedback-field-error {
    display: none;
    color: #c62828;
    font-size: 12px;
    margin-top: 4px;
    font-family: var(--font-family);
}

.feedback-input-error {
    border-color: #c62828 !important;
}

@media (max-width: 1240px) {
    #feedbackModal .modal-dialog {
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .feedback-modal-header {
        padding: 20px 20px 0;
    }
    .feedback-modal-header > div {
        flex-direction: column;
        gap: 2px;
    }
    .feedback-modal-body {
        padding: 16px 20px 24px;
    }
    .feedback-modal-content {
        min-height: auto;
    }
    .feedback-modal-title {
        font-size: 20px;
    }
    .feedback-modal-subtitle {
        font-size: 13px;
    }
    .feedback-form-group {
        margin-bottom: 14px;
    }
    .feedback-form-group label {
        font-size: 12px;
        margin-bottom: 5px;
    }
    .feedback-form-group input,
    .feedback-form-group textarea {
        padding: 10px 12px;
        font-size: 13px;
    }
    .feedback-form-row {
        gap: 14px;
    }
    .btn-feedback-submit {
        padding: 12px 20px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    #feedbackModal .modal-dialog {
        max-width: 100%;
        margin: 10px;
    }
    .feedback-modal-header {
        padding: 16px 16px 0;
    }
    .feedback-modal-body {
        padding: 12px 16px 20px;
    }
    .feedback-modal-title {
        font-size: 18px;
    }
    .feedback-modal-subtitle {
        font-size: 12px;
    }
    .feedback-form-group label {
        font-size: 11px;
    }
    .feedback-form-group input,
    .feedback-form-group textarea {
        padding: 8px 10px;
        font-size: 12px;
    }
    .feedback-form-row {
        flex-direction: column;
        gap: 0;
    }
    .feedback-form-bottom {
        flex-direction: column;
        gap: 12px;
    }
    .btn-feedback-submit {
        padding: 10px 16px;
        font-size: 13px;
        width: 100%;
    }
}

/* ==========================================
   DOWNLOAD PAGE (/control-system/download/)
   ========================================== */
.download-page-section {
    padding: 50px 0;
    background: var(--white);
}

.download-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

/* download-main-title base — moved to shared page titles block */
.download-main-title {
    font-family: var(--font-family);
}

/*a.btn.btn-cabinet {*/
/*    display: inline-block;*/
/*    padding: 12px 24px;*/
/*    background: var(--background-color);*/
/*    color: var(--text-dark);*/
/*    border-radius: var(--border-radius-sm);*/
/*    font-family: var(--font-family);*/
/*    font-weight: 700;*/
/*    font-size: 14px;*/
/*    text-decoration: none;*/
/*    border: none;*/
/*    white-space: nowrap;*/
/*}*/

a.btn.btn-cabinet:hover,
a.btn.btn-cabinet:focus,
a.btn.btn-cabinet:active,
a.btn.btn-cabinet:focus-visible {
    background: var(--button-blue-light);
    color: var(--secondary-blue-dark);
    text-decoration: none;
    outline: none;
    box-shadow: none;
}

/* download-breadcrumbs base — moved to shared breadcrumbs block */
.download-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-family);
}

.download-group {
    border: 1px solid var(--text-dark);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    margin-bottom: 20px;
}

.download-group-title {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 36px;
    color: var(--primary-blue-light);
    text-transform: uppercase;
    margin: 0 0 20px;
}

.download-card {
    background: var(--primary-blue-light);
    border-radius: var(--border-radius-md);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 160px;
    height: 100%;
}

.download-card-title {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 16px;
    color: var(--white);
    line-height: 1.4;
    margin: 0 0 16px;
}

.download-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 8px 16px;
    background: var(--secondary-blue-light);
    color: var(--dark);
    border-radius: 8px;
    font-family: var(--font-family);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    border: none;
    cursor: pointer;
    align-self: flex-start;
}

.download-card-btn:hover,
.download-card-btn:focus,
.download-card-btn:active,
.download-card-btn:focus-visible {
    background: var(--secondary-blue-light);
    color: var(--dark);
    text-decoration: none;
    outline: none;
    box-shadow: none;
}

.download-card-btn svg {
    flex-shrink: 0;
}

/* ==========================================
   CABINET PAGE
   ========================================== */
.cabinet-page-section {
    padding: 50px 0;
    background: var(--white);
}

.cabinet-greeting {
    margin-bottom: 20px;
}

.cabinet-greeting p {
    font-family: var(--font-family);
    font-size: 16px;
    color: var(--dark);
    line-height: 1.5;
    margin: 0;
}

.cabinet-greeting strong {
    font-size: 18px;
    font-weight: 700;
}

.cabinet-info-row {
    margin-bottom: 30px;
}

.cabinet-info-card {
    border-radius: var(--border-radius-md);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-height: 80px;
}

.cabinet-info-label {
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 400;
}

.cabinet-info-value {
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 700;
}

.cabinet-info-email {
    background: var(--primary-blue-light);
    color: var(--white);
}

.cabinet-info-date {
    background: var(--success-green-light);
    border: 1px solid var(--success-green);
    color: var(--dark);
}

.cabinet-message {
    margin-bottom: 20px;
    font-family: var(--font-family);
    font-size: 14px;
    color: var(--dark);
}

.cabinet-login-prompt {
    text-align: center;
    padding: 60px 20px;
}

.cabinet-login-prompt p {
    font-family: var(--font-family);
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 20px;
}

.cabinet-login-box {
    max-width: 480px;
    background: var(--white);
    border: 1px solid var(--text-dark);
    border-radius: var(--border-radius-lg);
    padding: 40px;
}

.cabinet-login-title {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 24px;
    color: var(--dark);
    margin: 0 0 24px;
}

.cabinet-login-error {
    background: #fdecea;
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 20px;
}

.cabinet-login-error p {
    font-family: var(--font-family);
    font-size: 14px;
    color: #c62828;
    margin: 0;
}

.cabinet-login-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    background: var(--primary-blue-light);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-family: var(--font-family);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    align-self: flex-start;
    transition: opacity 0.2s;
}

.cabinet-login-btn:hover {
    opacity: 0.9;
}

/* ==========================================
   FEEDBACK BANNER
   ========================================== */
.feedback-banner-section {
    padding: 50px 0;
}

.feedback-banner {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    padding: 60px 50px;
    min-height: 573px;
    display: flex;
    align-items: center;
    background: #2c2c2c;
}

.feedback-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.feedback-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.05);
    z-index: 1;
}

.feedback-banner-content {
    position: relative;
    z-index: 2;
}

.feedback-banner-title {
    font-family: var(--font-family);
    font-weight: 900;
    font-size: 42px;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 12px;
}

.feedback-banner-subtitle {
    font-family: var(--font-family);
    font-size: 16px;
    color: var(--white);
    opacity: 0.8;
    margin-bottom: 24px;
}

.btn-feedback {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-blue-light);
    color: var(--white);
    border-radius: var(--border-radius-sm);
    font-family: var(--font-family);
    font-size: 14px;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.btn-feedback:hover,
.btn-feedback:focus,
.btn-feedback:active,
.btn-feedback:focus-visible {
    background: var(--primary-blue-light) !important;
    color: var(--white) !important;
    text-decoration: none !important;
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
    border-radius: 10px !important;
}

/* ==========================================
   SOLUTIONS PAGE (/control-system/)
   ========================================== */
.solutions-page-section {
    padding: 50px 0;
    background: var(--white);
}

.solutions-page-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.solutions-page-header-left {
    flex: 0 0 50%;
    max-width: 50%;
}

.solutions-page-main-title {
    font-family: var(--font-family);
    font-size: 48px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--text-dark);
    margin: 0 0 10px;
    line-height: 1.1;
}

.solutions-page-header-right {
    max-width: 250px;
    text-align: left;
}

.solutions-page-subtitle {
    font-family: var(--font-family);
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-gray);
    margin: 0;
}

.solutions-page-center {
    text-align: center;
    margin-bottom: 40px;
}

.solutions-page-big-title {
    font-family: var(--font-family);
    font-weight: 800;
    font-size: 42px;
    line-height: 1.1;
    color: var(--dark);
    margin: 0 0 16px;
}

.solutions-page-description {
    font-family: var(--font-family);
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-gray);
    margin: 0 auto;
    max-width: 500px;
}

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

.solution-card {
    position: relative;
    display: block;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    aspect-ratio: 1 / 1;
    text-decoration: none;
    color: var(--white);
}

.solution-card:hover {
    text-decoration: none;
    color: var(--white);
}

.solution-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.solution-card-arrow {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: var(--primary-blue-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    z-index: 1;
}

.solution-card-arrow svg {
    width: 16px;
    height: 14px;
}

.solution-card-name {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-family);
    font-weight: 800;
    font-size: 32px;
    color: var(--white);
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/* ==========================================
   HISTORY TIMELINE SLIDER
   ========================================== */
.history-section {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
}

.history-timeline {
    display: flex;
    justify-content: space-evenly;
    position: absolute;
    top: 0;
    left: 40px;
    right: 40px;
    z-index: 10;
    padding: 15px 0 0;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.history-timeline::-webkit-scrollbar {
    display: none;
}

.history-timeline-line {
    display: none;
}

.history-timeline-item {
    position: relative;
    z-index: 1;
    background: none;
    border: none;
    /*padding: 0 10px;*/
    cursor: pointer;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: var(--transition-default);
    flex: 1;
}

.history-timeline-item::before {
    content: '';
    display: block;
    width: 80%;
    height: 4px;
    border-radius: 2px;
    background: var(--white);
    transition: var(--transition-default);
}

.history-timeline-item.active::before {
    background: var(--primary-blue-light);
}

.history-timeline-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    white-space: nowrap;
    transition: color 0.3s ease;
}

.history-timeline-item.active .history-timeline-label {
    color: var(--white);
}

.history-timeline-item:hover .history-timeline-label {
    color: var(--white);
}

.history-timeline-item:hover::before {
    background: rgba(255, 255, 255, 0.6);
}

.history-slider-wrap {
    position: relative;
}

.history-slide {
    position: relative;
    width: 100%;
    height: 550px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.history-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.15) 25%,
        rgba(0, 0, 0, 0.05) 45%,
        rgba(0, 0, 0, 0.6) 100%
    );
    pointer-events: none;
}

.history-slide-content {
    position: absolute;
    bottom: 40px;
    right: 40px;
    max-width: 450px;
    text-align: right;
    z-index: 2;
}

.history-slide-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.history-slide-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin: 0;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.history-nav {
    position: absolute;
    bottom: 40px;
    left: 40px;
    display: flex;
    gap: 6px;
    z-index: 10;
}

.history-prev,
.history-next {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-default);
    backdrop-filter: blur(4px);
}

.history-prev:hover,
.history-next:hover {
    background: rgba(255, 255, 255, 0.4);
}

/* ==========================================
   PRODUCTS SLIDER
   ========================================== */
.products-section {
    padding: 50px 0;
}

.products-header {
    text-align: center;
    margin-bottom: 20px;
}

.products-big-title {
    font-family: var(--font-family);
    font-weight: 800;
    font-size: 42px;
    line-height: 1.1;
    color: var(--dark);
    margin: 0 0 16px;
}

.products-desc {
    font-family: var(--font-family);
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-gray);
    margin: 0 auto;
    max-width: 500px;
}

.products-nav-row {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 24px;
}

.products-nav-row::before {
    content: '';
    flex: 1 1 0;
    min-width: 0;
    height: 1px;
    background: var(--secondary-blue-light);
    order: 1;
}

.products-prev {
    order: 0;
}

.products-next {
    order: 2;
}

.products-prev,
.products-next {
    background: none;
    border: none;
    font-family: var(--font-family);
    font-size: 14px;
    color: var(--dark);
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
    display: inline-block !important;
}

.products-prev:hover,
.products-next:hover {
    color: var(--primary-blue-light);
}

.products-slider-wrap {
    overflow: hidden;
}

.products-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--button-blue-light);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    padding: 10px;
    text-decoration: none;
    color: var(--dark);
}

.products-card:hover {
    text-decoration: none;
    color: var(--dark);
}

.products-card-img {
    position: relative;
    height: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--button-blue-light);
    border-radius: var(--border-radius-md);
    margin: 12px;
}

.products-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.products-card-arrow {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: var(--button-blue-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.products-card-name {
    position: absolute;
    bottom: 16px;
    left: 16px;
    font-family: var(--font-family);
    font-weight: 800;
    font-size: 28px;
    color: var(--white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.products-card-body {
    padding: 16px;
}

.products-card-text {
    font-family: var(--font-family);
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-gray);
    margin: 0;
}

.products-footer {
    text-align: center;
    margin-top: 32px;
}

.products-all-btn {
    display: inline-block;
    padding: 12px 32px;
    background-color: var(--primary-blue-light);
    color: var(--white);
    border-radius: var(--border-radius-sm);
    font-size: 14px;
    text-decoration: none;
}

.products-all-btn:hover {
    color: var(--white);
    text-decoration: none;
}

.products-swiper:not(.swiper-initialized) .swiper-wrapper {
    overflow: hidden;
    flex-wrap: nowrap;
}

.products-swiper:not(.swiper-initialized) .swiper-slide {
    flex-shrink: 0;
    width: 30%;
}

/* ==========================================
   RADIAL PLUGIN
   ========================================== */

.radial-block {
    background-color: var(--background-color);
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
    /*margin: 30px 0;*/
}

.radial-content {
    position: relative;
    display: flex;
    align-items: stretch;
}

.radial-lines {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
    overflow: visible;
}

.radial-list {
    flex: 1;
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}

.radial-list-item {
    padding: 10px 16px 10px 30px;
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.4;
    position: relative;
}

.radial-list-item::before {
    content: "\00B7";
    color: var(--text-dark);
    font-weight: 700;
    font-size: 20px;
    position: absolute;
    left: 12px;
    top: 8px;
}

.radial-center {
    width: 80px;
    min-width: 80px;
    background-color: var(--button-blue-light);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 120px;
    z-index: 2;
}

.radial-center-text {
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    font-size: 20px;
    font-weight: 900;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: nowrap;
}

/* Radial responsive — handled in main media queries below */

/* ==========================================
   PRODUCT PAGE
   ========================================== */

.product-header {
    padding: 50px 0;
}

.product-header-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
}

.product-header-title {
    font-size: 42px;
    font-family: var(--font-family);
    font-weight: 900;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.15;
    text-transform: uppercase;
    flex-shrink: 0;
}

.product-header-title strong {
    color: var(--primary-blue-light);
    font-weight: 900;
}

.product-header-desc {
    max-width: 300px;
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.5;
    margin: 0;
    text-align: left;
}

/* product-breadcrumbs base — moved to shared breadcrumbs block */
.product-breadcrumbs {
    margin-bottom: 30px;
}

.product-header-photo {
    margin-bottom: 30px;
}

.product-header-photo img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: var(--border-radius-md);
}

/*.product-body {*/
/*    padding: 50px 0;*/
/*}*/

.product-main {
    padding-right: 30px;
}

.product-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

@media (min-height: 700px) {
    .product-sidebar {
        position: sticky;
        top: 70px;
    }
}

.product-sidebar-nav {
    border: 1px solid #e8e8e8;
    border-radius: var(--border-radius-md);
    padding: 24px;
}

.product-sidebar-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 16px;
}

.product-sidebar-nav a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
}

.product-sidebar-nav a:last-child {
    border-bottom: none;
}

.product-sidebar-nav a:hover {
    color: var(--primary-blue-light);
}

/* Other Products Sidebar Block */
.other-products-block {
    background: var(--background-color);
    border-radius: var(--border-radius-md);
    padding: 24px;
}

.other-products-title {
    font-size: 18px;
    font-family: var(--font-family);
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 16px;
}

.other-products-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-top: 1px solid #e0e0e0;
    text-decoration: none;
    color: var(--text-dark);
}

.other-products-item:last-child {
    padding-bottom: 0;
}

.other-products-name {
    font-size: 14px;
    font-family: var(--font-family);
    font-weight: 500;
    text-transform: uppercase;
    color: var(--text-dark);
}

.other-products-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-blue-light);
    color: var(--white);
    flex-shrink: 0;
}

.other-products-arrow svg {
    width: 14px;
    height: 14px;
}

.other-products-item:hover .other-products-arrow {
    background: var(--primary-blue-dark);
}

.product-modules-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 20px;
}

.product-modules {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-main h2 {
    font-size: 56px;
    font-weight: 900;
    color: var(--text-dark);
    text-transform: uppercase;
    margin: 0 0 20px;
    line-height: 1.3;
}

.product-main p {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.7;
    /*margin: 0 0 20px;*/
}

.product-main strong {
    color: var(--primary-blue-light);
    font-weight: 700;
}

.product-main a {
    color: var(--primary-blue-light);
    text-decoration: none;
}

.product-main a:hover {
    text-decoration: underline;
}

/* ==========================================
   CAPABILITIES (Список возможностей)
   ========================================== */

.capabilities-block {
    padding: 50px 0;
}

.capabilities-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    margin: 0 0 20px;
}

.capabilities-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.capabilities-item {
    background-color: var(--background-color);
    border-radius: var(--border-radius-xl);
    border-left: 4px solid var(--button-blue-light);
    padding: 14px 20px;
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.4;
}

/* ==========================================
   MEDIA QUERIES
   ========================================== */

@media (max-width: 1200px) {
    .control-text {
        font-size: 42px;
    }

    .servio-logo-combined {
        height: 70px;
    }

    .header .nav-link {
        font-size: 12px !important;
        padding: 8px 10px !important;
    }

    .header-buttons .btn {
        padding: 8px 15px;
        font-size: 11px;
    }

    /* Radial */
    .radial-center {
        margin: 0 80px;
    }
    .radial-center-text {
        font-size: 20px;
    }

    /* Product Page */
    .product-header-title {
        font-size: 36px;
    }
    .product-main h2 {
        font-size: 42px;
    }
}

@media (max-width: 991px) {
    /* Breadcrumbs */
    .news-breadcrumbs,
    .news-item-breadcrumbs,
    .support-breadcrumbs,
    .contacts-breadcrumbs,
    .projects-breadcrumbs,
    .faq-breadcrumbs,
    .pricelist-breadcrumbs,
    .download-breadcrumbs,
    .product-breadcrumbs,
    .order-breadcrumbs,
    .order-breadcrumb-nav {
        margin-bottom: 20px;
    }

    .feedback-banner-section {
        padding: 15px 0;
    }

    .projects-quote-section {
        padding: 20px 0;
    }

    .mt-5 {
        margin-top: 0.5rem !important;
    }

    .geo-section {
        padding: 15px 0;
    }

    .support-page-section {
        padding: 20px 0;
    }

    .news-filter {
        gap: 8px;
        margin-bottom: 25px;
    }

    .news-filter-tag {
        padding: 7px 14px;
        font-size: 12px;
    }

    .news-card-title {
        font-size: 18px;
    }

    .news-card-featured .news-card-title {
        font-size: 20px;
    }

    .news-card--compact .news-card-title {
        font-size: 17px;
    }

    .news-tag,
    .news-tag-more {
        padding: 4px 10px;
        font-size: 11px;
    }

    /* Logo */
    .servio-logo-combined {
        height: 55px;
    }

    .servio-tagline {
        font-size: 14px;
    }

    .control-text {
        font-size: 30px;
    }

    .header .navbar-brand img {
        height: 30px;
    }

    .header .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        z-index: 1000;
        padding: 20px;
    }

    .navbar-nav-wrapper {
        flex-direction: column;
        align-items: stretch;
    }

    .nav-links-row {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        width: 100%;
    }

    .nav-links-row .col-6 {
        width: 50%;
        flex: 0 0 50%;
        padding: 0;
    }

    .header .nav-link {
        padding: 10px 5px !important;
        font-size: 14px;
    }

    .nav-buttons-mobile {
        display: flex !important;
        width: 100%;
        gap: 15px;
        padding-top: 15px;
        margin-top: 10px;
        border-top: 1px solid #eee;
    }

    .nav-buttons-mobile .btn {
        flex: 1;
        text-align: center;
        border-radius: var(--border-radius-xl);
    }

    .nav-buttons-mobile .header-order-dropdown {
        flex: 1;
    }

    .nav-buttons-mobile .header-order-dropdown .btn {
        width: 100%;
    }

    .footer-main-row {
        flex-wrap: wrap;
        gap: 30px;
    }

    .footer-col-links,
    .footer-col-contacts {
        flex: 0 0 calc(50% - 15px);
    }

    .footer-col-buttons {
        flex: 0 0 100%;
        justify-content: flex-start;
        margin-top: 10px;
    }

    .footer-buttons-wrap {
        flex-direction: row;
        width: 100%;
    }

    /* Hero Slider */
    .hero-slide {
        height: 597px;
    }

    .hero-slide-text {
        font-size: 32px;
        bottom: 125px;
        left: 25px;
    }

    /* Slider */
    .slider-container {
        min-height: 450px;
    }

    .slidertoptext {
        font-size: 20px;
    }

    .slidertext,
    .projects-main-title,
    .testimonials-big-title,
    .geo-main-title,
    .product-header-title {
        font-size: 32px;
    }

    .slider-nav {
        left: 15px;
        bottom: 80px;
    }

    .slider-cut {
        width: 220px;
        height: 100px;
        padding-left: 30px;
        padding-top: 15px;
    }

    .slider-cut .btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .main-slider-wrap .slick-dots {
        right: 250px;
    }

    .news-page-title,
    .faq-page-main-title,
    .pricelist-page-main-title,
    .news-page-main-title,
    .solutions-page-main-title,
    .support-main-title,
    .contacts-main-title,
    .download-main-title,
    .product-main h2 {
        font-size: 36px;
    }

    /* News */

    .news-detail-grid {
        grid-template-columns: 1fr;
    }

    .news-detail-gallery {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .news-detail-image {
        width: calc(50% - 8px);
    }

    .news-item-header {
        flex-direction: column;
        gap: 10px;
    }

    .news-item-title {
        font-size: 24px;
    }

    .news-item-date {
        padding-top: 0;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .faq-page-big-title,
    .pricelist-page-big-title,
    .news-page-big-title {
        font-size: 48px;
    }

    .faq-columns {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .faq-column {
        gap: 15px;
    }

    /* Pricelist */
    .pricelist-page-header-row {
        flex-direction: column;
        gap: 20px;
    }

    .pricelist-checkboxes {
        grid-template-columns: 1fr;
    }

    .pricelist-order-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    .pricelist-order-total {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .pricelist-order-submit {
        text-align: center;
    }

    .pricelist-order-submit .btn {
        width: 100%;
    }
    .support .row {
        font-size: 10px;
    }
    .header .navbar-toggler {
        display: flex;
    }
    .news-page-header-row {
        flex-direction: column;
        gap: 20px;
    }

    .news-page-header-right {
        flex: none;
        text-align: left;
    }

    /* Solutions Page */
    .solutions-page-header-row {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 20px;
    }

    .solutions-page-header-left {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .solutions-page-header-right {
        max-width: 100%;
        text-align: left;
    }

    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .solution-card-name {
        font-size: 26px;
    }

    .solution-card-arrow {
        width: 36px;
        height: 36px;
    }

    .solution-card-arrow svg {
        width: 14px;
        height: 12px;
    }

    .support-card-phone,
    .support-card-email,
    .support-card-label,
    .support-card-title,
    .support-doc-title,
    .support-doc-btn,
    .contacts-card-title,
    .contacts-card-text,
    .contacts-card-phone,
    .contacts-card-email,
    .contacts-person-name,
    .contacts-person-role,
    .contacts-person-phone,
    .contacts-person-email,
    .contacts-info-card-title,
    .contacts-info-card-email,
    .contacts-info-card-note {
        font-size: 10px;
    }

    .support .row > [class*="col"] {
        margin-bottom: 12px;
    }

    .contacts-info-card-hours {
        font-size: 14px;
    }

    .contacts-info-card {
        padding: 16px 20px;
        min-width: auto;
    }

    .row > [class*="col-md-3"] {
        margin-bottom: 12px;
    }
    .projects-big-title,
    .contacts-big-title,
    .projects-quote-text,
    .certificates-title,
    .geo-badge-number {
        font-size: 28px;
    }

    .projects-header-row {
        flex-direction: column;
        gap: 16px;
    }

    .projects-header-right {
        flex: 0 0 auto;
        text-align: left;
    }

    .projects-quote-avatar {
        width: 40px;
        height: 40px;
    }

    .projects-quote-avatar svg {
        width: 24px;
        height: 24px;
    }

    .projects-quote-name {
        font-size: 14px;
    }

    .projects-quote-role {
        font-size: 12px;
    }
    .certificates-swiper .swiper-slide {
        width: 170px;
    }
    .testimonials-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .testimonials-header-right {
        flex: none;
    }

    .testimonials-card-text {
        font-size: 18px;
    }

    /* Geo */
    .geo-top-row {
        flex-direction: column;
        gap: 16px;
    }

    .geo-content-row {
        flex-direction: column;
    }

    .geo-map-col {
        flex: none;
        max-width: 100%;
    }

    #newsin {
        height: 350px;
    }

    .geo-stat-number {
        font-size: 40px;
    }

    /* Order Wizard — шаг 2 и шаг 3 в столбик */
    #wizard-step-2 > .row,
    .order-page-section .row {
        flex-direction: column;
    }

    #wizard-step-2 > .row > .col-md-8,
    #wizard-step-2 > .row > .col-md-4,
    .order-page-section .row > .col-md-8,
    .order-page-section .row > .col-md-4 {
        width: 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .order-cart {
        order: -1;
        margin-bottom: 20px;
    }

    .order-products-grid {
        grid-template-columns: 1fr;
    }

    .order-workplace-row {
        flex-direction: column;
        gap: 20px;
    }

    .hero-slider-pagination {
        display: none;
    }

    /* Feedback Banner */
    .feedback-banner {
        padding: 50px 40px;
        min-height: 280px;
    }
    .feedback-banner-title {
        font-size: 34px;
    }
    /* Download Page */
    .download-group {
        padding: 20px;
    }

    /* Radial */
    .radial-center {
        margin: 0 60px;
    }
    .radial-center-text {
        font-size: 18px;
    }
    .radial-block {
        padding: 30px 20px;
    }
    .radial-list-item {
        padding: 8px 12px 8px 26px;
        font-size: 13px;
    }
    .radial-list-item::before {
        left: 8px;
    }

    /* Product Page */
    .product-header-top {
        flex-direction: column;
        gap: 16px;
    }
    .product-sidebar {
        position: static;
    }
    .product-main {
        padding-right: 0;
    }
    .product-body {
        padding: 30px 0;
    }
    .other-products-block {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    main {
        margin-bottom: 2rem;
    }

    /* History */
    .history-slide {
        height: 400px;
    }

    .history-slide-content {
        bottom: 30px;
        right: 25px;
        left: 25px;
        max-width: none;
        text-align: left;
    }

    .history-slide-title,
    .news-item-title,
    .news-contact-text,
    .pricelist-order-title,
    .projects-card-title {
        font-size: 20px;
    }

    .history-slide-desc {
        font-size: 13px;
    }

    .history-timeline {
        justify-content: center;
        left: 25px;
        right: 25px;
        padding: 12px 0 0;
    }

    .history-timeline-label {
        font-size: 10px;
    }

    .history-nav {
        bottom: auto;
        top: 50px;
        right: auto;
        left: 25px;
    }

    .history-prev,
    .history-next {
        width: 30px;
        height: 30px;
    }

    .history-prev svg,
    .history-next svg {
        width: 16px;
        height: 16px;
    }

    .history-section {
        border-radius: var(--border-radius-xl);
    }

    /* Products */
    .products-big-title {
        font-size: 32px;
    }

    /* Logo */
    .logo-section {
        padding: 30px 15px 20px;
    }

    .logo-top-row {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .logo-top-row {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .servio-logo-combined {
        height: 45px;
    }

    .servio-tagline {
        font-size: 13px;
        text-align: center;
    }

    .control-text {
        font-size: 22px;
        text-align: center;
    }

    /* Hero Slider */
    .hero-slide {
        height: 410px;
    }

    .slider-section .card-part.card-top {
        min-height: 410px;
        border-bottom-left-radius: 30px;
    }

    .slider-section .card-part.card-top::after {
        width: 210px;
        height: 90px;
        clip-path: path('M 75 30 L 180 30 A 30 30 0 0 0 210 0 L 210 90 L 0 90 A 30 30 0 0 0 30 60 L 30 75 A 45 45 0 0 1 75 30 Z');
    }

    .hero-slider-controls {
        top: 30px;
        left: 30px;
        right: 30px;
    }

    .hero-slider-prev,
    .hero-slider-next {
        width: 28px;
        height: 28px;
    }

    .hero-slide-text {
        font-size: 24px;
        bottom: 80px;
        left: 15px;
    }

    /* Mobile Slider */
    .hero-mobile-swiper-wrap {
        border-radius: var(--border-radius-xl);
    }

    .slider-section-mobile .hero-slide-text {
        bottom: 30px;
        left: 15px;
    }

    .hero-mobile-controls {
        top: 20px;
        left: 15px;
        right: 15px;
    }

    .hero-mobile-prev,
    .hero-mobile-next {
        width: 28px;
        height: 28px;
    }

    /* Slider */
    .slider-container {
        min-height: 400px;
    }

    .slider_text_div {
        padding-bottom: 80px;
    }

    .slidertoptext {
        font-size: 16px;
    }

    .slidertext {
        font-size: 26px;
    }

    .slider-nav {
        left: 15px;
        bottom: 60px;
    }

    .slider-prev,
    .slider-next {
        width: 35px;
        height: 35px;
    }

    .slider-cut {
        width: 180px;
        height: 80px;
        padding-left: 25px;
        padding-top: 10px;
        border-radius: 60px 0 0 0;
    }

    .slider-cut .btn {
        padding: 8px 18px;
        font-size: 13px;
    }

    .main-slider-wrap .slick-dots {
        right: 200px;
        bottom: 30px;
    }

    /* News */
    .news-page-grid {
        grid-template-columns: 1fr;
    }

    .news-page-title,
    .solutions-page-main-title {
        font-size: 28px;
    }

    .news-card--compact .news-card-top {
        flex-direction: column;
        gap: 10px;
    }

    .news-card--compact .news-card-date {
        order: -1;
    }

    .news-detail-content {
        padding: 25px;
    }

    .news-detail-title,
    .projects-quote-text,
    .certificates-title,
    .pricelist-cost {
        font-size: 24px;
    }

    .news-detail-image {
        width: 100%;
    }

    .news-item-section {
        padding: 30px 0 60px;
    }

    .news-item-sidebar {
        margin-top: 30px;
    }

    .news-item-pagination {
        justify-content: space-between;
        gap: 10px;
    }

    .news-pagination-btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    /* FAQ Plugin - horizontal padding on small screens */
    .faq-plugin-section {
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Solutions Page */
    .solutions-page-section {
        padding: 30px 0 0;
    }

    .solution-card-name,
    .card-slide .slidertext,
    .geo-badge-number {
        font-size: 22px;
    }

    .solution-card-arrow {
        width: 32px;
        height: 32px;
        top: 12px;
        right: 12px;
    }

    .solution-card-arrow svg {
        width: 12px;
        height: 10px;
    }

    /* Footer - Mobile: all centered, stacked */
    .footer-main-row {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-col-links,
    .footer-col-contacts,
    .footer-col-buttons {
        width: 100%;
    }

    .footer-col-buttons {
        justify-content: center;
    }

    .footer-links-grid {
        justify-content: center;
    }

    .footer-contact-list p {
        justify-content: center;
    }

    .footer-buttons-wrap {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-bottom-row {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .footer-line {
        display: none;
    }

    .btn-footer {
        width: auto;
        min-width: 150px;
        padding: 10px 20px;
        font-size: 13px;
    }

    .marquee-text {
        font-size: 50px;
        letter-spacing: 10px;
        padding-right: 50px;
    }

    /* Card */
    .card-top {
        min-height: 350px;
        padding: 15px;
        border-radius: 30px;
    }

    .card-image {
        border-radius: 15px;
    }

    .card-bottom {
        border-radius: 30px;
        width: calc(100% - 180px);
        height: 60px;
    }

    .card-wrap,
    .card-corner-white {
        width: 45px;
        height: 60px;
        border-top-left-radius: 45px;
    }

    .card-button-wrapper {
        width: 140px;
        height: 60px;
        padding-left: 10px;
    }

    .card-button-wrapper .btn {
        width: 140px;
        height: 45px;
        font-size: 14px;
        border-radius: var(--border-radius-sm);
    }

    .card-slide {
        height: 350px;
    }

    .card-top .main-slider {
        border-radius: 30px;
    }

    .card-slide .slider_text_div {
        bottom: 100px;
        left: 15px;
        right: 15px;
    }

    .card-slide .slidertoptext {
        font-size: 14px;
    }

    .slider-controls {
        bottom: 15px;
        left: 15px;
        right: 180px;
    }

        .faq-page-section {
        padding: 30px 0 60px;
    }

    .faq-page-header-row {
        margin-bottom: 30px;
    }

    .news-page-main-title,
    .support-main-title,
    .contacts-main-title,
    .projects-main-title,
    .faq-page-main-title,
    .pricelist-page-main-title {
        font-size: 25px;
    }

    .faq-page-big-title,
    .pricelist-page-big-title,
    .news-page-big-title,
    .solutions-page-big-title,
    .geo-stat-number {
        font-size: 36px;
    }

    .faq-page-center {
        margin-bottom: 40px;
    }

    .faq-contact-card {
        padding: 25px;
    }

    .faq-form-row {
        grid-template-columns: 1fr;
    }

    .faq-form-footer {
        flex-direction: column;
    }

    .faq-submit-btn {
        width: 100%;
    }

    /* Pricelist */
    .pricelist-page-section {
        padding: 30px 0 60px;
    }

    .pricelist-page-header-row {
        margin-bottom: 30px;
    }

    .pricelist-page-center {
        margin-bottom: 30px;
    }

    .pricelist-toggle-row {
        justify-content: center;
    }

    .pricelist-accordion-header {
        padding: 15px 20px;
    }

    .pricelist-accordion-title {
        font-size: 16px;
    }

    .pricelist-accordion-body {
        padding: 15px;
    }

    .pricelist-table {
        table-layout: fixed;
        word-wrap: break-word;
    }

    .pricelist-table th,
    .pricelist-table td {
        padding: 8px 6px;
        font-size: 11px;
    }

    .pricelist-table-header {
        white-space: normal;
    }

    .pricelist-table thead th {
        font-size: 10px;
    }

    .pricelist-table-price {
        font-size: 11px;
    }

    .pricelist-order-section {
        padding: 25px;
    }

    .pricelist-total-price,
    .contacts-big-title,
    .testimonials-big-title,
    .geo-main-title {
        font-size: 26px;
    }

    .news-page-section {
        padding: 30px 0 60px;
    }

    .news-page-header-row {
        margin-bottom: 40px;
        padding-bottom: 20px;
    }

    .news-page-center {
        margin-bottom: 40px;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .news-pagination {
        justify-content: flex-end;
    }
    .support-page-section {
        padding: 15px 0;
    }

    .support-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .support-breadcrumbs {
        margin-bottom: 30px;
    }
    .contacts-header-row {
        flex-direction: column;
        gap: 16px;
    }

    .contacts-header-desc {
        text-align: left;
        max-width: 100%;
    }

    .contacts-hero-row {
        flex-direction: column;
        gap: 24px;
    }

    .contacts-info-card {
        min-width: auto;
    }

    .contacts-breadcrumbs {
        margin-bottom: 30px;
    }
    .projects-quote-section {
        padding: 32px 0;
    }

    .projects-quote-avatar {
        width: 36px;
        height: 36px;
    }

    .projects-quote-avatar svg {
        width: 20px;
        height: 20px;
    }

    .projects-quote-name {
        font-size: 13px;
    }

    .projects-quote-role {
        font-size: 11px;
    }
    .certificates-slider-wrap {
        padding-left: 30px;
        overflow: hidden;
    }

    .certificates-swiper {
        overflow: hidden;
    }

    .certificates-swiper .swiper-slide {
        width: 150px;
    }
    .testimonials-slider-wrap {
        padding-left: 30px;
        overflow: hidden;
    }

    .testimonials-swiper {
        overflow: hidden;
    }

    .testimonials-card {
        padding: 24px;
    }

    .testimonials-card-text {
        font-size: 16px;
    }

    /* Partners */
    .partners-logos-row {
        justify-content: center;
    }

    .partners-logo-item img {
        max-height: 45px;
    }

    /* Geo */
    #newsin {
        height: 300px;
    }

    .geo-stats-row {
        flex-wrap: wrap;
        gap: 24px;
    }

    .geo-stat-item {
        flex: 0 0 calc(50% - 12px);
    }

    .geo-map-badge {
        padding: 12px 16px;
    }

    .geo-badge-label {
        font-size: 11px;
    }

    /* Order Wizard */
    .order-product-tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 10px;
    }

    .order-product-tab {
        white-space: nowrap;
    }

    .order-license-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .order-license-prices {
        width: 100%;
        justify-content: flex-start;
    }

    .order-product-cards {
        grid-template-columns: 1fr;
    }

    .order-calc-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .order-add-btn {
        width: 100%;
        margin-left: 0;
    }

    /* Partner Modal */
    .partner-modal-content .modal-dialog {
        margin: 16px;
    }
    .partner-modal-header {
        padding: 16px 20px;
    }
    .partner-modal-header .modal-title {
        font-size: 18px;
    }
    .partner-modal-body {
        padding: 20px;
    }
    .partner-modal-logo img {
        max-height: 60px;
    }
    .partner-modal-desc {
        font-size: 14px;
    }

    /* Feedback Banner */
    .feedback-banner {
        padding: 40px 30px;
        min-height: 240px;
    }
    .feedback-banner-title {
        font-size: 28px;
    }
    .feedback-banner-subtitle {
        font-size: 14px;
    }

    /* Download Page */
    .download-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .download-main-title {
        font-size: 32px;
    }
    .download-group {
        padding: 16px;
    }
    .download-group-title {
        font-size: 18px;
    }

    /* Radial */
    .radial-lines {
        display: none;
    }
    .radial-content {
        flex-direction: column;
        align-items: center;
    }
    .radial-center {
        width: 100%;
        min-width: unset;
        height: 50px;
        margin: 0 0 20px;
        order: -1;
    }
    .radial-center-text {
        writing-mode: horizontal-tb;
        transform: none;
        font-size: 18px;
    }
    .radial-block {
        padding: 25px 15px;
    }
    .radial-list {
        width: 100%;
    }
    .radial-list-item {
        border-bottom: 1px solid #ddd;
        padding: 10px 12px 10px 26px;
        font-size: 13px;
    }
    .radial-list-item::before {
        left: 8px;
    }

    /* Product Page */
    .product-header-title {
        font-size: 24px;
    }
    .product-main h2 {
        font-size: 28px;
    }
    .product-header {
        padding: 24px 0 0;
    }
    .product-modules-title {
        font-size: 20px;
    }
    .product-sidebar-nav {
        padding: 18px;
    }

    /* 404 */
    .error-404-section {
        padding: 50px 0 0;
    }

    .error-404-section .row {
        flex-direction: column-reverse;
        text-align: center;
    }

    .error-404-code {
        font-size: 80px;
    }

    .error-404-title {
        font-size: 22px;
    }

    .error-404-image svg {
        width: 100%;
        margin-bottom: -100px;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    main {
        margin-bottom: 1rem;
    }

    .main-col,
    .partners-col {
        padding: 0 15px;
    }

    /* History */
    .history-slide {
        height: 300px;
    }

    .history-slide-content {
        bottom: 20px;
        right: 15px;
        left: 15px;
    }

    .history-slide-title,
    .download-group-title,
    .control-text,
    .radial-center-text,
    .projects-card-title {
        font-size: 16px;
    }

    .history-slide-desc {
        font-size: 11px;
    }

    .history-timeline {
        left: 15px;
        right: 15px;
        padding: 10px 0 0;
    }

    .history-timeline-item {
        display: none;
    }

    .history-timeline-item.active {
        display: flex;
    }

    .history-timeline-label {
        font-size: 13px;
    }

    .history-nav {
        left: 15px;
        right: auto;
        top: 30px;
    }

    .history-prev,
    .history-next {
        width: 26px;
        height: 26px;
    }

    .history-prev svg,
    .history-next svg {
        width: 14px;
        height: 14px;
    }

    .history-section {
        border-radius: 15px;
    }

    .hero-slide-text {
        font-size: 14px;
    }

    /* Partner Modal */
    .partner-modal-header {
        padding: 12px 16px;
    }
    .partner-modal-header .modal-title {
        font-size: 16px;
    }
    .partner-modal-body {
        padding: 16px;
    }
    .partner-modal-logo img {
        max-height: 50px;
    }
    .partner-modal-desc {
        font-size: 13px;
    }
    .partner-modal-desc a {
        padding: 8px 24px;
        font-size: 13px;
    }

    /* Feedback Banner */
    .feedback-banner {
        padding: 30px 20px;
        min-height: 200px;
    }
    .feedback-banner-subtitle {
        font-size: 13px;
        margin-bottom: 16px;
    }
    /* Download Page */
    .download-page-section {
        padding: 30px 0 50px;
    }
    .download-main-title,
    .products-big-title {
        font-size: 26px;
    }
    .btn-cabinet {
        padding: 10px 18px;
        font-size: 12px;
    }
    .download-group {
        padding: 12px;
        margin-bottom: 16px;
    }
    .download-group-title {
        margin-bottom: 16px;
    }
    .download-card {
        min-height: 140px;
        padding: 16px;
    }
    .download-card-title {
        font-size: 13px;
    }

    .products-section {
        padding: 40px 0;
    }

    .products-card-img {
        height: 160px;
    }

    .logo-section {
        padding: 20px 15px 15px;
    }

    .logo-left .servio-logo-svg {
        width: 160px;
    }

    .servio-logo-combined {
        height: 35px;
    }

    .servio-tagline {
        font-size: 11px;
    }

    .header-logo img {
        height: 28px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 12px;
    }

    /* Hero Slider */
    .hero-slide {
        height: 260px;
    }

    .slider-section .card-part.card-top {
        min-height: 260px;
    }

    .hero-slider-controls {
        top: 20px;
        left: 20px;
        right: 20px;
    }

    .hero-slider-arrows {
        padding: 4px;
        border-radius: 8px;
    }

    .hero-slider-prev,
    .hero-slider-next {
        width: 24px;
        height: 24px;
    }

    .hero-slider-prev svg,
    .hero-slider-next svg {
        width: 14px;
        height: 14px;
    }

    .hero-slider-pagination .swiper-pagination-bullet {
        width: 16px;
        height: 3px;
    }

    .hero-slider-pagination .swiper-pagination-bullet-active {
        width: 22px;
    }

    .hero-slide-text {
        font-size: 16px;
        bottom: 75px;
        left: 10px;
    }

    /* Mobile Slider */
    .hero-mobile-swiper-wrap {
        border-radius: 15px;
    }

    .slider-section-mobile .hero-slide-text {
        bottom: 25px;
        left: 10px;
        font-size: 14px;
    }

    .hero-mobile-controls {
        top: 15px;
        left: 10px;
        right: 10px;
    }

    .hero-mobile-prev,
    .hero-mobile-next {
        width: 24px;
        height: 24px;
    }

    .hero-mobile-prev svg,
    .hero-mobile-next svg {
        width: 14px;
        height: 14px;
    }

    .hero-mobile-pagination .swiper-pagination-bullet {
        width: 16px;
        height: 3px;
    }

    .hero-mobile-pagination .swiper-pagination-bullet-active {
        width: 22px;
    }

    /* Slider */
    .slider-container {
        min-height: 350px;
    }

    .slidertoptext {
        font-size: 14px;
    }

    .slidertext,
    .products-card-name,
    .projects-big-title,
    .testimonials-big-title,
    .geo-main-title,
    .product-main h2 {
        font-size: 22px;
    }

    .slider-cut {
        width: 140px;
        height: 60px;
        padding-left: 15px;
        padding-top: 8px;
        border-radius: 40px 0 0 0;
    }

    .slider-cut .btn {
        padding: 6px 14px;
        font-size: 12px;
    }

    .main-slider-wrap .slick-dots {
        display: none !important;
    }

    .slider-nav {
        display: none;
    }

    .news-page-main-title,
    .support-main-title,
    .contacts-main-title,
    .projects-main-title,
    .pricelist-page-main-title,
    .contacts-big-title,
    .projects-quote-text,
    .certificates-title,
    .product-header-title,
    .feedback-banner-title,
    .pricelist-cost {
        font-size: 20px;
    }

    .faq-page-main-title,
    .solutions-page-main-title,
    .testimonials-card-text,
    .news-item-title {
        font-size: 15px;
    }

    .faq-page-big-title,
    .solutions-page-big-title,
    .pricelist-page-big-title,
    .news-page-big-title {
        font-size: 25px;
    }

    .faq-question {
        padding: 15px 20px;
    }

    .faq-question-text {
        font-size: 14px;
    }

    .faq-answer {
        margin-top: 8px;
    }

    .faq-answer-content {
        padding: 18px 20px;
        font-size: 13px;
    }

    /* Solutions Page */
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .solution-card-name {
        font-size: 15px;
        bottom: 12px;
    }

    .solution-card-arrow {
        width: 28px;
        height: 28px;
        top: 10px;
        right: 10px;
    }

    .solution-card-arrow svg {
        width: 10px;
        height: 8px;
    }

    .solutions-page-center {
        margin-bottom: 25px;
    }

    /* Pricelist */
    .pricelist-order-btn {
        padding: 10px 20px;
        font-size: 12px;
    }

    .pricelist-accordion-header {
        padding: 12px 15px;
    }

    .pricelist-accordion-title {
        font-size: 14px;
    }

    .pricelist-accordion-body {
        padding: 10px;
    }

    .pricelist-table th,
    .pricelist-table td {
        padding: 6px 4px;
        font-size: 10px;
    }

    .pricelist-table thead th {
        font-size: 9px;
    }

    .pricelist-order-section {
        padding: 20px 15px;
    }

    .pricelist-order-title,
    .product-modules-title,
    .geo-badge-number {
        font-size: 18px;
    }

    .pricelist-total-price {
        font-size: 22px;
    }
    .news-pagination-arrow,
    .news-pagination-num {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }
    .support-card {
        padding: 20px;
    }

    .contacts-card {
        padding: 20px;
    }

    .contacts-info-card {
        padding: 20px;
    }
    .projects-card {
        min-height: 300px;
    }

    .projects-quote-avatar {
        width: 32px;
        height: 32px;
    }

    .projects-quote-avatar svg {
        width: 18px;
        height: 18px;
    }

    .projects-quote-name {
        font-size: 12px;
    }

    .projects-quote-role {
        font-size: 10px;
    }
    .certificates-swiper .swiper-slide {
        width: 140px;
    }

    .certificates-prev,
    .certificates-next {
        width: 34px;
        height: 34px;
    }
    .testimonials-card {
        padding: 20px;
    }

    .testimonials-prev,
    .testimonials-next {
        width: 34px;
        height: 34px;
    }

    /* Partners */
    .partners-logo-item img {
        max-height: 35px;
    }

    /* Geo */
    #newsin {
        height: 250px;
    }

    .geo-stat-number {
        font-size: 30px;
    }

    .geo-map-badge {
        padding: 10px 12px;
        border-radius: 8px;
    }

    .geo-projects-btn {
        width: 100%;
    }

    /* Radial */
    .radial-center {
        height: 45px;
        margin: 0 0 15px;
    }
    .radial-center-text {
        letter-spacing: 1px;
    }
    .radial-block {
        padding: 20px 12px;
        margin: 20px 0;
    }
    .radial-list-item {
        padding: 8px 10px 8px 24px;
        font-size: 12px;
    }
    .radial-list-item::before {
        left: 6px;
        top: 6px;
        font-size: 18px;
    }

    /* Product Page */
    .product-header {
        padding: 16px 0 0;
    }
    .product-breadcrumbs {
        font-size: 12px;
    }
    .product-body {
        padding: 20px 0;
    }
    /* News Item */
    .news-item-content {
        font-size: 12px;
    }

    .sidebar-news-title {
        font-size: 13px;
    }

    .sidebar-news-card {
        padding: 0;
    }

    .news-item-pagination {
        justify-content: space-between;
    }

    .news-breadcrumbs,
    .news-item-breadcrumbs,
    .support-breadcrumbs,
    .contacts-breadcrumbs,
    .projects-breadcrumbs,
    .faq-breadcrumbs,
    .pricelist-breadcrumbs,
    .download-breadcrumbs,
    .product-breadcrumbs,
    .order-breadcrumbs,
    .order-breadcrumb-nav,
    .breadcrumb-current {
        font-size: 11px;
    }
}

/* ===================== */
/* Support Order Form    */
/* ===================== */
.order-breadcrumb {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding-top: 30px;
}

.order-page-title {
    font-size: 28px;
    font-weight: 700;
    font-family: var(--font-family);
    color: var(--text-dark);
}

/* order-breadcrumb-nav — moved to shared breadcrumbs block */

.order-subtitle {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.order-section {
    border: 2px solid #ddd;
    border-radius: var(--border-radius-lg);
    padding: 24px;
}

.order-section-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.order-field {
    margin-bottom: 14px;
}

.order-field label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.order-field label .req {
    color: #c62828;
    margin-left: 2px;
}

.order-field input,
.order-field textarea {
    width: 100%;
    border: 2px solid #ddd;
    border-radius: var(--border-radius-sm);
    padding: 10px 14px;
    font-size: 14px;
    font-family: var(--font-family);
    color: var(--text-dark);
    background: var(--white);
    outline: none;
    transition: border-color 0.2s;
}

.order-field input:focus,
.order-field textarea:focus {
    border-color: var(--primary-blue-light);
}

.order-field input:-webkit-autofill,
.order-field input:-webkit-autofill:hover,
.order-field input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 1000px var(--white) inset;
    -webkit-text-fill-color: var(--text-dark);
    border: 2px solid #ddd;
}

.order-field .order-input-error {
    border-color: #c62828 !important;
}

.order-field input::placeholder,
.order-field textarea::placeholder {
    color: #bbb;
}

.order-field-error {
    display: block;
    color: #c62828;
    font-size: 12px;
    margin-top: 4px;
}

.order-egrul-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #FFF8E1;
    border-radius: var(--border-radius-sm);
    padding: 12px 16px;
    font-size: 12px;
    color: #8D6E00;
    margin-top: 4px;
}

.order-egrul-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #FFD54F;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

/* Products section */
.order-products-header {
    margin-bottom: 8px;
}

.order-products-sublabel {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 13px;
    color: var(--text-dark);
}

.order-products-sublabel .req {
    color: #c62828;
}

#keysInputWrapper textarea,
#support-order-form .order-section textarea {
    width: 100%;
    border: 2px solid #ddd;
    border-radius: var(--border-radius-sm);
    padding: 10px 14px;
    font-size: 14px;
    font-family: var(--font-family);
    color: var(--text-dark);
    background: var(--white);
    outline: none;
    resize: vertical;
}

#keysInputWrapper textarea:focus {
    border-color: var(--primary-blue-light);
}

.order-all-keys-box {
    background: var(--secondary-blue-light);
    border-radius: var(--border-radius-sm);
    padding: 30px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    min-height: 100px;
}

/* Checkbox */
.order-checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 13px;
    color: var(--text-dark);
    position: relative;
    user-select: none;
}

.order-checkbox-label input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #ccc;
    border-radius: 4px;
    background: var(--white);
    cursor: pointer;
    flex-shrink: 0;
    position: relative;
}

.order-checkbox-label input[type="checkbox"]:checked {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
}

.order-checkbox-label input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 1px;
    width: 6px;
    height: 10px;
    border: solid var(--white);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.order-checkmark {
    display: none;
}

/* Bottom section */
.order-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    margin-bottom: 60px;
    gap: 20px;
    flex-wrap: wrap;
}

.order-bottom-left {
    flex: 1;
    border: 2px solid #ddd;
    border-radius: var(--border-radius-lg);
    padding: 16px 20px;
}

.order-consent-label {
    font-size: 12px;
    color: var(--text-gray);
}

.order-consent-label a {
    color: var(--primary-blue-light);
    text-decoration: underline;
}

.order-bottom-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.order-submit-btn {
    background: var(--primary-blue-light);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius-pill);
    padding: 12px 40px;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-family);
    cursor: pointer;
    transition: background 0.2s;
}

.order-submit-btn:hover {
    background: var(--primary-blue);
    color: var(--white);
}

/* Order form responsive */
@media (max-width: 991px) {
    .order-breadcrumb {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    #support-order-form > .row > .col-lg-6 {
        margin-bottom: 16px;
    }

    #support-order-form > .row > .col-lg-6:last-child {
        margin-bottom: 0;
    }

    .order-page-header {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 10px;
    }

    .order-step-heading {
        font-size: 20px;
    }

    .order-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .order-bottom-right {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 576px) {
    .order-page-title {
        font-size: 20px;
    }

    .order-section {
        padding: 16px;
    }

    .order-products-sublabel {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }

    .order-bottom-right {
        flex-direction: column;
    }
}

/* Order confirmation page */
.order-confirm-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    min-height: 400px;
}

.order-confirm-icon {
    margin-bottom: 24px;
}

.order-confirm-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.order-confirm-text {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.order-confirm-btn {
    background: var(--primary-blue);
    color: var(--white);
    border-radius: var(--border-radius-pill);
    padding: 12px 32px;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-family);
    text-decoration: none;
    transition: background 0.2s;
}

.order-confirm-btn:hover {
    background: var(--primary-blue-dark);
    color: var(--white);
}
