.b24-form-sign {
	visibility:hidden!important;
}

.b24-form-field {
	text-align:left!important;
}


@import url('https://fonts.googleapis.com/css2?family=Commissioner:wght@100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');


/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Commissioner', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 300;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

body.has-top-strip {
    padding-top: 0;
}

body.menu-open {
    overflow: hidden;
}

/* Main content wrapper */
main {
    flex: 1;
}

.hero,
.services-hero,
.services-overview,
.solutions,
section {
    flex-shrink: 0;
}

/* Container */
.container {
    max-width: 1335px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.4rem);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
}

p {
    margin-bottom: 1rem;
    color: #666;
}

a {
    text-decoration: none;
    color: #004a8f;
}

td {
    padding: 5px 10px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    border: none;
    border-radius: 25px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f0f0f0;
    color: #333;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(0);
}

.btn--primary {
    /* background: linear-gradient(135deg, #008aff, #004a8f); */
    background: #005fae;
    color: white;
}

.btn--primary:hover {
    box-shadow: 12px 12px 24px #2f3a4b9e, -12px -12px 24px #0060b140;
}

.btn--secondary {
    background: #f0f0f0;
    color: #0060b1;
    border: 1px solid rgba(0, 96, 177, 0.2);
}

.btn--outline {
    background: #f0f0f0;
    color: #0060b1;
    border: 1px solid rgba(0, 96, 177, 0.2);
}

.btn--outline-white {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn--outline:hover {
    background: #e0e0e0;
    border: 1px solid rgba(0, 96, 177, 0.3);
}

.thin {
    font-weight: 400 !important;
}

.car1 {
    margin-bottom: 90px;
}

.btn--large {
    padding: 15px 40px;
    font-size: 1rem;
    border-radius: 30px;
}

ul ul {
    margin-left: 30px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.6) !important;
    backdrop-filter: blur(15px) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2) !important;
}

.header.scrolled.at-top {
    box-shadow: none !important;
}

.header.hidden {
    transform: translateY(-100%);
}

.top-strip {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    width: 100%;
    height: 100px;
    overflow: hidden;
    background-color: #005fae;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.top-strip.hidden {
    transform: translateY(-100%);
}

.top-strip__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.top-strip__img {
    display: block;
    height: 100%;
    width: auto;
}

.top-strip__img--mobile {
    display: none;
}

body.has-top-strip .b-page_newyear .b-head-decor {
    top: 100px;
}

/* Shift header down when garland is present */
.b-page_newyear+.header {
    top: 0;
}

.b-page_newyear+.header.at-top {
    top: 100px;
}

body.has-top-strip .b-page_newyear+.header.at-top {
    top: 200px;
}

.b-page_newyear+.header.hidden {
    top: 0 !important;
}

/* Shift header down when top strip is present (without garland) */
body.has-top-strip .header.at-top {
    top: 100px;
}

@media (max-width: 767px) {
    .top-strip__img--desktop {
        display: none;
    }

    .top-strip__img--mobile {
        display: block;
    }

    .top-strip__img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .top-strip {
        height: 100px;
    }
}

.header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    max-width: 100%;
}

.header__logo-img {
    height: 42px;
    width: auto;
}

.header.scrolled .header__logo-img {
    content: url('../img/logo.png');
}

.header__nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.header__menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.header__menu-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    white-space: nowrap;

}

.home .header__menu-link {
    color: white;
}

.header.scrolled .header__menu-link {
    color: #333 !important;
}

.header.scrolled .header__contact-link {
    color: #005fae !important;
}

.header.scrolled .header__contact-link .fa-phone {
    color: #005fae !important;
}

.header__menu-link:hover {
    color: #008aff;
}

.header__menu-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #008aff;
    transition: width 0.3s ease;
}

.header__menu-link:hover::after {
    width: 100%;
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header__btn {
    padding: 12px 24px;
    font-size: 16px;
    box-shadow: none;
}

.header__btn:hover {
    box-shadow: none;
    transform: none;
}

.header__btn:active {
    box-shadow: none;
    transform: none;
}

/* Language Switcher */
.lang-switcher {
    position: relative;
}

.lang-switcher__current {
    background: #f0f0f0;
    border: none;
    padding: 8px 12px;
    border-radius: 16px;
    cursor: pointer;
    font-size: 13px;
    color: #333;
    transition: all 0.3s ease;
}

.lang-switcher__current:hover {}

.lang-switcher__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: white;
    border-radius: 16px;
    box-shadow: 12px 12px 24px #e8e8e8, -12px -12px 24px #f8f8f8;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.lang-switcher.active .lang-switcher__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-switcher__link {
    display: block;
    padding: 12px 16px;
    color: #333;
    text-decoration: none;
    font-size: 13px;
    transition: background 0.3s ease;
}

.lang-switcher__link:hover,
.lang-switcher__link.active {
    background: #f0f0f0;
    color: #0060b1;
}

.lang-switcher__link:first-child {
    border-radius: 16px 16px 0 0;
}

.lang-switcher__link:last-child {
    border-radius: 0 0 16px 16px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: white;
    transition: all 0.3s ease;
    transform-origin: center;
}

.header.scrolled .hamburger-line {
    background-color: #333 !important;
}

body.single-solutions .header.scrolled.at-top .header__logo-img,
body.home .header.scrolled.at-top .header__logo-img,
body.front-page .header.scrolled.at-top .header__logo-img,
body.page-template-main .header.scrolled.at-top .header__logo-img {
    content: unset !important;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 20px 20px;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu__nav {
    margin-bottom: 2rem;
}

.mobile-menu__list {
    list-style: none;
    text-align: center;
}

.mobile-menu__item {
    margin-bottom: 1.5rem;
}

.mobile-menu__link {
    color: #333;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.mobile-menu__link:hover {
    color: #0060b1;
}

.mobile-menu__actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.mobile-menu__btn {
    width: 200px;
    text-align: center;
}

.mobile-menu__lang {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.mobile-menu__lang-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-menu__lang-link.active,
.mobile-menu__lang-link:hover {
    background: #0060b1;
    color: white;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgb(16 49 77 / 80%), rgba(0, 74, 143, 0.9)), url('../img/hero.jpg');
    background: linear-gradient(135deg, rgb(16 49 77 / 77%), rgb(5 115 218 / 47%)), url(../img/hero.jpg);
    background: linear-gradient(135deg, rgb(6 27 46 / 77%), rgb(0 37 72 / 54%)), url(../img/hero.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    text-align: center;
    position: relative;
    padding-top: 80px;
}

/* .home .hero{
padding-top: 300px;
} */
.hero__container {
    max-width: 1335px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.hero__title {
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: 500;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero__subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    margin-bottom: 2.5rem;
    opacity: 0.95;
    color: rgba(255, 255, 255, 0.9);
}

.hero__btn {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    box-shadow: 12px 12px 24px #e8e8e8, -12px -12px 24px #f8f8f8;
}

.hero__btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 12px 12px 24px #e8e8e8, -12px -12px 24px #f8f8f8;
}

/* Hero Blocks */
.hero__blocks {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero__block {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 2.4rem 3rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    min-height: 120px;
}

.hero__block:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.hero__block-icon {
    font-size: 2.5rem;
    color: #ffffff;
    flex-shrink: 0;
}

.hero__block-content {
    flex: 1;
    text-align: left;
}

.hero__block-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    color: #ffffff;
}

.hero__block-subtitle {
    font-size: 1.25rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
    margin-top: 50px;
}

.hero__block-arrow {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.hero__block:hover .hero__block-arrow {
    transform: translateX(5px);
    color: #ffffff;
}

@media (min-width: 1920px) {
    .home .hero {
        padding-top: 50px;
    }
}

.home .hero {
    padding-top: 250px;
    padding-bottom: 40px;
}

@media (max-width: 768px) {
    .home .hero {
        padding-top: 50px;
    }
}

@media (max-width: 768px) {
    .hero__blocks {
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .home .hero__block {
        padding: 1.5rem;
        min-height: auto;
    }

    .home .hero__title {
        margin-top: 150px;
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .solution-hero--videoanalytics {
        padding-top: 140px;
        padding-bottom: 60px;
    }

    .solution-hero--videoanalytics .solution-hero__title {
        font-size: 32px;
    }

    .video-hero__subtitle {
        font-size: 20px;
    }

    .video-hero__lead {
        font-size: 16px;
    }

    .solution-hero--videoanalytics .solution-hero__actions {
        flex-wrap: wrap;
    }
}

@media (min-width: 1200px) {
    .solution-hero--videoanalytics .container {
        min-width: 1200px;
    }
}

@media (min-width: 1400px) {
    .solution-hero--videoanalytics .container {
        min-width: 1335px;
    }

    .solution-hero--videoanalytics .hero__blocks {
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .solution-hero--videoanalytics .hero__block {
        padding: 1.5rem;
        min-height: auto;
    }

    .solution-hero--videoanalytics .hero__block-icon {
        font-size: 2rem;
    }

    .solution-hero--videoanalytics .hero__block-title {
        font-size: 1.1rem;
    }

    .solution-hero--videoanalytics .hero__block-subtitle {
        font-size: 0.95rem;
    }
}

/* Section Styles */
section {
    padding: 60px 0;
}

section:nth-child(even) {}

.section__title {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #333;
}

.section__subtitle {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: #666;
}

/* Tabs */


.cases .cases-anchors {
    z-index: 999;
    backdrop-filter: blur(10px);
    padding: 12px 0;
}

.cases-anchors-placeholder {
    height: 0;
}

.cases .cases-anchors.is-fixed {
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
    margin-top: 0;
}

.cases .cases-anchors.is-fixed .cases-anchors__nav {
    max-width: 1335px;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: auto;
    margin-right: auto;
}

.cases .cases-anchors__nav {}

.tabs__nav,
.cases-anchors__nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}


.cases-anchors__link {
    border: none;
    cursor: pointer;
    font-size: 18px;
    font-weight: 500;
    color: #666;

}

.tabs__btn:hover,
.tabs__btn.active,
.cases-anchors__link:hover,
.cases-anchors__link.active {
    color: #004a8f;
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Solution Cards */
.solution-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: white;
    padding: 2rem;
    min-height: 460px;
    border-radius: 20px;
    box-shadow: 12px 12px 24px #b8c2d3, -12px -12px 24px #ffffff;
}

.solution-card__img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

.solution-card__title {
    margin-bottom: 1rem;
    color: #333;
}

.solution-card__desc {
    margin-bottom: 2rem;
    color: #666;
}

/* Solutions CTA Styles */
.solutions__cta {
    text-align: center;
    margin-top: 3rem;
}

/* Industry Benefits Styles */
.industry-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-item {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #007bff;

    box-shadow: 12px 12px 24px #e8e8e8, -12px -12px 24px #f8f8f8;
    border: 1px solid #e9ecef;
}

.benefit-item h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* CTA Form Styles */
.cta-form {
    background: #005fae;
    padding: 4rem 0;
    color: white;
}

.cta-form__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.cta-form__image {
    text-align: center;
}

.cta-form__img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.cta-form__title {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: white;
}

.form__group {
    margin-bottom: 1.5rem;
}

.form__input,
.form__textarea {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    transition: background-color 0.3s ease;
}

.form__input:focus,
.form__textarea:focus {
    outline: none;
    background: white;
}

.form__textarea {
    resize: vertical;
    min-height: 100px;
}

.form__submit {
    width: 100%;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .cta-form__wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-form__title {
        font-size: 1.5rem;
    }

    .industry-benefits {
        grid-template-columns: 1fr;
    }
}

/* Platform Cards */
.platform-card {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 20px;

    box-shadow: 12px 12px 24px #e8e8e8, -12px -12px 24px #f8f8f8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;

}

.platform-card__img {
    width: 100%;
    max-width: 800px;
    height: 420px;
    object-fit: cover;
    border-radius: 16px;
}

.platform__cta {
    text-align: center;
    margin-top: 3rem;
}

/* Cases Slider */
.cases {}

.case-slide {
    width: 100%;
    display: block;
}

.case-card {
    background: white;
    border-radius: 20px;
    margin: 0 10px;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 0;
    min-height: 550px;
}

.case-card__image {

    height: 240px;
    object-fit: cover;
    padding: 0 3rem;
    padding-top: 1rem;
}

.home .case-card__image {
    width: 50%;
    min-width: 400px;
    height: 440px;
    object-fit: cover;
    padding: 0 3rem;
    padding-top: 1rem;
}

.case-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cases__cta {
    margin-top: 40px;
    text-align: center;
}

.case-card__content {
    padding: 1rem 2rem;
}

.case-card__logo {
    margin-bottom: .5rem;
    text-align: center;
}

.case-card__logo-img {
    height: 60px;
    width: auto;
}

.case-card__title {
    margin-bottom: 1rem;
    color: #333;
    font-size: 1.3rem;
    line-height: 1.4;
}

.case-card__desc {
    font-size: 0.875rem;
    margin-bottom: 1rem;
    color: #666;
    line-height: 1.6;
    flex-grow: 1;
}

/* Trust Section */
.trust__industries {
    margin-top: 3rem;
}

.industry-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.industry-tab {
    background: #f0f0f0;
    border: none;
    padding: 14px 28px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 18px;
    color: #666;
    transition: all 0.3s ease;
    font-family: 'Commissioner', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.industry-tab:hover,
.industry-tab.active {
    color: #004a8f;
    border: 2px solid #004a8f;
}

.trust__logos {
    position: relative;
    margin-top: 2rem;
}

.industry-content {
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(150px, 220px));
    gap: 2rem;
    justify-items: center;
    justify-content: center;
    align-items: center;
}

.industry-content.active {
    display: grid;
}

@media (max-width: 960px) {
    .industry-content {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .industry-content .company-logo {
        width: 100%;
        max-width: none;
    }
}

.company-logo {
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 12px 12px 24px #e8e8e8, -12px -12px 24px #f8f8f8;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 180px;
    max-width: 220px;
    transition: transform 0.3s ease;
}

.company-logo:hover {
    transform: translateY(-5px);
}

.company-logo img {
    max-width: 100%;
    height: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.company-logo:hover img {
    opacity: 1;
}

/* Why Choose Section */
.why-choose__intro {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}

.why-choose__intro p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.advantages {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.advantage-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 12px 12px 24px #e8e8e8, -12px -12px 24px #f8f8f8;
    text-align: center;
    transition: transform 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
}

.advantage-card__icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.advantage-card__icon i {
    background: linear-gradient(135deg, #008aff, #004a8f) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    color: transparent !important;
    display: inline-block !important;
}

.advantage-card__title {
    margin-bottom: 1rem;
    color: #333;
    font-size: 1.2rem;
}

.advantage-card__desc {
    color: #666;
}

/* Responsive for advantages */
@media (max-width: 1024px) {
    .advantages {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .advantages {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* SKAI Advantages new layout */
.skai-color {
    color: #005fae;
}

.skai-advantages__grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 2rem;
    align-items: center;
}

.skai-advantages__image {
    width: 100%;
}

.skai-advantages__img {
    width: 100%;
    height: 100%;
    max-height: 420px;
    object-fit: cover;
    border-radius: 20px;
}

.skai-advantages__items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.skai-advantages__items .skai-adv-item:nth-child(5) {
    grid-column: 1 / -1;
}

.skai-adv-item {
    background: #ffffff;
    border: 1px solid rgba(0, 95, 174, 0.18);
    border-radius: 18px;
    padding: 22px 18px;
    box-shadow: 12px 12px 24px #e8e8e8, -12px -12px 24px #f8f8f8;
}

.skai-adv-item p {
    margin: 0;
    color: #333;
    line-height: 1.6;
    font-size: 20px;
    text-align: center;
}

.skai-adv-item .highlight {
    color: #005fae;
    font-weight: 600;
}

@media (max-width: 960px) {
    .skai-advantages__grid {
        grid-template-columns: 1fr;
    }

    .skai-advantages__img {
        max-height: 300px;
    }

    .skai-advantages__items {
        grid-template-columns: 1fr;
    }
}

/* Geography Section */
.geography {
    background: #f5f5f5 url('../img/map-bg.png') no-repeat center center;
    background-size: contain;
    padding: 6rem 0 10rem;
    position: relative;
}

.geography::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(245, 245, 245, 0.6);
    z-index: 1;
}

.geography__content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin-left: auto;
    margin-right: 5%;
}

.geography__title {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 3rem;
    line-height: 1.2;
}

.geography__stats {
    display: flex;
    gap: 4rem;
    margin-bottom: 3rem;
}

.geography__stat {
    text-align: center;
}

.geography__stat-number {
    font-size: 4rem;
    font-weight: 700;
    color: #005fae;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.geography__stat-label {
    font-size: 1.2rem;
    color: #333;
    font-weight: 500;
}

.geography__description {
    max-width: 500px;
}

.geography__description p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1.5rem;
}

.geography__description p:last-child {
    margin-bottom: 0;
}

/* Responsive for geography */
@media (max-width: 1024px) {
    .geography__content {
        max-width: 100%;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .geography__title {
        font-size: 2.5rem;
    }

    .geography__stats {
        justify-content: center;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .geography {
        padding: 4rem 0;
    }

    .geography__title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .geography__stats {
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .geography__stat-number {
        font-size: 3rem;
    }

    .geography__stat-label {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .geography__stats {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* Association Section */
.association {

    background: linear-gradient(#1b212cc4, #0d44729e), url(../img/SKAI.png) no-repeat center center;
    background-size: cover;
    padding: 6rem 0;
    position: relative;
}

.association__content {
    display: flex;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.association__logo {
    flex-shrink: 0;
}

.association__logo-img {
    max-width: 200px;
    height: auto;
    margin-top: 10px;
}

.association__text {
    flex: 1;
    color: white;
}

.association__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.association__description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

.btn--white {
    background: white;
    color: #005fae;
    border: 2px solid white;

    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;

    transition: all 0.3s ease;
    display: inline-block;
}

.btn--white:hover {
    background: transparent;
    color: white;
    border-color: white;
}

/* Responsive for association */
@media (max-width: 1024px) {
    .association__content {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

    .association__title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .association {
        padding: 4rem 0;
    }

    .association__title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .association__description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .association__logo-img {
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .association__title {
        font-size: 1.5rem;
    }

    .association__logo-img {
        max-width: 120px;
    }

    .btn--white {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Second Association Block */
.association--second {
    background: linear-gradient(#1b212cc4, #0d44729e), url(../img/347467567-min.png) no-repeat center center;
    background-size: cover;
}

.association__content--reverse {
    flex-direction: row-reverse;
}

/* Responsive for second association */
@media (max-width: 1024px) {
    .association__content--reverse {
        flex-direction: column;
        text-align: center;
    }
}



/* CTA Form */
.cta-form__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: white;
    padding: 3rem;
    border-radius: 24px;

}

.cta-form__img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    border-radius: 20px;
}

.cta-form__title {
    margin-bottom: 2rem;
    color: #333;
    font-size: 26px;
}

/* Form Styles */
.form__group {
    margin-bottom: 1.5rem;
}

.form__input,
.form__textarea {
    width: 100%;
    padding: 16px 20px;
    border: none;
    border-radius: 12px;
    background: #f0f0f0;
    box-shadow: inset 6px 6px 12px #b8c2d3, inset -6px -6px 12px #ffffff;
    box-shadow: inset 6px 6px 12px #e8eef9, inset -6px -6px 12px #f4f4f4;
    font-family: inherit;
    font-size: 16px;
    color: #333;
    transition: all 0.3s ease;
}

.form__input:focus,
.form__textarea:focus {
    outline: none;
    box-shadow: inset 8px 8px 16px #b8c2d3, inset -8px -8px 16px #ffffff, 0 0 0 3px rgba(0, 96, 177, 0.2);
}

.form__textarea {
    resize: vertical;
    min-height: 100px;
}

.form__submit {

    margin-top: 1rem;
}

/* News Section */
.news {
    background: #fff;
}

#news-archive {
    padding-top: 40px;
}

.news__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.news-card {
    background: white;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 12px 12px 24px #e8e8e8, -12px -12px 24px #f8f8f8;
    box-shadow: 12px 12px 24px #e8e8e8, -12px -12px 24px #f8f8f8;
    transition: transform 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
}

@media (max-width: 960px) {
    .news__grid {
        justify-items: center;
    }
}

.news-card__link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.news-card__link:hover {
    text-decoration: none;
    color: inherit;
}

.news-card__img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-card__content {
    padding: 1.5rem 1rem;
}

.news-card__date {
    font-size: 12px;
    color: #0060b1;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.news-card__title {
    margin-bottom: 1rem;
    color: #333;
    font-size: 1.1rem;
}

.news-card__desc {
    margin-bottom: 1.5rem;
    color: #666;
    font-size: 14px;
}

.news__cta {
    text-align: center;
    margin-top: 3rem;
}

.cases__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.cases__section-title {
    margin-top: 40px;
    font-size: 26px;
    color: #0060b1;
}

@media (max-width: 960px) {
    .cases__grid {
        grid-template-columns: 1fr;
        justify-items: stretch;
    }
}

.cases-card {
    background: white;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 12px 12px 24px #e8e8e8, -12px -12px 24px #f8f8f8;
    transition: transform 0.3s ease;
}

.cases-card:hover {
    transform: translateY(-5px);
}

.cases-card__link {

    text-decoration: none;
    color: inherit;
    height: 100%;
}

.cases-card__img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.cases-card__content {
    padding: 0.5rem 1.5rem;

}

.cases-card__date {
    font-size: 12px;
    color: #4a5568;
    font-weight: 500;
    margin-top: -10px;

}

.cases-card__fleet {
    margin-top: 10px;
    font-size: 20px;
    font-weight: 600;
    color: #005fae;
}

.cases-card__title {
    margin-bottom: 0.75rem;
    color: #333;
    font-size: 1.1rem;
}

.cases-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.cases-card__header .cases-card__title {
    margin-bottom: 0;
}

.cases-card__header .cases-card__logo {
    margin-bottom: 0;
    text-align: right;
}

.cases-card__desc {
    margin-top: 0.5rem;
    margin-bottom: .1rem;
    color: #1e1e1e;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
}

hr {
    margin: .5rem 0;
    border: none;
    border-top: 1px solid #b5b5b5;
}

.cases-card__solutions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.case-card__solution-tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    font-size: 12px;
    color: #005fae;
    border: 1px solid #005fae;
    background: rgba(0, 95, 174, 0.08);
    border-radius: 999px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.case-card__solution-tag:hover {
    background: #005fae;
    color: #fff;
}

.cases-card__logo {
    margin-bottom: .5rem;
    text-align: center;
}

.cases-card__logo-img {
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.cases__empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.cases__pagination {
    margin-top: 60px;
    text-align: center;
    border: none;
    outline: none;
}

.cases__pagination:hover {
    background: none !important;
    color: inherit !important;
    border: none !important;
}

.cases__pagination ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border: none;
    outline: none;
}

.cases__pagination ul:hover {
    background: none !important;
    color: inherit !important;
    border: none !important;
}

.cases__pagination li {
    list-style: none;
}

.cases__pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    margin: 0;
    padding: 8px 12px;
    text-decoration: none;
    color: #333;
    border: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cases__pagination .page-numbers:hover,
.cases__pagination .page-numbers.current {
    background: #008aff;
    color: #fff;
}

.cases__pagination .page-numbers.dots {
    border: none;
    background: none;
}

.cases__pagination .page-numbers.dots:hover {
    background: none;
    color: #333;
}

@media (max-width: 768px) {
    .cases__pagination .page-numbers {
        margin: 0 2px;
        min-width: 35px;
        height: 35px;
        font-size: 14px;
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #f0f0f0, #c1c9d6);
    background: linear-gradient(135deg, #2f3a4b, #737e91);
    color: white;
}

.footer__container {
    max-width: 100%;
    padding: 0 20px;
}

.footer__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    padding: 3rem 0;
}

.footer__logo-img {
    height: 40px;
    width: auto;
    margin-bottom: 1rem;
}

.case-overview {}

.case-overview__grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 24px;
    align-items: stretch;
}

.case-overview__img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    max-height: 400px;
    object-fit: cover;
}

.case-overview__logo {
    margin-bottom: 8px;
}

.case-overview__logo-img {
    height: 80px;
    width: auto;
}

.case-overview__category {
    font-size: 16px;
    color: #0060b1;
    font-weight: 600;
    margin-bottom: 6px;
}

.case-overview__description {
    font-size: 18px;
    color: #666;
    margin-bottom: 14px;
}

@media (max-width: 960px) {
    .case-overview__grid {
        grid-template-columns: 1fr;
    }
}

/* Case Implementation Section */
.case-implementation {

    background: #d3dde7;
}

.case-implementation__grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 42px;
    align-items: stretch;
}

.case-implementation__img {
    width: 100%;
    height: 420px;
    margin-top: 25px;
    border-radius: 12px;
    object-fit: cover;
}

@media (max-width: 960px) {
    .case-implementation__grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 961px) {
    .case-implementation__image {
        position: relative;
        overflow: hidden;
    }

    .case-implementation__img {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        margin-top: 0;
    }
}

.footer__desc {
    margin-bottom: 2rem;
    color: white;
}

.footer__number {
    font-size: 38px;
    font-weight: bold;
}

.footer__social {
    display: flex;
    gap: 1rem;
}

.footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 10px;
    color: #0060b1;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer__social-link:hover {
    transform: translateY(-2px);
}

.footer__title {
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.1rem;
}

.footer__menu {
    list-style: none;
}

.footer__menu li {
    margin-bottom: 0.5rem;
}

.footer__menu-link {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__menu-link:hover {
    color: #0060b1;
}

.footer__contacts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.footer__contact-label {
    font-size: 12px;
    color: white;
    font-weight: 500;
}

.footer__contact-link {
    color: #66b3ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__contact-link:hover {
    color: #99ccff;
}

.footer__contact-text {
    color: white;
}

.footer__btn {
    margin-top: 1.5rem;
    display: inline-block;
    text-align: center;
    text-decoration: none;
}

.footer__support {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__support-title {
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 1rem 0;
}

.footer__bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 2rem 0;
    text-align: center;
}

.footer__copyright {
    color: white;
    font-size: 14px;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 15px;
    }

    .solution-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-form__wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header__nav {
        display: none;
    }

    .header__actions {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .header__btn {
        padding: 6px 12px;
        font-size: 12px;
    }

    .tabs__nav {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 0.8rem;
        margin-bottom: 2rem;
    }

    .tabs__btn {
        width: calc(50% - 0.4rem);
        max-width: 180px;
        padding: 8px 10px;
        font-size: 15px;
    }

    .industry-tabs {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 0.6rem;
        margin-bottom: 2rem;
    }

    .industry-tab {
        width: calc(50% - 0.3rem);
        max-width: 150px;
        padding: 6px 8px;
        font-size: 14px;
    }

    .trust__logos {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }

    .news__grid {
        grid-template-columns: 1fr;
    }

    .case-card {
        flex-direction: column;
        min-height: auto;
    }

    .case-card__image {
        width: 100%;
        min-height: 250px;
    }

    .case-card__content {
        width: 100%;
        padding: 1.5rem;
    }

    .platform-card__img {
        height: 300px;
    }

    .solution-card__img {
        height: 300px;
    }

    .cta-form__img {
        height: 300px;
    }

    .cta-form__title {
        font-size: 32px;
    }

    .footer__content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 0 10px;
        padding-top: 70px;
    }

    .container {
        padding: 0 10px;
    }

    .header__container {
        padding: 10px;
    }

    .header__actions {
        flex-direction: column;
        gap: 0.25rem;
    }

    .solution-card,
    .platform-card {
        flex-direction: column;
        min-height: auto;
    }

    .case-card__image {
        min-height: 250px;
    }

    .case-card__content {
        padding: 1.5rem;
    }

    .advantage-card,
    .cta-form__wrapper {
        padding: 1.5rem;
    }

    .news-card__content {
        padding: 1rem;
    }
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100%;
    background: #0b233aa8;

    backdrop-filter: blur(5px);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    overflow-y: auto;
}

.modal__content {
    position: relative;
    /* background: white;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3); */
    max-width: 500px;
    width: 100%;
    margin: 5px 0;
    transform: translateY(50px);
    transition: transform 0.3s ease;
}

.modal.active .modal__content {
    transform: translateY(0);
}

.modal__close {
    position: absolute;
    top: 30px;
    right: 20px;
    background: #f0f0f0;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 999999999;
}

.modal__close:hover {
    background: #e0e6ed;
    transform: rotate(90deg);
}

.modal__close i {
    color: #666;
    font-size: 16px;
}

.modal__header {
    padding: 2px 40px 2px;
    text-align: center;

}

.modal__title {
    margin: 0 0 10px;
    color: #333;
    font-size: 28px;
    font-weight: 600;
}

.modal__subtitle {
    margin: 0;
    color: #666;
    font-size: 16px;
    line-height: 1.5;
}

.modal__form {
    padding: 30px 40px 20px;
}

.modal__form-group {
    margin-bottom: 20px;
}

.modal__input,
.modal__select,
.modal__textarea {
    width: 100%;
    padding: 16px 20px;
    border: none;
    border-radius: 12px;
    background: #f8fafb;
    box-shadow: inset 4px 4px 8px #e8eef9, inset -4px -4px 8px #ffffff;
    font-family: inherit;
    font-size: 16px;
    color: #333;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.modal__input:focus,
.modal__select:focus,
.modal__textarea:focus {
    outline: none;
    box-shadow: inset 6px 6px 12px #e8eef9, inset -6px -6px 12px #ffffff, 0 0 0 3px rgba(0, 96, 177, 0.2);
    background: #ffffff;
}

.modal__select {
    cursor: pointer;
    appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4 5"><path fill="%23666" d="M2 0L0 2h4zm0 5L0 3h4z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 12px;
}

.modal__textarea {
    resize: vertical;
    min-height: 80px;
}

.modal__submit {
    width: 100%;
    margin-bottom: 20px;
}

.modal__privacy {
    margin: 0;
    font-size: 14px;
    color: #666;
    text-align: center;
    line-height: 1.4;
}

.modal__privacy a {
    color: #0060b1;
    text-decoration: none;
}

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

.cta-form__content .amoforms__textarea_paragraph {
    display: none !important;
}

/* Removed arrow indicators for cleaner design */

/* Separator lines in dropdown */
.sub-menu .header__menu-item:not(:last-child) {
    border-bottom: 1px solid #f1f3f4;
}

/* Improved hover area for better UX */
.header__menu-item:hover>.sub-menu,
.header__menu-item:focus-within>.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Keep dropdown open when hovering over it */
.sub-menu:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Smooth transitions only for dropdown elements */
.sub-menu {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Mobile Modal Styles */
@media (max-width: 768px) {
    .modal__overlay {
        padding: 10px;
    }

    .modal__content {
        margin: 20px 0;
    }

    .modal__header {
        padding: 30px 20px 15px;
    }

    .modal__title {
        font-size: 24px;
    }

    .modal__subtitle {
        font-size: 14px;
    }

    .modal__form {
        padding: 20px;
    }

    .modal__close {
        top: 15px;
        right: 15px;
        width: 35px;
        height: 35px;
    }
}

/* Slick Slider Customization */


.slick-dots li button:before {
    color: #0060b1;
    font-size: 18px;
}

.slick-prev,
.slick-next {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    color: #0060b1;
    font-size: 32px;
    z-index: 10;
}

.slick-prev:hover,
.slick-next:hover {
    background: #0060b1;
    color: white;
}

.slick-prev {
    left: -80px;
}

.slick-next {
    right: -80px;
}

@media (max-width: 768px) {

    .slick-prev,
    .slick-next {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .slick-prev {
        left: 10px;
    }

    .slick-next {
        right: 10px;
    }
}

/* Small text utility class */
.small {
    font-size: 12px;
    color: white;
}

/* Contacts Page Styles */
.contacts-hero {
    background: linear-gradient(135deg, rgba(60, 152, 231, 0.8), rgba(0, 74, 143, 0.9)), url('../img/cont.avif');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 0 80px;
    min-height: 50vh;
    color: white;
    text-align: center;
}

.contacts-hero__title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .contacts-hero__title {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .contacts-hero__title {
        font-size: 28px;
    }
}

.contacts-hero__subtitle {
    font-size: 20px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    color: white;
}

.contact-info {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-info__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .contact-info__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.contact-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 12px 12px 24px #e8e8e8, -12px -12px 24px #f8f8f8;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 12px 12px 24px #e8e8e8, -12px -12px 24px #f8f8f8;
}

.contact-card__icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3c98e7, #004a8f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
}

.contact-card__title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.contact-card__content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-card__text {
    color: #666;
    line-height: 1.5;
}

.contact-card__link {
    color: #3c98e7;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-card__link:hover {
    color: #004a8f;
}

.contact-form-section {
    padding: 40px 0 80px;
    background: white;
}

.contact-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

@media (max-width: 768px) {
    .contact-form-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.contact-form__info {
    padding-right: 20px;
}

.contact-form__title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.contact-form__subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

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

.benefit-item {

    align-items: center;
    gap: 15px;
}

.contact-form__info .benefit-item {
    display: flex;
}

.benefit-item__icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #3c98e7, #004a8f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 14px;
    flex-shrink: 0;
}

.benefit-item__text {
    color: #333;
    font-weight: 500;
}

.contact-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
}

.contact-form__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.map-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    align-items: stretch;
}

.map-wrapper {
    border-radius: 12px;
    overflow: hidden;
    min-height: 400px;
}

.map-wrapper iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 400px;
}

/* Адаптив */
@media (max-width: 768px) {
    .map-layout {
        grid-template-columns: 1fr;
    }

    .map-wrapper {
        min-height: 300px;
    }

    .map-wrapper iframe {
        min-height: 300px;
    }
}

@media (max-width: 480px) {
    .contact-form__grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

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

.form__select {
    width: 100%;
    padding: 16px 20px;
    border: none;
    border-radius: 12px;
    background: #f0f0f0;
    box-shadow: inset 6px 6px 12px #e8eef9, inset -6px -6px 12px #f4f4f4;
    font-family: inherit;
    font-size: 16px;
    color: #333;
    transition: all 0.3s ease;
}

.form__select:focus {
    outline: none;
    box-shadow: inset 8px 8px 16px #b8c2d3, inset -8px -8px 16px #ffffff, 0 0 0 3px rgba(0, 96, 177, 0.2);
}

.contact-form .form__textarea {
    width: 100%;
    padding: 16px 20px;
    border: none;
    border-radius: 12px;
    background: #f0f0f0;
    box-shadow: inset 6px 6px 12px #e8eef9, inset -6px -6px 12px #f4f4f4;
    font-family: inherit;
    font-size: 16px;
    color: #333;
    resize: vertical;
    min-height: 120px;
    transition: all 0.3s ease;
}

.contact-form .form__textarea:focus {
    outline: none;
    box-shadow: inset 8px 8px 16px #b8c2d3, inset -8px -8px 16px #ffffff, 0 0 0 3px rgba(0, 96, 177, 0.2);
}

.map-section {
    padding: 0px 0 80px;
    background: #f8f9fa;
}

.map-section__title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #333;
    margin-top: 80px;
}

.map-placeholder {
    background: white;
    border-radius: 12px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 12px 12px 24px #e8e8e8, -12px -12px 24px #f8f8f8;
}

.map-placeholder__icon {
    color: #3c98e7;
    margin-bottom: 20px;
}

.map-placeholder h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.map-placeholder p {
    color: #666;
    margin-bottom: 30px;
    font-size: 16px;
}

/* Services Page Styles */
.services-hero {
    background: linear-gradient(135deg, rgba(0, 96, 177, 0.9), rgba(0, 74, 143, 0.9)), url('../img/hero.jpg');
    background-size: cover;
    background-position: center;
    padding: 180px 0 80px;
    color: white;
    text-align: center;
}

/* Solution Hero Styles */
.solution-hero {
    background: linear-gradient(135deg, rgba(0, 96, 177, 0.9), rgba(0, 74, 143, 0.9)), url('../img/hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 260px 0 80px;
    color: white;
    text-align: center;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.solution-hero__content {
    max-width: 880px;
    margin: 0 auto;
}

.solution-hero__badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: white;
}

.solution-hero__title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.solution-hero__subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    margin-bottom: 2.5rem;
    opacity: 0.95;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.solution-hero__subtitle1 {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    margin-bottom: 0;
    opacity: 0.65;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.solution-hero__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.solution-hero--videoanalytics {
    padding-bottom: 100px;
    color: #fff;
    text-align: left;
    display: block;
}

.solution-hero--videoanalytics .container {
    max-width: 1335px;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    justify-content: flex-start;
}

.solution-hero--videoanalytics .solution-hero__content {
    width: 100%;
    max-width: 820px;
    margin: 0 !important;
    text-align: left;
}

.video-hero__kicker {
    font-size: 12px;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.solution-hero--videoanalytics .solution-hero__title {
    font-size: 44px;
    line-height: 1.15;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}

.video-hero__subtitle {
    font-size: 26px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.video-hero__lead {
    max-width: 820px;
    font-size: 18px;
    line-height: 1.55;
    color: white;
    margin-bottom: 52px;
}

.solution-hero--videoanalytics .solution-hero__actions {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
}

.solution-hero--videoanalytics .btn {
    border-radius: 9999px;
    padding: 12px 22px;
    font-weight: 700;
}

.solution-hero--videoanalytics .btn--white {
    background: #fff;
    color: #005fae;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.solution-hero--videoanalytics .btn--blue {
    background: rgba(0, 62, 124, 0.85);
    color: #fff;
    border: 1px solid rgba(110, 167, 255, 0.35);
}

.videoanalytics-preview {
    padding: 70px 0 40px;
    background: #fff;
}

.videoanalytics-preview__intro {
    max-width: 980px;
    margin-bottom: 28px;
}

.videoanalytics-preview__lead {
    font-size: 16px;
    line-height: 1.6;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.videoanalytics-preview__accent {
    color: #005fae;
    font-weight: 600;
}

.videoanalytics-preview__note {
    font-size: 14px;
    color: #e53935;
    font-weight: 600;
}

.videoanalytics-preview__divider {
    height: 1px;
    background: #e5e5e5;
    margin-top: 18px;
}

.videoanalytics-preview__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 32px;
    align-items: start;
}

.videoanalytics-preview__trigger {
    position: relative;
    display: block;
    width: 100%;
    border: none;
    padding: 0;
    cursor: pointer;
    background: transparent;
}

.videoanalytics-preview__video {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    background: #dfe6ef;
}

.videoanalytics-preview__play {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #fff;
    color: #005fae;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.videoanalytics-preview__trigger:hover .videoanalytics-preview__play {
    transform: translate(-50%, -50%) scale(1.05);
}

.videoanalytics-preview__relevant {
    background: #f4f5f7;
    border-radius: 16px;
    padding: 24px 28px;
    height: 100%;
    align-self: stretch;
}

.postid-1227 h2 {
    margin-top: 20px;
    margin-bottom: 30px;
}

.videoanalytics-preview__relevant-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.videoanalytics-preview__relevant-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.videoanalytics-preview__relevant-list li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 18px;
    margin-top: 28px;
    color: #2b2b2b;
    font-size: 18px;
    line-height: 1.5;
}

.videoanalytics-car-card__image {
    position: relative;
    width: 77%;

}

.videoanalytics-car-card__image img {
    width: 100%;
    height: auto;
    display: block;
}

.videoanalytics-car-card__label {
    position: absolute;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.3;
    max-width: 280px;
}

.videoanalytics-car-card__label--truck-1 {
    top: 7%;
    left: 30%;
}

.videoanalytics-car-card__label--truck-2 {
    top: 4%;
    right: -16%;
    max-width: 260px;
}

.videoanalytics-car-card__label--truck-3 {
    top: 28%;
    right: -25%;
}

.videoanalytics-car-card__label--truck-4 {
    top: 55%;
    right: -28%;
}

.videoanalytics-car-card__label--truck-5 {
    top: 81%;
    right: -21%;
}

.videoanalytics-car-card__label--truck-6 {
    bottom: 10%;
    left: 49%;
    max-width: 260px;
}

.videoanalytics-car-card__label--car-1 {
    top: 6%;
    right: -23%;
    max-width: 320px;
}

.videoanalytics-car-card__label--car-2 {
    top: 30%;
    right: -23%;
    max-width: 260px;
}

.videoanalytics-car-card__label--car-3 {
    top: 58%;
    right: -27%;
    max-width: 260px;
}

.videoanalytics-car-card__label--car-4 {
    bottom: 12%;
    right: -6%;
}

.videoanalytics-preview__relevant-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 0;
    color: #1a73e8;
    font-weight: 700;
}

.videoanalytics-tabs {
    padding: 40px 0 60px;
    background: #fff;
}

.videoanalytics-tabs__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.videoanalytics-tabs__btn {
    background: #f2f4f7;
    border: 1px solid #e0e3e8;
    color: #1a1a1a;
    font-size: 18px;
    padding: 10px 80px;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.videoanalytics-tabs__btn.is-active {
    background: #005fae;
    border-color: #005fae;
    color: #fff;
}

.videoanalytics-tabs__content {
    border-radius: 16px;
}

.videoanalytics-tab {
    display: none;
}

.videoanalytics-tab.is-active {
    display: block;
}

.videoanalytics-tab__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.75fr) minmax(0, 1.25fr);
    gap: 24px;
    align-items: center;
}

.videoanalytics-tab__info {
    display: grid;
    gap: 22px;
}

.videoanalytics-group {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    row-gap: 10px;
    column-gap: 10px;
}

.videoanalytics-group__title {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    grid-column: 1 / -1;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.videoanalytics-group__img {
    width: 92px;
    height: 92px;
    padding: 4px;
    box-sizing: border-box;
    border-radius: 50%;
    background: #fff;
    display: inline-block;
    object-fit: contain;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}

.videoanalytics-group .videoanalytics-tab__icons {
    grid-column: 1 / -1;
}

.videoanalytics-tab__icons {
    display: flex;
    gap: 5px 58px;
    flex-wrap: wrap;
}

.videoanalytics-tab__media img {
    max-width: 96%;
    object-fit: contain;
    object-position: center;
}

.videoanalytics-tab__icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    margin-bottom: 8px;
    width: 140px;
    text-align: center;
    color: #1a1a1a;
    font-size: 14px;
    line-height: 1.3;
}

.videoanalytics-car-card__text {
    margin-top: 1rem;
}

.videoanalytics-tab__icon i {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: #eef4fb;
    color: #005fae;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.videoanalytics-tab__icon img {
    width: 111px;
    height: 111px;

    object-fit: contain;
    display: block;
}

.videoanalytics-tab__video {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
    background: #dfe6ef;
}

.videoanalytics-tab__trigger {
    position: relative;
    display: inline-block;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    width: 100%;
}

.videoanalytics-tab__play {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #fff;
    color: #005fae;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.videoanalytics-tab__trigger:hover .videoanalytics-tab__play {
    transform: translate(-50%, -50%) scale(1.05);
}

.videoanalytics-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: rgba(11, 17, 27, 0.7);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 3000;
}

.videoanalytics-modal--open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.videoanalytics-modal__overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.videoanalytics-modal__dialog {
    position: relative;
    width: 100%;
    max-width: 980px;
    background: #000;
    border-radius: 20px;
    padding: 16px;
    z-index: 1;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.35);
}

.videoanalytics-modal__video {
    width: 100%;
    max-height: 80vh;
    border-radius: 12px;
    display: block;
    position: relative;
    z-index: 1;
}

.videoanalytics-modal__close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
}

body.videoanalytics-modal-open {
    overflow: hidden;
}

.solution-benefits--videoanalytics {
    padding: 40px 0 80px;
    background: #fff;
}

.solution-benefits--videoanalytics .section-title {
    text-align: left;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.videoanalytics-benefits {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.videoanalytics-benefit-card {
    background: linear-gradient(90deg, #0a4f8f 0%, #0b62b3 100%);
    border-radius: 14px;
    padding: 24px 20px;
    color: #fff;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    min-height: 140px;
}

.videoanalytics-benefit-card__icon {
    width: 99px;
    height: 99px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.videoanalytics-benefit-card__icon img {
    width: 99px;
    height: 99px;
    object-fit: contain;
}

.videoanalytics-benefit-card__icon i {
    font-size: 18px;
}

.videoanalytics-benefit-card__title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #fff;
}

.videoanalytics-benefit-card__text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.5;
}

.videoanalytics-results {
    padding: 70px 0 80px;
    background: linear-gradient(135deg, #005fae 0%, #0b4f86 100%);
    background: linear-gradient(90deg, #0a4f8f 0%, #0b62b3 100%);
    color: #fff;

}

.videoanalytics-results__title {

    color: #fff;
}

.videoanalytics-results__subtitle {
    font-size: 16px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.85);
}

.videoanalytics-results__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.videoanalytics-results__card {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    padding: 0 33px 24px;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

.videoanalytics-results__value {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
}

.videoanalytics-results__label {
    font-size: 18px;
    line-height: 1.5;
    min-height: 54px;
    color: rgba(255, 255, 255, 0.9);
}

.videoanalytics-results__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 999px;
    background: #fff;
    color: #005fae;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.videoanalytics-results__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.videoanalytics-dispatch {
    padding: 60px 0 70px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.0)), url('../img/ddd.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
}

/* @media(max-width: 1920px) {
    .videoanalytics-dispatch {
        background-image: linear-gradient(#020e28, #020e28), url('../img/ddd.jpg');
    }
}*/

.videoanalytics-dispatch__content {
    max-width: 590px;
}

.videoanalytics-dispatch__title {

    color: #fff;
}

.videoanalytics-dispatch__subtitle {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #fff;
}

.videoanalytics-dispatch__text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.videoanalytics-dispatch__list-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.videoanalytics-dispatch__list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    display: grid;
    gap: 6px;
}

.videoanalytics-dispatch__list li {
    position: relative;
    padding-left: 16px;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
}

.videoanalytics-dispatch__list p {
    font-size: 20px;
}

.videoanalytics-dispatch__list li::before {
    content: '—';
    position: absolute;
    left: 0;
    top: 0;
    color: rgba(255, 255, 255, 0.8);
}

.videoanalytics-dispatch__result {
    font-size: 16px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.95);
}

.videoanalytics-dispatch__result span {
    font-weight: 700;
    color: #fff;
}

.videoanalytics-dispatch__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 26px;
    border-radius: 999px;
    background: #fff;
    color: #005fae;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.videoanalytics-dispatch__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.25);
}

.videoanalytics-packages {
    padding: 70px 0 80px;
    background: #fff;
}

.videoanalytics-packages__title {
    color: #1a1a1a;
    margin-bottom: 28px;
}

.videoanalytics-packages__title span {
    color: #005fae;
}

.blue {
    color: #005fae;
}

.videoanalytics-packages__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.videoanalytics-package-card {
    background: #f4f5f7;
    border-radius: 14px;
    padding: 20px 20px 22px;
    color: #1a1a1a;
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-height: 100%;
}

.videoanalytics-package-card__header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.videoanalytics-package-card__diamond {
    color: #005fae;
    font-size: 22px;
}

.videoanalytics-package-card__title {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.videoanalytics-package-card__section-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 4px;
}

.videoanalytics-package-card__text {
    min-height: 75px;
    line-height: 1.5;
    color: #2b2b2b;
    margin: 0;
}

.videoanalytics-package-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
    min-height: 250px;
}

.videoanalytics-package-card__list li {
    position: relative;
    padding-left: 16px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.videoanalytics-package-card__list li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: -6px;
    color: #1a1a1a;
    font-size: 19px;
}

.package-label {
    position: relative;
    display: inline-block;
    padding-right: 22px;
    font-size: 14px;
    color: #1a1a1a;
}

.package-label::after {
    content: '?';
    position: relative;
    display: inline-block;
    right: -6px;
    top: -2px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #7bb6e5;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    line-height: 14px;
    text-align: center;
}

.package-label::before {
    content: attr(data-tooltip);
    position: absolute;
    left: 56px;
    top: calc(100% + -88px);
    width: 260px;
    padding: 8px 10px;
    background: #fff;
    color: #1a1a1a;
    border: 1px solid #dcdcdc;
    border-radius: 8px;
    font-size: 12px;
    line-height: 1.4;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(4px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 2;
}

.package-label:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.package-note {
    font-size: 14px;
    font-style: italic;
    color: #4b93c7;
}

.package-note::before {
    content: '— ';
    color: #4b93c7;
}

.videoanalytics-package-card__bonus {
    font-size: 14px;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 6px;
}

.videoanalytics-package-card__bonus i {
    color: #c07a2b;
}

.videoanalytics-faq {
    padding: 30px 0 80px;
    background: #fff;
}

.tag {
    background: rgb(240 240 240);
    color: #0060b1;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-right: 0.5rem;
    margin-bottom: 0.25rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.videoanalytics-faq__title {}

.videoanalytics-faq__list {
    display: grid;
    gap: 12px;
}

.faq-item {
    background: #f4f5f7;
    border-radius: 12px;
    padding: 0;
    border: 1px solid #d5d5d5;
}

.faq-item__summary {
    list-style: none;
    cursor: pointer;
    padding: 16px 18px;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.faq-item__summary::-webkit-details-marker {
    display: none;
}

.faq-item__summary::after {
    content: '+';
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #005fae;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.faq-item[open] .faq-item__summary::after {
    content: '–';
}

.faq-item__content {
    padding: 0 18px 0;
    font-size: 14px;
    line-height: 1.6;
    color: #2b2b2b;
    display: grid;
    gap: 10px;
    height: 0;
    overflow: hidden;
    transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding-bottom 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: height;
}

.faq-item[open] .faq-item__content {
    padding-bottom: 16px;
}

.faq-item__content p {
    margin: 0;
}

.videoanalytics-faq img {
    max-width: 100%;
    border-radius: 10px;
    cursor: zoom-in;
}

.image-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(10, 15, 25, 0.75);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 4000;
}

.image-modal--open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.image-modal__overlay {
    position: absolute;
    inset: 0;
}

.image-modal__dialog {
    position: relative;
    z-index: 1;
    max-width: 920px;
    width: 100%;
}

.image-modal__img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    background: #fff;
}

.image-modal__close {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: #fff;
    color: #1a1a1a;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

body.image-modal-open {
    overflow: hidden;
}

@media (max-width: 991px) {
    .videoanalytics-preview {
        padding: 60px 0 30px;
    }

    .videoanalytics-preview__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .videoanalytics-preview__intro {
        margin-bottom: 20px;
    }

    .videoanalytics-benefits {
        grid-template-columns: 1fr;
    }

    .videoanalytics-tab__grid {
        grid-template-columns: 1fr;
    }

    .videoanalytics-results__grid {
        grid-template-columns: 1fr;
    }

    .videoanalytics-dispatch__content {
        max-width: 100%;
    }

    .videoanalytics-packages__grid {
        grid-template-columns: 1fr;
    }

    .faq-item__summary {
        font-size: 16px;
    }

    .single-solutions p {
        font-size: 16px;
    }

    .videoanalytics-car-card__image {
        width: 100%;
    }

    .videoanalytics-car-card__label {
        position: static;
        display: block;
        margin-top: 8px;
        max-width: 100%;
        font-size: 15px;
        line-height: 1.4;
    }

}

@media (max-width: 640px) {

    .videoanalytics-preview__play {
        width: 52px;
        height: 52px;
        font-size: 18px;
    }

    .videoanalytics-tab__play {
        width: 52px;
        height: 52px;
        font-size: 18px;
    }

    .videoanalytics-group__title {
        font-size: 16px;
    }
}

.btn--outline-white {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
}

.btn--outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
}

.services-hero__title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.services-hero__subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.services-hero__breadcrumbs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.services-hero__breadcrumbs a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
}

.services-hero__breadcrumbs a:hover {
    opacity: 1;
}

/* Light variant for News and Events */
.services-hero--light {
    background: #fff;
    padding: 190px 0 20px;
    color: inherit;
    text-align: left;
}

.services-hero--light .services-hero__title {
    color: #000;
}

.services-hero--light .services-hero__subtitle {
    color: #666;
}

.services-hero--light .services-hero__breadcrumbs {
    justify-content: flex-start;
    color: #666;
}

.services-hero--light .services-hero__breadcrumbs a {
    color: #666;
    opacity: 0.9;
}

.services-hero--light .services-hero__breadcrumbs a:hover {
    color: #333;
}



/* Make header blue initially (before scroll) on News and Events pages */
body.post-type-archive-news .header,
body.post-type-archive-events .header,
body.single-news .header,
body.single-events .header {
    background: #005fae;
}

/* Remove forced white colors on scroll for News and Events (use global scrolled styles) */

/* Transparent header and white text only at top on Main, Single Cases, Single Solutions */

body.single-solutions .header.at-top,
body.home .header.at-top,
body.front-page .header.at-top,
body.page-template-main .header.at-top {
    background: transparent !important;
    backdrop-filter: none !important;
    box-shadow: none !important;
}


body.single-solutions .header.at-top .header__menu-link,
body.home .header.at-top .header__menu-link,
body.front-page .header.at-top .header__menu-link,
body.page-template-main .header.at-top .header__menu-link {
    color: #fff !important;
}


body.single-solutions .header.at-top .header__contact-link,
body.home .header.at-top .header__contact-link,
body.front-page .header.at-top .header__contact-link,
body.page-template-main .header.at-top .header__contact-link {
    color: #fff !important;
}


body.single-solutions .header.at-top .header__contact-link .fa-phone,
body.home .header.at-top .header__contact-link .fa-phone,
body.front-page .header.at-top .header__contact-link .fa-phone,
body.page-template-main .header.at-top .header__contact-link .fa-phone {
    color: #fff !important;
}

.single-solutions p {
    font-size: 18px;
}

.single-solutions h1,
.single-solutions h2 {
    font-size: 40px;
}

.single-solutions h3,
.single-solutions h4 {
    font-size: 24px;
}

.single-solutions [class*="__subtitle"] {
    font-size: 24px;
}

@media (max-width: 640px) {

    .single-solutions h1,
    .single-solutions h2 {
        font-size: 26px;
    }

    .faq-item__summary {
        font-size: 16px;
    }

    .single-solutions p {
        font-size: 16px;
    }

    .solution-hero--videoanalytics .solution-hero__title {
        font-size: 32px;
    }


}


body.single-solutions .header.at-top .hamburger-line,
body.home .header.at-top .hamburger-line,
body.front-page .header.at-top .hamburger-line,
body.page-template-main .header.at-top .hamburger-line {}

.services-overview {
    padding: 80px 0;
}

.services-overview__content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.services-overview__title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1a202c;
}

.services-overview__description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #4a5568;
}

.services-grid {
    padding: 80px 0;
}

.services-grid__items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.services-grid__items.slick-initialized {
    display: block;
}

.services-grid__items.slick-initialized .slick-slide {
    margin: 0 1rem;
}

.services-grid__items.slick-initialized .slick-list {
    margin: 0 -1rem;
    padding: 24px 0;
}

.service-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 6px 12px 24px #e8e8e8, -12px -12px 24px #f8f8f8;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 6px 12px 24px #e8e8e8, -12px -12px 24px #f8f8f8;
}

.service-card--link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-card--link:hover {
    text-decoration: none;
    color: inherit;
}

.service-card--link:hover .service-card__title {
    color: #0060b1;
    transition: color 0.3s ease;
}

.service-card__icon {
    margin-bottom: 1.5rem;
}

.service-card__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-card__title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a202c;
}

.service-card__description {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.service-card__features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-card__features li {
    padding: 0.5rem 0;
    color: #2d3748;
    position: relative;
    padding-left: 1.5rem;
}

.service-card__features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0060b1;
    font-weight: bold;
}

.target-companies {
    padding: 80px 0;
    background: #f8fafc;
}

.target-companies__title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a202c;
}

.target-companies__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.target-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 12px 12px 24px #e8e8e8, -12px -12px 24px #f8f8f8;
}

.target-item__icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;

    background: linear-gradient(135deg, #0060b1, #004a8f);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.target-item__title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a202c;
}

.target-item__description {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #4a5568;
}

.benefits-icons {
    padding: 80px 0;
}

.benefits-icons__title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a202c;
}

.benefits-icons__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-icon {
    text-align: center;
    padding: 2rem 1rem;
}

.benefit-icon__image {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.benefit-icon__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.benefit-icon__title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #1a202c;
}

.benefit-icon__description {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #4a5568;
}

/* Mobile Responsive */
@media (max-width: 1200px) {
    .contacts-hero {
        padding: 100px 0 60px;
    }

    .contacts-hero__title {
        font-size: 36px;
    }

    .contacts-hero__subtitle {
        font-size: 18px;
    }

    .contact-info {
        padding: 60px 0;
    }

    .contact-info__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-card {
        padding: 30px 20px;
    }

    .contact-form-section {
        padding: 60px 0;
    }

    .contact-form-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form__info {
        padding-right: 0;
        text-align: center;
    }

    .contact-form__title {
        font-size: 28px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .contact-form__grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .map-section {
        padding: 60px 0;
    }

    .map-section__title {
        font-size: 28px;
    }

    .map-placeholder {
        padding: 40px 20px;
    }
}

.price {
    margin-left: 35px;
    border-radius: 5px;
    border: 1px solid #333;
    padding: 3px 10px;
}

.price a {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.home .at-top .price,
.single-solutions .at-top .price {
    border: 1px solid #fff;
}

.home .at-top .price a,
.single-solutions .at-top .price a {
    color: #fff;
}


/* .single-solutions .price {
    border:1px solid #fff;
}
.home .price a{
    color:#fff;
} */
/* About Page Styles */

/* About Hero */
.about-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(60, 152, 231, 0.8), rgba(0, 74, 143, 0.8)), url('../img/IMG_7826.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    text-align: center;
    min-height: 50vh;
}

.about-hero__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
}

.about-hero__subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    max-width: 800px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Company Story */
.company-story {
    padding: 80px 0;
    background: #f8fafb;
}

.company-story__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.company-story__content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.company-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 12px 12px 24px #e8e8e8, -12px -12px 24px #f8f8f8;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 600;
    color: #0060b1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

.company-story__image {
    position: relative;
}

.company-story__img {
    width: 100%;
    height: 360px;
    object-position: top;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 12px 12px 24px #e8e8e8, -12px -12px 24px #f8f8f8;
}

/* Mission & Vision */
.mission-vision {
    padding: 80px 0;
    background: white;
}

.mission-vision__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.mission-card {
    text-align: center;
    padding: 40px 30px;
    background: #f8fafb;
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 12px 12px 24px #e8e8e8, -12px -12px 24px #f8f8f8;
}

.mission-card__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0060b1, #004a8f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.mission-card__title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.mission-card__text {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

/* Team */
.team {
    padding: 80px 0;
    background: #f8fafb;
}

.team__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

@media (max-width: 1200px) {
    .team__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .team__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .team__grid {
        grid-template-columns: 1fr;
    }
}

.team-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 12px 12px 24px #e8e8e8, -12px -12px 24px #f8f8f8;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 12px 12px 24px #e8e8e8, -12px -12px 24px #f8f8f8;
}

.team-card__image {
    position: relative;
    overflow: hidden;
}

.team-card__img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: top;
    transition: transform 0.3s ease;
}

.team-card:hover .team-card__img {
    transform: scale(1.05);
}

.team-card__info {
    padding: 30px;
    text-align: center;
}

.team-card__name {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.team-card__position {
    font-size: 1rem;
    color: #0060b1;
    font-weight: 500;
    margin-bottom: 15px;
}

.team-card__desc,
.team-card__description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    margin-top: 10px;
}

/* Achievements */
.achievements {
    padding: 80px 0;
    background: white;
}

.achievements__slider {
    display: flex;
    overflow-x: auto;
    gap: 30px;
    margin-top: 50px;
    padding: 20px 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.achievements__slider::-webkit-scrollbar {
    height: 8px;
}

.achievements__slider::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.achievements__slider::-webkit-scrollbar-thumb {
    background: #0060b1;
    border-radius: 10px;
}

.achievements__slider::-webkit-scrollbar-thumb:hover {
    background: #004a8f;
}

.achievement-card {
    min-width: 320px;
    max-width: 320px;
    padding: 30px 25px;
    background: #f8fafb;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 6px solid #cee6ff;
    position: relative;
    flex-shrink: 0;
}

.achievement-card:hover {
    transform: translateY(-5px);
    box-shadow: 12px 12px 24px #e8e8e8, -12px -12px 24px #f8f8f8;
}

.achievement-card__year {
    font-size: 1rem;
    font-weight: 700;
    color: #0060b1;
    margin-bottom: 20px;
    text-align: center;
    background: linear-gradient(135deg, #0060b1, #004a8f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.achievement-card__content {
    text-align: left;
}

.achievement-card__desc {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Achievements Navigation */
.achievements__nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.achievements__nav-btn {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, #0060b1, #004a8f);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 12px 12px 24px #e8e8e8, -12px -12px 24px #f8f8f8;
}

.achievements__nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 12px 12px 24px #e8e8e8, -12px -12px 24px #f8f8f8;
    background: linear-gradient(135deg, #004a8f, #003366);
}

.achievements__nav-btn:active {
    transform: translateY(0);
}

.achievements__nav-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: 12px 12px 24px #e8e8e8, -12px -12px 24px #f8f8f8;
}

.achievements__nav-btn.disabled:hover {
    transform: none;
    box-shadow: 12px 12px 24px #e8e8e8, -12px -12px 24px #f8f8f8;
    background: linear-gradient(135deg, #0060b1, #004a8f);
}

/* Slider cursor styles */
.achievements__slider {
    cursor: grab;
}

.achievements__slider:active {
    cursor: grabbing;
}

/* Technologies */
.technologies {
    padding: 80px 0;
    background: #f8fafb;
}

.technologies__categories {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 50px;
}

.tech-category__title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: #333;
}

.tech-list {
    list-style: none;
    padding: 0;
}

.tech-list li {
    padding: 12px 0;
    border-bottom: 1px solid #e0e6ed;
    font-size: 1rem;
    color: #666;
    position: relative;
    padding-left: 25px;
}

.tech-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0060b1;
    font-weight: 600;
}

.tech-list li:last-child {
    border-bottom: none;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0060b1, #004a8f);
    color: white;
    text-align: center;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Active menu link */
.header__menu-link.active,
.mobile-menu__link.active {
    color: #0060b1;
}

.header.scrolled .header__menu-link.active {
    color: #0060b1;
}

/* Partners Page Styles */
.partners-hero {
    background: linear-gradient(135deg, #4a90e2, #0060b1);
    color: white;
    padding: 120px 0;
    text-align: center;
    position: relative;
}

.partners-hero__bg {
    display: none;
}

.partners-hero__content {
    position: relative;
    z-index: 2;
}

.partners-hero__title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.partners-hero__subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    color: white;
}

/* Cities Section */
.partners-cities {
    padding: 80px 0;
    background: #f8fafc;
}



.cities-note {
    text-align: center;
    font-size: 1.1rem;
    color: #4a5568;
    margin-top: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

/* Requirements Section */
.partners-requirements {
    padding: 80px 0;
}

.requirements-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.requirement-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 12px 12px 24px #e8e8e8, -12px -12px 24px #f8f8f8;
    transition: all 0.3s ease;
}

.requirement-item:hover {
    transform: translateY(-3px);
    box-shadow: 12px 12px 24px #e8e8e8, -12px -12px 24px #f8f8f8;
}

.requirement-item__icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #008aff, #004a8f);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.requirement-item__content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2d3748;
}

.requirement-item__content p {
    color: #4a5568;
    line-height: 1.6;
}

/* Work Types Section */
.partners-work-types {
    padding: 80px 0;
    background: #f8fafc;
}

.work-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.work-type-item {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 12px 12px 24px #e8e8e8, -12px -12px 24px #f8f8f8;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.work-type-item:hover {
    transform: translateY(-5px);
    box-shadow: 12px 12px 24px #e8e8e8, -12px -12px 24px #f8f8f8;
    border-color: #667eea;
}

.work-type-item__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #008aff, #004a8f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.work-type-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2d3748;
}

.work-type-item p {
    color: #4a5568;
    line-height: 1.6;
}

.work-types-note {
    text-align: center;
    font-size: 1.1rem;
    color: #4a5568;
    margin-top: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

/* Tools Section */
.partners-tools {
    padding: 80px 0;
}

.tools-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 3rem 0;
    justify-content: center;
}

.tool-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    color: #2d3748;
    box-shadow: 12px 12px 24px #e8e8e8, -12px -12px 24px #f8f8f8;
    transition: all 0.3s ease;
    border: 2px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.tool-item i {
    font-size: 2rem;
    color: #008aff;
    transition: color 0.3s ease;
}

.tool-item span {
    font-size: 1rem;
    line-height: 1.4;
}

.tool-item:hover {
    transform: translateY(-3px);
    box-shadow: 12px 12px 24px #e8e8e8, -12px -12px 24px #f8f8f8;
    border-color: #008aff;
    background: linear-gradient(135deg, #008aff, #004a8f);
    color: white;
}

.tool-item:hover i {
    color: white;
}

.tools-note {
    text-align: center;
    font-size: 1.1rem;
    color: white;
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #008aff, #004a8f);
    border-radius: 8px;
    font-weight: 500;
    box-shadow: 12px 12px 24px #e8e8e8, -12px -12px 24px #f8f8f8;
}

/* Terms Section */
.partners-terms {
    padding: 80px 0;
    background: #f8fafc;
}

.terms-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.terms-block {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 12px 12px 24px #e8e8e8, -12px -12px 24px #f8f8f8;
    transition: all 0.3s ease;
}

.terms-block:hover {
    transform: translateY(-3px);
    box-shadow: 12px 12px 24px #e8e8e8, -12px -12px 24px #f8f8f8;
}

.terms-block__title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #2d3748;
    border-bottom: 2px solid #667eea;
    padding-bottom: 0.5rem;
}

.terms-block__list {
    list-style: none;
    padding: 0;
}

.terms-block__list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
    padding-left: 2rem;
}

.terms-block__list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

.terms-block__list li:last-child {
    border-bottom: none;
}

.terms-subblock {
    margin-top: 2rem;
}

.terms-subblock h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #4a5568;
}

.terms-subblock ul {
    list-style: none;
    padding: 0;
    margin-left: 1rem;
}

.terms-subblock ul li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    border: none;
}

.terms-subblock ul li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #667eea;
}

/* Partners CTA */
.partners-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #008aff 0%, #004a8f 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.partners-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/hero-pattern.svg') no-repeat center center;
    background-size: cover;
    opacity: 0.1;
    z-index: 1;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Partner Form */
.partner-form-section {
    padding: 80px 0;
}

.partner-form {
    max-width: 800px;
    margin: 3rem auto 0;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 12px 12px 24px #e8e8e8, -12px -12px 24px #f8f8f8;
}

.partner-form__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.form__group--full {
    grid-column: 1 / -1;
}

.form__label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #2d3748;
}

.form__input,
.form__textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form__input:focus,
.form__textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 12px 12px 24px #e8e8e8, -12px -12px 24px #f8f8f8;
}

.form__textarea {
    resize: vertical;
    min-height: 120px;
}

.form__submit-wrapper {
    text-align: center;
    margin-top: 2rem;
}

/* Partners Contact */
.partners-contact {
    padding: 80px 0;
    background: #f8fafc;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;

}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 12px 12px 24px #e8e8e8, -12px -12px 24px #f8f8f8;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 12px 12px 24px #e8e8e8, -12px -12px 24px #f8f8f8;
}

.contact-item__icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #008aff, #004a8f);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-item__content {
    flex: 1;
}

.contact-item__label {
    display: block;
    font-size: 0.9rem;
    color: #4a5568;
    margin-bottom: 0.25rem;
}

.contact-item__value {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d3748;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item__value:hover {
    color: #667eea;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .price {
        margin-left: 10px;
    }

    .about-hero {
        padding: 100px 0 60px;
    }

    .company-story__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .company-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .mission-vision__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .team__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .achievements__slider {
        gap: 20px;
        padding: 10px 0;
    }

    .achievement-card {
        min-width: 280px;
        max-width: 280px;
        padding: 25px 20px;
    }

    .achievement-card__year {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .achievement-card__desc {
        font-size: 0.9rem;
    }

    .achievements__nav {
        margin-top: 20px;
        gap: 10px;
    }

    .achievements__nav-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .technologies__categories {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-actions .btn {
        width: 100%;
        max-width: 300px;
    }

    /* Services Page Mobile Responsive */
    .services-hero__title {
        font-size: 2rem;
    }

    .services-overview__title,
    .target-companies__title,
    .benefits-icons__title {
        font-size: 2rem;
    }

    .services-grid__items {
        grid-template-columns: 1fr;
    }

    .target-companies__grid {
        grid-template-columns: 1fr;
    }

    .benefits-icons__grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    /* Partners Page Mobile Responsive */
    .partners-hero {
        padding: 40px 0;
    }

    .partners-hero__title {
        font-size: 2.5rem;
    }



    .requirements-content {
        grid-template-columns: 1fr;
    }

    .work-types-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .tools-grid {
        flex-direction: column;
        align-items: center;
    }

    .tool-item {
        width: 100%;
        max-width: 300px;
    }

    .terms-content {
        grid-template-columns: 1fr;
    }

    .partner-form {
        padding: 2rem 1.5rem;
        margin: 2rem 1rem 0;
    }

    .partner-form__grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .cta-title {
        font-size: 2rem;
    }

    .partners-cities,
    .partners-requirements,
    .partners-work-types,
    .partners-tools,
    .partners-terms,
    .partners-cta,
    .partner-form-section,
    .partners-contact {
        padding: 60px 0;
    }

    /* Solution Page Mobile Responsive */
    .solution-hero {
        padding: 100px 0 60px;
        min-height: 60vh;
    }

    .solution-hero--videoanalytics {
        padding: 160px 0 60px;
        min-height: 60vh;
    }

    .solution-hero__content {
        margin-top: 180px;
    }

    .solution-hero__title {
        font-size: 2rem;
    }

    .solution-detail__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .solution-detail__img {
        height: 300px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .order-form__form .form-grid {
        grid-template-columns: 1fr;
    }
}

/* Solution Detail Styles */
.solution-detail {
    padding: 80px 0 20px;
    background: #f8fafc;
}

.solution-detail__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.solution-detail__media {
    position: relative;
}

.solution-detail__img {
    width: 100%;
    height: 460px;
    margin-top: 10px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 12px 12px 24px #e8e8e8, -12px -12px 24px #f8f8f8;
    transition: transform 0.3s ease;
}

.solution-detail__img:hover {
    transform: scale(1.02);
}

.solution-detail__content {
    padding: 0 0 2rem 0;
}

.solution-detail__title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1a202c;
    line-height: 1.3;
}

.solution-detail__text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 2.5rem;
}

.solution-features {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 12px 12px 24px #e8e8e8, -12px -12px 24px #f8f8f8;
}

.solution-features h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.solution-features__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.solution-features__list li {
    padding: 0.75rem 0;
    color: #2d3748;
    position: relative;
    padding-left: 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.solution-features__list li:last-child {
    border-bottom: none;
}

.solution-features__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0060b1;
    font-weight: bold;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .solution-detail {
        padding: 60px 0 20px;
    }

    .solution-detail__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .solution-detail__img {
        height: 300px;
        margin-top: 0;
    }

    .solution-detail__title {
        font-size: 2rem;
        margin-bottom: 1.25rem;
    }

    .solution-detail__text {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .solution-features {
        padding: 1.25rem;
    }
}

/* Additional Content */
.additional-content {
    padding: 60px 0;
    background: #fff;
}

.additional-content__text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

.additional-content__text h2,
.additional-content__text h3,
.additional-content__text h4 {
    margin-bottom: 20px;
    color: #2c3e50;
}

.additional-content__text p {
    margin-bottom: 15px;
}

.additional-content__text ul,
.additional-content__text ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.additional-content__text li {
    margin-bottom: 8px;
}

/* Solution Benefits */
.solution-benefits {
    padding: 80px 0;
    background: #f8f9fa;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: #f8fafc;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #0060b1, #3c98e7);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 12px 12px 24px #e8e8e8, -12px -12px 24px #f8f8f8;
    background: white;
}

.benefit-card__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #0060b1, #004a8f);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: transform 0.3s ease;
}

.benefit-card__icon i {
    font-size: 32px;
}

.benefit-card:hover .benefit-card__icon {
    transform: scale(1.1);
}

.benefit-card__title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a202c;
}

.benefit-card__description {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a5568;
    margin: 0;
}

.benefit-card__description ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.benefit-card__description ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: flex-start;
}

.benefit-card__description ul li::before {
    content: '•';
    color: #0060b1;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
    line-height: 1.6;
    font-size: 1rem;
}

/* Order Form Styles */
.order-form {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.order-form__content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.order-form__title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a202c;
}

.order-form__subtitle {
    font-size: 1.125rem;
    color: #4a5568;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.order-form__form {
    background: white;
    padding: 3rem;
    border-radius: 20px;

    box-shadow: 12px 12px 24px #e8e8e8, -12px -12px 24px #f8f8f8;
    text-align: left;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    background: #f8fafc;
    font-family: inherit;
    font-size: 16px;
    color: #333;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #0060b1;
    background: white;
    box-shadow: 12px 12px 24px #e8e8e8, -12px -12px 24px #f8f8f8;
}

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

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #4a5568;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #e2e8f0;
    border-radius: 4px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked+.checkbox-custom {
    background: #0060b1;
    border-color: #0060b1;
}

.checkbox-label input[type="checkbox"]:checked+.checkbox-custom::after {
    content: '✓';
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.checkbox-label a {
    color: #0060b1;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.btn--full {
    width: 100%;
}



/* Industry page specific styles - 3 items per row */
.page-template-template-industries .benefits-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 2rem;
}

@media (max-width: 1200px) {
    .page-template-template-industries .benefits-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .page-template-template-industries .benefits-grid {
        grid-template-columns: 1fr !important;
        gap: 1.25rem;
    }
}

/* JavaScript function for smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Cases - Additional Elements */
.case-card__results {
    margin: 1rem 0;
}

.case-card__result {
    color: #333;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 500;

    display: list-item;
    margin-right: 0.5rem;
    list-style-type: disc;
    margin-left: 1.5rem;
}

.case-card__solutions {
    padding: 0 1rem 3rem;
    border-radius: 8px;
    padding-top: 0.5rem;
    margin-bottom: 3px;
}

.single-cases .case-card__solutions {
    background-color: #f0f3f5;
}

.case-overview__info {
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.single-cases .case-overview__info .case-card__solutions {
    margin-top: auto;
}

.case-card__solutions-label {
    font-weight: 600;
    color: #333;
    margin-right: 0.5rem;
    font-size: 1.75rem;
}

.case-card__solution-tag {
    background: rgb(240 240 240);
    color: #0060b1;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-right: 0.5rem;
    margin-bottom: 0.25rem;
    display: inline-block;
    transition: all 0.3s ease;
}



.case-card__solution-tag:hover {
    background: #0056b3;
    transform: translateY(-1px);
}

.cases__empty {
    text-align: center;
    padding: 3rem 0;
    color: #666;
    font-size: 1.125rem;
}

/* Responsive adjustments for case cards */
@media (max-width: 768px) {
    .case-card__solutions {
        padding: 0.75rem;
    }

    .case-card__result {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
        margin-bottom: 0.4rem;
        margin-left: 1.2rem;
    }

    .case-card__solution-tag {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }
}

/* Single Case Page Styles */
.case-hero {
    padding: 9rem 0 6rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.case-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 96, 177, 0.7), rgba(0, 74, 143, 0.9));

}

.case-hero__content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.case-hero__logo {
    margin-bottom: 2rem;
}

.case-hero__logo-img {
    max-height: 80px;
    width: auto;
}

.case-hero__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.case-hero__description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.case-hero__solutions {
    margin-top: 2rem;
}

.case-hero__solutions-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.case-hero__solutions-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.case-hero__solution-link {
    background: #007bff;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.case-hero__solution-link:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 12px 12px 24px #e8e8e8, -12px -12px 24px #f8f8f8;
}

.case-hero__image {
    margin-top: 3rem;
    text-align: center;
}

.case-hero__img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 12px 12px 24px #e8e8e8, -12px -12px 24px #f8f8f8;
}

/* Case Overview Tasks under image */
.case-overview__tasks {
    margin-top: 1.5rem;
    background: #f0f3f5;
    border-radius: 12px;
    padding: 1.5rem;
}

.case-overview__tasks-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 0.75rem 0;
}

.case-overview__tasks-intro {
    color: #555;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.case-overview__tasks-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.case-overview__tasks-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 1.1rem;
}

.case-overview__tasks-list i {
    color: #005fae;
    font-size: 1.25rem;
    line-height: 1;
    margin-top: 6px;
}

.case-overview__tasks-list span {
    color: #333;
    line-height: 1.6;
}

/* Project Implementation block */
.project-implementation {

    background: #fff;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.project-implementation__title {
    font-size: 1.75rem;
    font-weight: 600;
    margin: 0 0 0.75rem 0;
}

.project-implementation__intro {
    color: #555;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.project-implementation__product {
    color: #005fae;

}

.project-implementation__kpi {
    display: grid;
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    gap: 1rem;
    margin: 1rem 0 1.25rem 0;
}

.kpi-card {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    text-align: center;
}

.kpi-card__label {
    color: #666;
}

.kpi-card__value {
    font-size: 1.75rem;
    font-weight: 800;
    color: #005fae;
}

.project-implementation__subtitle {
    font-weight: 600;

}

.project-implementation__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.5rem;
}

.project-implementation__list li {
    position: relative;
    padding-left: 1.5rem;
    color: #333;
    font-size: 1.1rem;
}

.project-implementation__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 8px;
    height: 8px;
    background: #005fae;
    border-radius: 50%;
}

@media (max-width: 768px) {
    .project-implementation__kpi {
        grid-template-columns: 1fr;
    }
}

.case-results {
    padding: 4rem 0;
    background: white;
}

.case-results__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.case-results__item {
    background: linear-gradient(135deg, #0060b1, #004a8f);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 12px 12px 24px #e8e8e8, -12px -12px 24px #f8f8f8;
    transition: transform 0.3s ease;
}

.case-results__item:hover {
    transform: translateY(-5px);
}

.case-results__metric {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
}

.case-results--v2 {
    background: transparent;
    padding: 4rem 0;
}

.case-results--v2 .case-results__panel {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    padding: 48px 48px 40px;
    background: linear-gradient(135deg, #0069c4 0%, #005fae 40%, #003c73 100%);
    color: #fff;
}

.case-results--v2 .case-results__panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(800px 400px at 20% 30%, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 60%),
        radial-gradient(700px 500px at 85% 45%, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0) 62%);
    pointer-events: none;
}

.case-results--v2 .case-results__panel>* {
    position: relative;
}

.case-results--v2 .case-results__title {
    margin: 0;
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.case-results--v2 .case-results__cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    margin-top: 28px;
}

.case-results--v2 .case-results-card {
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 20px;
    padding: 12px 22px 20px;
    background: rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(6px);
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.case-results--v2 .case-results-card__value {
    font-size: 50px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.02em;
}

.case-results--v2 .case-results-card__text {
    margin-top: 10px;
    font-size: 20px;
    line-height: 1.35;
    opacity: 0.95;
}

.case-results--v2 .case-results__divider {

    background: rgba(255, 255, 255, 0.25);
    margin: 30px 0;
}

.case-results--v2 .case-results__subtitle {
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 20px;
    opacity: 0.98;
}

.case-results--v2 .case-results__violations {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 24px;
}

.case-results--v2 .case-results-violation {
    text-align: center;
}

.case-results--v2 .case-results-violation__icon {
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.case-results--v2 .case-results-violation__icon i {
    font-size: 44px;
    color: #fff;
    opacity: 0.95;
}

.case-results--v2 .case-results-violation__label {
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.25;
    opacity: 0.95;
}

.case-results--v2 .case-results-violation__value {
    margin-top: 10px;
    font-size: 34px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.01em;
}

@media (max-width: 1024px) {
    .case-results--v2 .case-results__panel {
        padding: 36px 28px 30px;
    }

    .case-results--v2 .case-results__title {
        font-size: 34px;
    }

    .case-results--v2 .case-results__cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .case-results--v2 .case-results__violations {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .case-results--v2 .case-results-card__value {
        font-size: 46px;
    }

    .case-results--v2 .case-results-violation__value {
        font-size: 30px;
    }
}

@media (max-width: 520px) {
    .case-results--v2 .case-results__violations {
        grid-template-columns: 1fr;
    }
}

.case-content {
    padding: 4rem 0;
    background: #f8f9fa;
}

.case-content__wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.case-content__main {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 12px 12px 24px #e8e8e8, -12px -12px 24px #f8f8f8;
    line-height: 1.7;
}

.case-content__main h2,
.case-content__main h3,
.case-content__main h4 {
    color: #333;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.case-content__main p {
    margin-bottom: 1.5rem;
    color: #555;
}

.case-related-solutions {
    padding: 4rem 0;
    background: white;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.solution-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 12px 12px 24px #e8e8e8, -12px -12px 24px #f8f8f8;
    transition: transform 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-5px);
}

.solution-card__image {
    height: 200px;
    overflow: hidden;
}

.solution-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.solution-card__content {
    padding: 1.5rem;
}

.solution-card__title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.solution-card__excerpt {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Case Testimonial */
.case-testimonial {
    padding: 3rem 0;
    background: white;
}

.case-testimonial__grid {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.case-testimonial__left {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 0 1 33.333%;
    max-width: 33.333%;
}

.case-testimonial__photo {
    width: 124px;
    height: 124px;
    border-radius: 50%;
    object-fit: cover;
}

.case-testimonial__text {
    font-style: normal;
}

.case-testimonial__meta {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.case-testimonial__position {
    color: #666;
    font-size: 1.1rem;
}

.case-testimonial__name {
    font-weight: 700;
    color: #000;
}

.case-testimonial__quote {
    flex: 0 1 66.666%;
    max-width: 66.666%;
}

.case-testimonial__text {
    margin: 0;
    font-size: 1.125rem;
    line-height: 1.7;
    color: #333;
}

@media (max-width: 768px) {
    .case-testimonial__grid {
        flex-direction: column;
        gap: 1.25rem;
    }

    .case-overview__tasks-list {
        grid-template-columns: 1fr;
    }
}

.case-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0060b1 0%, #004a8f 100%);
    color: white;
    text-align: center;
}

.case-cta__title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.case-cta__description {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: white;
    opacity: 0.9;
}

.case-cta__btn {
    background: white;
    color: #0060b1;
    border: none;
}

.case-cta__btn:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

/* Responsive adjustments for single case */
@media (max-width: 768px) {
    .case-hero__title {
        font-size: 2rem;
    }

    .case-hero__description {
        font-size: 1.125rem;
    }

    .case-hero__solutions-list {
        flex-direction: column;
        align-items: center;
    }

    .case-content__main {
        padding: 2rem;
    }

    .case-results__grid,
    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .case-cta__title {
        font-size: 1.75rem;
    }
}

/* Новые блоки для single-solutions.php */

/* Блок "Решение актуально для компании, если:" */
.solution-relevant-for {
    padding: 60px 0;
    background: #f8f9fa;
}

.relevant-for-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.relevant-for-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 12px 12px 24px #e8e8e8, -12px -12px 24px #f8f8f8;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.relevant-for-item:hover {
    transform: translateY(-5px);
    box-shadow: 12px 12px 24px #e8e8e8, -12px -12px 24px #f8f8f8;
}

.relevant-for-item__number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0060b1, #004a8f);

    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.25rem;
}

.relevant-for-item__content p {
    margin: 0;
    line-height: 1.6;
    color: #333;
}

/* Блок "Что вы получите от внедрения продукта" */
.solution-implementation-benefits {
    padding: 80px 0;
    background: white;
}

.implementation-tabs {
    margin-top: 3rem;
}

.tabs-nav {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid #e9ecef;
    flex-wrap: wrap;
}

.tab-btn {
    background: none;
    border: none;
    padding: 1rem 1rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.tab-btn:hover {
    color: #008aff;
}

.tab-btn.active {
    color: #005fae;
    border-bottom-color: #005fae;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.tab-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.tab-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
}

.tab-item:hover {}

.tab-item__icon {
    margin-bottom: 1.5rem;
}

.tab-item__icon i {
    font-size: 2.5rem;
    color: #008aff;
}

.tab-item__text p {
    margin: 0;
    line-height: 1.6;
    color: #333;
}

/* Блок "Цели и контролируемые параметры" */
.solution-goals-parameters {
    padding: 80px 0;
    background: #f8f9fa;
}

.goals-parameters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.goal-parameter-item {
    background: #005fae;
    color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.goal-parameter-item:hover {
    transform: translateY(-5px);
    box-shadow: 12px 12px 24px #e8e8e8, -12px -12px 24px #f8f8f8;
}

.goal-parameter-item p {
    margin: 0;
    line-height: 1.6;
    font-weight: 500;
    color: #fff;
}

/* Адаптивность для новых блоков */
@media (max-width: 768px) {

    .solution-relevant-for,
    .solution-implementation-benefits,
    .solution-goals-parameters {
        padding: 60px 0;
    }

    .relevant-for-grid,
    .tab-items-grid,
    .goals-parameters-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .relevant-for-item {
        padding: 1.5rem;
        gap: 1rem;
    }

    .relevant-for-item__number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .tabs-nav {
        justify-content: center;
    }

    .tab-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .tab-item,
    .goal-parameter-item {
        padding: 1.5rem;
    }

    .tab-item__icon i {
        font-size: 2rem;
    }
}

.soglas {
    font-size: .9rem;
    color: #666;
}

.soglas a {
    text-decoration: underline;
    color: #004a8f;
}

/* Slick Dots - Instagram Stories Style */
.slick-dots {
    display: flex !important;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    padding: 0;
    list-style: none;
    gap: 8px;
}

.slick-dots li {
    margin: 0;
    padding: 0;
    width: auto;
    height: auto;
}

.slick-dots li button {
    width: 60px;
    height: 3px;
    padding: 0;
    border: none;
    border-radius: 1px;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0;
    line-height: 0;
    display: block;
    outline: none;
}

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

.slick-dots li.slick-active button {
    background: #0060b1;
    transform: scaleY(1.2);
}

.slick-dots li button:hover {
    background: rgba(0, 96, 177, 0.7);
    transform: scaleY(1.1);
}

/* Mobile styles for dots */
@media (max-width: 768px) {
    .slick-dots {
        margin-top: 20px;
        gap: 6px;
    }

    .slick-dots li button {
        width: 40px;
        height: 2px;
    }

    .case-testimonial__quote {
        flex: 0 1 100%;
        max-width: 100%;
    }

    .case-testimonial__left {
        flex: 0 1 100%;
        max-width: 100%;
    }
}

/* Cities Grid Styles */
.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.city-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.city-item:hover {
    border-color: #0060b1;
    transform: translateY(-2px);
    box-shadow: 12px 12px 24px #e8e8e8, -12px -12px 24px #f8f8f8;
}

.city-item i {
    color: #0060b1;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.city-item span {
    font-size: 1rem;
    font-weight: 500;
    color: #2d3748;
}

.city-item:hover span {
    color: #0060b1;
}

/* Mobile styles for cities */
@media (max-width: 768px) {
    .cities-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }

    .city-item {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }

    .city-item i {
        font-size: 1rem;
    }

    .city-item span {
        font-size: 0.9rem;
    }
}

/* ========================================
   PURE CSS DROPDOWN MENU (NO JAVASCRIPT)
   ======================================== */

/* Minimal parent menu styles for proper dropdown positioning */
.header__menu-item {
    position: relative;
}

/* Dropdown menu styles */
.sub-menu {
    position: absolute;
    top: 120%;
    left: 0;
    min-width: 250px;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
    margin: 0;
    padding: 0.5rem 0;
}

/* Show dropdown on hover */
.header__menu-item:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Dropdown menu items */
.sub-menu .header__menu-item {
    display: block;
    width: 100%;
}

.sub-menu .header__menu-link {
    padding: 0.75rem 1.5rem;
    border-bottom: none;
    color: #000 !important;
    font-size: 0.95rem;
    display: inline-block;
}

.sub-menu .header__menu-link,
.sub-menu .header__menu-link:link,
.sub-menu .header__menu-link:visited,
.sub-menu .header__menu-link:active,
.sub-menu .header__menu-link:focus {
    color: #000 !important;
}

.sub-menu .header__menu-link:hover {
    background-color: #f8f9fa;
    color: #000 !important;
}

.header.at-top .sub-menu .header__menu-link {
    color: #000 !important;
}

.header.at-top .sub-menu .header__menu-link:hover {
    color: #000 !important;
}

.header.at-top .sub-menu .header__menu-link,
.header.at-top .sub-menu .header__menu-link:link,
.header.at-top .sub-menu .header__menu-link:visited,
.header.at-top .sub-menu .header__menu-link:active,
.header.at-top .sub-menu .header__menu-link:focus {
    color: #000 !important;
}

.sub-menu :hover::after {
    width: 0;
}

/* Multi-level dropdown support */
.sub-menu .header__menu-item {
    position: relative;
}

.sub-menu .sub-menu {
    top: 0;
    left: 100%;
    margin-left: -1px;
}

/* Mobile responsive styles - only for dropdowns */
@media (max-width: 768px) {
    .sub-menu {
        display: none;
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        border-radius: 0;
        background: #f8f9fa;
        margin-left: 1rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .header__menu-item:hover>.sub-menu,
    .header__menu-item:focus-within>.sub-menu {
        max-height: 500px;
    }

    .sub-menu .sub-menu {
        margin-left: 2rem;
    }

    .sub-menu .header__menu-link {
        padding: 0.5rem 1rem;
    }
}

/* Compliance Page Styles */
.compliance-content {
    padding: 40px 0 80px;
    background: white;
}

.compliance-content__container {
    max-width: 900px;
    margin: 0 auto;
}

.compliance-content h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1a202c;
    border-bottom: 3px solid #0060b1;
    padding-bottom: 0.5rem;
}

.compliance-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
    color: #2d3748;
}

.compliance-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #4a5568;
}

.compliance-content ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.compliance-content li {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
    color: #4a5568;
}

.compliance-content strong {
    color: #1a202c;
    font-weight: 600;
}

.compliance-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: #f8fafb;
    border-radius: 12px;
    border-left: 4px solid #0060b1;
}

.compliance-section:last-child {
    margin-bottom: 0;
}

.compliance-highlight {
    background: #e6f3ff;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #0060b1;
    margin: 2rem 0;
}

.compliance-highlight p {
    margin-bottom: 0;
    font-weight: 500;
    color: #1a202c;
}

@media (max-width: 768px) {
    .compliance-content {
        padding: 60px 0;
    }

    .compliance-content__container {
        padding: 0 20px;
    }

    .compliance-content h2 {
        font-size: 1.75rem;
    }

    .compliance-content h3 {
        font-size: 1.25rem;
    }

    .compliance-content p,
    .compliance-content li {
        font-size: 1rem;
    }

    .compliance-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
}

/* WordPress Caption and Alignment Classes */
.wp-caption {
    max-width: 100%;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 8px;
    margin: 10px 0;
    text-align: center;
}

.wp-caption img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.wp-caption-text {
    font-size: 0.9rem;
    color: #666;
    margin: 8px 0 0 0;
    padding: 0 8px;
    line-height: 1.4;
    font-style: italic;
}

.alignleft {
    float: left;
    margin: 0 20px 20px 0;
    clear: left;
}

.alignright {
    float: right;
    margin: 0 0 20px 20px;
    clear: right;
}

.aligncenter {
    display: block;
    margin: 20px auto;
    clear: both;
}

.alignnone {
    margin: 20px 0;
    clear: both;
}

/* Responsive adjustments for alignment classes */
@media (max-width: 768px) {

    .alignleft,
    .alignright {
        float: none;
        display: block;
        margin: 20px auto;
        text-align: center;
    }

    .wp-caption {
        margin: 15px 0;
    }
}

/* IT Services Template Styles */
.it-services-hero {
    background: linear-gradient(135deg, rgba(0, 96, 177, 0.9), rgba(0, 74, 143, 0.9)), url('../img/bdd-head-min.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 0 80px;
    color: white;
    text-align: center;
    min-height: 50vh;
}

.it-services-hero__content {
    max-width: 800px;
    margin: 0 auto;
}

.it-services-hero__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
}

.it-services-hero__subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.it-services-hero__description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

.registry-info {
    background: #f8f9fa;
    padding: 5rem 0 2rem;
    text-align: center;
}

.registry-info__text {
    font-weight: bold;
    color: #2f3a4b;
    font-size: 1.1rem;
}

.maintenance-services {
    padding: 4rem 0;
}

.maintenance-services__title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 3rem;
    text-align: center;
    color: #2f3a4b;
}

.maintenance-services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 12px 12px 24px #e8e8e8, -12px -12px 24px #f8f8f8;
    transition: transform 0.3s ease;
    box-shadow: 12px 12px 24px #e8e8e8, -12px -12px 24px #f8f8f8;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-item__title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #2f3a4b;
}

.service-item__description {
    line-height: 1.6;
    color: #666;
}

.maintenance-services__contact {
    text-align: center;
    margin-top: 3rem;
}

.maintenance-services__contact a {
    color: #007bff;
    text-decoration: none;
}

.maintenance-services__contact a:hover {
    text-decoration: underline;
}

.software-section {
    background: #f8f9fa;
    padding: 4rem 0;
}

.software-section__title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-align: center;
    color: #2f3a4b;
}

.software-section__subtitle {
    text-align: center;
    margin-bottom: 3rem;
    color: #666;
    font-size: 1.1rem;
}

.software-table {
    max-width: 800px;
    margin: 0 auto;
}

.software-table__table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 12px 12px 24px #e8e8e8, -12px -12px 24px #f8f8f8;
}

.software-table__table th,
.software-table__table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.software-table__table th {
    background: #2f3a4b;
    color: white;
    font-weight: bold;
}

.software-table__table tr:last-child td {
    border-bottom: none;
}

.support-services {
    padding: 4rem 0;
}

.support-services__title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 3rem;
    text-align: center;
    color: #2f3a4b;
}

.support-services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.support-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 12px 12px 24px #e8e8e8, -12px -12px 24px #f8f8f8;
    text-align: center;
    transition: transform 0.3s ease;
}

.support-item:hover {
    transform: translateY(-5px);
}

.support-item__title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #2f3a4b;
}

.custom-development {
    background: #f8f9fa;
    padding: 4rem 0;
}

.custom-development__title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 3rem;
    text-align: center;
    color: #2f3a4b;
}

.custom-development__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.development-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 12px 12px 24px #e8e8e8, -12px -12px 24px #f8f8f8;
    box-shadow: 12px 12px 24px #e8e8e8, -12px -12px 24px #f8f8f8;
    text-align: center;
    transition: transform 0.3s ease;
}

.development-item:hover {
    transform: translateY(-5px);
}

.development-item__title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #2f3a4b;
}

.tools-section {
    padding: 4rem 0;
}

.tools-section__title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 3rem;
    text-align: center;
    color: #2f3a4b;
}

.tools-section__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.tools-category__title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #2f3a4b;
}

.tools-category__list {
    list-style: none;
    padding: 0;
}

.tools-category__list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    color: #666;
}

.tools-category__list li:last-child {
    border-bottom: none;
}



.installation-centers {
    background: linear-gradient(135deg, #2f3a4b, #737e91);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.installation-centers__content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.installation-centers__number {
    font-size: 4rem;
    font-weight: bold;
}

.installation-centers__text {
    font-size: 1.5rem;
    line-height: 1.4;
}

.it-services-cta {
    padding: 4rem 0;
    text-align: center;
}

.it-services-cta__title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #2f3a4b;
}

.it-services-cta__description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #666;
}

/* Responsive styles for IT services */
@media (max-width: 768px) {
    .it-services-hero__title {
        font-size: 2rem;
    }

    .maintenance-services__grid,
    .support-services__grid,
    .custom-development__grid {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        flex-direction: row !important;
        padding-left: 60px;
    }

    .timeline-year {
        position: absolute;
        left: 0;
        min-width: 60px;
        font-size: 0.9rem;
    }

    .timeline-content {
        margin: 0;
        margin-left: 1rem;
        max-width: none;
    }

    .installation-centers__content {
        flex-direction: column;
        gap: 1rem;
    }

    .installation-centers__number {
        font-size: 3rem;
    }

    .software-table {
        overflow-x: auto;
    }
}

/* Software & Hardware Section */
.software-hardware {
    padding: 120px 0;
    background: #f8f9fa;
}

.software-hardware__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.software-hardware__column {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 95, 174, 0.1);
    border: 1px solid #e8ecf0;
}

.software-hardware__title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2f3a4b;
    margin-bottom: 30px;
    text-align: center;
}

.software-hardware__item {
    display: flex;
    align-items: center;
    gap: 20px;

    padding: 15px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.software-hardware__item:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

.software-hardware__icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #005fae;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 95, 174, 0.2);
}

.software-hardware__icon svg {
    width: 32px;
    height: 32px;
}

.software-hardware__content {
    flex: 1;
}

.software-hardware__item-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2f3a4b;
    margin: 0;
    line-height: 1.4;
}

.software-hardware__link {
    margin-top: 30px;
    text-align: center;
}

.software-hardware__download-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #005fae;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 12px 24px;
    border-radius: 8px;
    border: 2px solid #005fae;
    background: transparent;
}

.software-hardware__download-link:hover {
    background: #005fae;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 95, 174, 0.3);
}

.software-hardware__download-link span {
    transition: transform 0.3s ease;
}

.software-hardware__download-link:hover span {
    transform: translateX(4px);
}

/* Responsive styles for Software & Hardware */
@media (max-width: 768px) {
    .software-hardware {
        padding: 60px 0;
    }

    .software-hardware__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .software-hardware__column {
        padding: 30px 20px;
    }

    .software-hardware__title {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }

    .software-hardware__item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px 15px;
    }

    .software-hardware__icon {
        width: 50px;
        height: 50px;
    }

    .software-hardware__icon svg {
        width: 28px;
        height: 28px;
    }

    .software-hardware__item-title {
        font-size: 1rem;
    }

    .software-hardware__download-link {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
}

/* Downloads Page Styles */
.downloads-hero {
    background: linear-gradient(135deg, #005fae 0%, #4a90e2 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.downloads-hero__title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.downloads-hero__subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.downloads-content {
    padding: 80px 0;
    background: #f8f9fa;
}

.downloads-category {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.downloads-category:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12);
}

.downloads-category__header {
    background: linear-gradient(135deg, #005fae 0%, #4a90e2 100%);
    color: white;
    padding: 30px;
    text-align: center;
}

.downloads-category__title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
}

.downloads-category__description {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.6;
    margin: 0;
}

.downloads-category__files {
    padding: 40px;
}

.downloads-file {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    background: white;
}

.downloads-file:last-child {
    margin-bottom: 0;
}

.downloads-file:hover {
    border-color: #005fae;
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 95, 174, 0.1);
}

.downloads-file__icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #005fae 0%, #4a90e2 100%);
    border-radius: 12px;
    color: white;
    font-size: 24px;
    font-weight: bold;
}

.downloads-file__icon--pdf {
    background: linear-gradient(135deg, #dc3545 0%, #e74c3c 100%);
}

.downloads-file__icon--exe {
    background: linear-gradient(135deg, #28a745 0%, #2ecc71 100%);
}

.downloads-file__icon--zip {
    background: linear-gradient(135deg, #ffc107 0%, #f39c12 100%);
    color: #333;
}

.downloads-file__icon--doc {
    background: linear-gradient(135deg, #007bff 0%, #3498db 100%);
}

.downloads-file__content {
    flex: 1;
    min-width: 0;
}

.downloads-file__title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2f3a4b;
    margin-bottom: 8px;
    line-height: 1.4;
}

.downloads-file__description {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 12px;
    line-height: 1.5;
}

.downloads-file__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.9rem;
    color: #6c757d;
}

.downloads-file__meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.downloads-file__meta-item strong {
    color: #2f3a4b;
}

.downloads-file__download {
    flex-shrink: 0;
    margin-left: 20px;
}

.downloads-file__download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #005fae 0%, #4a90e2 100%);
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.downloads-file__download-btn:hover {
    background: linear-gradient(135deg, #004a8f 0%, #3a7bc8 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 95, 174, 0.3);
    color: white;
    text-decoration: none;
}

.downloads-file__download-btn svg {
    width: 16px;
    height: 16px;
}

.downloads-instructions {
    background: white;
    padding: 60px 0;
    text-align: center;
}

.downloads-instructions__title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2f3a4b;
    margin-bottom: 30px;
    line-height: 1.3;
}

.downloads-instructions__content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.7;
}

.downloads-instructions__content p {
    margin-bottom: 20px;
}

.downloads-instructions__content ul {
    text-align: left;
    margin: 30px 0;
    padding-left: 20px;
}

.downloads-instructions__content li {
    margin-bottom: 10px;
    color: #495057;
}

/* Responsive Design */
@media (max-width: 768px) {
    .downloads-hero {
        padding: 60px 0;
    }

    .downloads-hero__title {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }

    .downloads-hero__subtitle {
        font-size: 1.1rem;
        padding: 0 20px;
    }

    .downloads-content {
        padding: 60px 0;
    }

    .downloads-category__header {
        padding: 25px 20px;
    }

    .downloads-category__title {
        font-size: 1.5rem;
    }

    .downloads-category__files {
        padding: 30px 20px;
    }

    .downloads-file {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px;
    }

    .downloads-file__download {
        margin-left: 0;
        margin-top: 10px;
    }

    .downloads-file__meta {
        justify-content: center;
        gap: 10px;
    }

    .downloads-instructions {
        padding: 50px 0;
    }

    .downloads-instructions__title {
        font-size: 1.8rem;
        margin-bottom: 25px;
        padding: 0 20px;
    }

    .downloads-instructions__content {
        padding: 0 20px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .downloads-hero__title {
        font-size: 1.8rem;
    }

    .downloads-hero__subtitle {
        font-size: 1rem;
    }

    .downloads-category__title {
        font-size: 1.3rem;
    }

    .downloads-file__title {
        font-size: 1.1rem;
    }

    .downloads-file__download-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .downloads-instructions__title {
        font-size: 1.6rem;
    }
}

/* Downloads Search Styles */
.downloads-search {
    background: white;
    padding: 30px 0;
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 40px;
}

.downloads-search__wrapper {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.downloads-search__input {
    width: 100%;
    padding: 15px 50px 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.downloads-search__input:focus {
    outline: none;
    border-color: #005fae;
    background: white;
    box-shadow: 0 0 0 3px rgba(0, 95, 174, 0.1);
}

.downloads-search__clear {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #6c757d;
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.downloads-search__clear:hover {
    color: #005fae;
    background: #f8f9fa;
}

/* Downloads No Results */
.downloads-no-results {
    text-align: center;
    padding: 60px 0;
}

.downloads-no-results__content h3 {
    font-size: 1.5rem;
    color: #6c757d;
    margin-bottom: 15px;
}

.downloads-no-results__content p {
    color: #6c757d;
    font-size: 1rem;
}

/* Downloads Animation */
.downloads-category {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.downloads-category--animated {
    opacity: 1;
    transform: translateY(0);
}

/* Downloads Button States */
.downloads-file__download-btn--downloading {
    background: linear-gradient(135deg, #28a745 0%, #2ecc71 100%) !important;
    pointer-events: none;
}

/* Additional responsive styles for search */
@media (max-width: 768px) {
    .downloads-search {
        padding: 20px 0;
        margin-bottom: 30px;
    }

    .downloads-search__wrapper {
        padding: 0 20px;
    }

    .downloads-search__input {
        padding: 12px 45px 12px 15px;
        font-size: 0.95rem;
    }
}

/* Fix for downloads page empty space */
.downloads-page {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.downloads-page .software-hardware {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 0;
}

/* Solutions Category Styles */
.solutions-category {
    margin-bottom: 4rem;
}

.solutions-category:last-child {
    margin-bottom: 0;
}

.solutions-category__title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
    text-align: center;
}

.solutions-category__subtitle {
    font-size: 1.1rem;
    color: #4a5568;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive styles for solutions categories */
@media (max-width: 768px) {
    .solutions-category {
        margin-bottom: 3rem;
    }

    .solutions-category__title {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .solutions-category__subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .solutions-category__title {
        font-size: 1.3rem;
    }

    .solutions-category__subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
}

#welcomeModal .modal__content {
    background-color: transparent;
    max-width: 650px;
    box-shadow: none;
}

/* =Form controls font override to Commissioner
----------------------------------------------- */
button,
input,
select,
textarea {
    font-family: 'Commissioner', -apple-system, 'system-ui', 'Segoe UI', Roboto, sans-serif !important;
}

/* Single releases navigation alignment */
.news-single__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.news-single__nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.news-single__back-inline .btn {
    margin: 0;
}

/* Single releases navigation alignment */
.news-single__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.news-single__nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.news-single__back-inline .btn {
    margin: 0;
}

/* Blockquote Styles */
blockquote,
.wp-block-quote {
    margin: 1.5rem 0;
    padding: 1rem 1.25rem;
    border-left: 4px solid #005fae;
    background: #eaf1f7;
    color: #333;
    font-style: italic;
}

blockquote p,
.wp-block-quote p {
    margin: 0;
    color: #333;
}

blockquote cite,
.wp-block-quote cite {
    display: block;
    margin-top: 0.75rem;
    font-size: 0.95rem;
    color: #005fae;
    font-style: normal;
    opacity: 0.9;
}

/* Styles moved from template-platforma.php to unify template styling */
.files img {
    width: 55px;
    margin-bottom: 7px;
    margin-left: auto;
    margin-right: auto;
    object-fit: contain;
    display: block;
    text-align: center;
}

.files a {
    position: relative;
    padding-left: 46px;
    margin-left: 46px;
    margin-bottom: 20px;
    display: inline-block;
}

.files a:before {
    position: absolute;
    content: "";
    width: 35px;
    height: 35px;
    background-size: contain;
    background-position: center;
    top: -4px;
    left: 0px;
    background-image: url(https://skai.online/images/pdf.png);
}

.fl {
    float: left;
    margin-top: 10px;
    margin-bottom: 20px;
    margin-right: 25px;
    border-radius: 15px;
}

.platforma .services-overview__content {
    text-align: left;
}

.platforma li {
    padding-bottom: 10px;
}

.platforma ul {
    padding-bottom: 10px;
    padding-left: 20px;
}

strong {
    font-weight: 500;
}

.releases-template-default ol {
    padding-left: 30px;
}

.releases-template-default li {
    padding-left: 0px;
}

.releases-template-default td {
    padding: 0 15px;
}

/* Header contact link */
.header__actions .header__contact-link {
    color: #fff;
    font-size: 18px;
    /* немного покрупнее */
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.header__actions .header__contact-link .fa-phone {
    color: #fff;
    font-size: 18px;
    line-height: 1;
}

.header__actions .header__contact-link:hover {
    opacity: 0.9;
}

@media (max-width: 1380px) {
    .header__menu {
        gap: 1rem;
    }
}

@media (max-width: 1260px) {
    .header__nav {
        display: none;
    }

    .header__actions {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero__title {
        margin-top: 90px;
        font-size: 2rem;
    }
}

.presentation {
    padding: 60px 0;
}

.presentation__slides {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.presentation__slide {
    background: #fff;
    border: 1px solid rgba(0, 95, 174, 0.12);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}

.presentation__img {
    display: block;
    width: 100%;
    height: auto;
}

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

.solution-hero--antinaezd .antinaezd-hero__media {
    margin-top: 28px;
    max-width: 620px;
}

.solution-hero--antinaezd .antinaezd-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.solution-hero--antinaezd {
    padding-top: 170px;
}

.solution-antinaezd {

    background: #fff;
}

.solution-antinaezd .antinaezd-section {
    padding: 60px 0;
}

.solution-antinaezd .antinaezd-section--muted {
    background: #f8fafc;
}

.solution-antinaezd .antinaezd-section--muted2 {
    background: #ebf2f9;

}

.solution-antinaezd .antinaezd-grid {
    display: grid;
    gap: 24px;
}

.solution-antinaezd .antinaezd-grid--2 {
    grid-template-columns: 1fr 1fr;
}

.solution-antinaezd .antinaezd-grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

.solution-antinaezd .antinaezd-grid--4 {
    grid-template-columns: repeat(4, 1fr);
}

.solution-antinaezd .antinaezd-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(0, 95, 174, 0.12);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}

.solution-antinaezd .antinaezd-card--wide {
    margin-top: 24px;
}

.solution-antinaezd .antinaezd-section .section__title+.antinaezd-card--wide,
.solution-antinaezd .antinaezd-section .section__title+.antinaezd-media--wide {
    margin-top: 0;
}

.solution-antinaezd .antinaezd-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 16px 0;
    color: #2f3a4b;
}

.solution-antinaezd .antinaezd-subtitle {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2f3a4b;
    margin-bottom: 14px;
}

.solution-antinaezd .antinaezd-subtitle--center {
    text-align: center;
}

.solution-antinaezd .antinaezd-note p {
    margin: 0 0 10px 0;
    color: #4a5568;
}

.solution-antinaezd .antinaezd-lead {
    margin: 0 0 14px 0;
    color: #2f3a4b;
    font-size: 1.05rem;
}

.solution-antinaezd .antinaezd-media {
    width: 100%;
}

.solution-antinaezd .antinaezd-media--wide {
    margin: 18px auto 0;
}

.solution-antinaezd .antinaezd-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;
    max-height: 753px;
    object-fit: cover;
    /* box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08); */
}

.solution-antinaezd .antinaezd-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.solution-antinaezd .antinaezd-list li {
    position: relative;
    padding-left: 26px;
    margin: 15px 0;
    color: #2d3748;
    line-height: 1.45;
    font-size: 18px;
    font-weight: 400;
}

.solution-antinaezd .antinaezd-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #005fae;
    font-weight: 700;
}

.solution-antinaezd .antinaezd-list--plain li::before {
    content: '•';
}

.solution-antinaezd .antinaezd-tags {
    position: relative;
    overflow: hidden;
}

.solution-antinaezd .antinaezd-tags::before {
    content: '';
    position: absolute;
    top: -120px;
    left: -140px;
    width: 340px;
    height: 340px;
    background: #b8d2e9;
    opacity: 0.18;
    transform: rotate(45deg);
    pointer-events: none;
}

.solution-antinaezd .antinaezd-tags::after {
    content: '';
    position: absolute;
    right: -180px;
    bottom: -160px;
    width: 420px;
    height: 420px;
    background: #005fae;
    opacity: 0.08;
    transform: rotate(35deg);
    pointer-events: none;
}

.solution-antinaezd .antinaezd-tags .container {
    position: relative;
    z-index: 1;
}

.solution-antinaezd .antinaezd-tags__title {
    text-align: left;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    display: inline-block;
    position: relative;
    padding-bottom: 10px;
}

.solution-antinaezd .antinaezd-tags__title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 110px;
    background: #f28c00;
    border-radius: 2px;
}

.solution-antinaezd .antinaezd-tags__grid {
    display: grid;
    grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.solution-antinaezd .antinaezd-tags__device,
.solution-antinaezd .antinaezd-tags__specs {
    background: rgba(255, 255, 255, 0.92);
    border-radius: 18px;
    padding: 24px;
    border: 1px solid rgba(0, 95, 174, 0.12);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(6px);
}

.solution-antinaezd .antinaezd-tags__kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 1rem;
    color: #2f3a4b;
    margin: 0 0 10px;
}

.solution-antinaezd .antinaezd-tags__kicker::before {
    content: '';
    width: 4px;
    height: 18px;
    background: #b8d2e9;
    border-radius: 2px;
    flex: 0 0 auto;
}

.solution-antinaezd .antinaezd-tags__device-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #2f3a4b;
    margin-bottom: 18px;
}

.solution-antinaezd .antinaezd-tags__device-media {
    position: relative;
    padding: 18px;
    display: grid;
    place-items: center;
}

.solution-antinaezd .antinaezd-tags__device-media::before {
    content: '';
    position: absolute;
    inset: 10px;
    background: rgba(242, 140, 0, 0.18);
    border: 2px solid rgba(242, 140, 0, 0.35);
    clip-path: polygon(25% 6%, 75% 6%, 100% 50%, 75% 94%, 25% 94%, 0 50%);
    border-radius: 18px;
}

.solution-antinaezd .antinaezd-tags__device-media .antinaezd-img {
    position: relative;
    z-index: 1;
    max-width: 280px;
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.14);
}

.solution-antinaezd .antinaezd-tags__specs-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #2f3a4b;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 10px;
}

.solution-antinaezd .antinaezd-tags__specs-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 140px;
    background: #b8d2e9;
    border-radius: 2px;
}

.solution-antinaezd .antinaezd-specs-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 14px;
    align-items: start;
}

.solution-antinaezd .antinaezd-specs-list li {
    padding: 10px 12px;
    background: #eceeed;
    border-radius: 12px;
    color: #2f3a4b;
    font-weight: 500;
    line-height: 1.35;
}

.solution-antinaezd .antinaezd-specs-list li::before {
    content: none;
}

.solution-antinaezd .antinaezd-specs-list1 {
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 10px 14px;
}

.solution-antinaezd .antinaezd-specs-list1 li {
    padding: 12px 12px;
    background: #eceeed;
    border-radius: 12px;
    color: #2f3a4b;
    font-weight: 500;
    line-height: 1.35;
    margin: 14px 0;
}

.solution-antinaezd .antinaezd-specs-list1 li::before {
    content: none;
}

.solution-antinaezd .antinaezd-tags__bottom {
    margin-top: 24px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
    gap: 22px;
    align-items: stretch;
}

.solution-antinaezd .antinaezd-callout {
    background: #005fae;
    border-radius: 18px;
    padding: 22px;
    color: #fff;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    position: relative;
    overflow: hidden;
}

.solution-antinaezd .antinaezd-callout__list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}

.solution-antinaezd .antinaezd-callout__list li {
    position: relative;
    padding-left: 20px;
    margin: 30px 0;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.45;
    font-weight: 500;
}

.solution-antinaezd .antinaezd-callout__list li::before {
    content: '›';
    position: absolute;
    left: 0;
    top: 0;
    color: #fff;
    font-weight: 800;
}

.solution-antinaezd .antinaezd-tags__bottom-media {
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid rgba(0, 95, 174, 0.12);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.10);
}

.solution-antinaezd .antinaezd-tags__bottom-media .antinaezd-img {
    border-radius: 0;
    box-shadow: none;
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 980px) {
    .solution-antinaezd .antinaezd-tags__grid {
        grid-template-columns: 1fr;
    }

    .solution-antinaezd .antinaezd-specs-list {
        grid-template-columns: 1fr;
    }

    .solution-antinaezd .antinaezd-tags__bottom {
        grid-template-columns: 1fr;
    }

    .solution-antinaezd .antinaezd-tags__bottom-media .antinaezd-img {
        min-height: 200px;
    }
}

.solution-antinaezd .antinaezd-capabilities__title {
    text-align: left;
    font-weight: 700;
    letter-spacing: 0.02em;
    display: inline-block;
    position: relative;
    padding-bottom: 10px;
}

/* .solution-antinaezd .antinaezd-capabilities__title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 110px;
    background: #f28c00;
    border-radius: 2px;
} */

.solution-antinaezd .antinaezd-capabilities__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 420px);
    gap: 28px;
    align-items: start;
}

.solution-antinaezd .antinaezd-capabilities__lists {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.solution-antinaezd .antinaezd-capabilities__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.solution-antinaezd .antinaezd-capabilities__list li {
    display: flex;
    gap: 12px;
    align-items: center;
    margin: 12px 0;
    color: #2d3748;
    line-height: 1.45;
    font-weight: 400;
}

.solution-antinaezd .antinaezd-capabilities__icon {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    background: rgba(0, 95, 174, 0.08);
    color: #005fae;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    font-size: 26px;
    margin-top: 0;
}

.solution-antinaezd .antinaezd-capabilities__media {
    padding: 0px;
    bottom: -85px;
    position: relative;
}

.solution-antinaezd .antinaezd-capabilities__media-grid {
    display: grid;
    gap: 14px;
}

.solution-antinaezd .antinaezd-capabilities__media-grid .antinaezd-img {
    border-radius: 14px;
}

@media (max-width: 980px) {
    .solution-antinaezd .antinaezd-capabilities__grid {
        grid-template-columns: 1fr;
    }

    .solution-antinaezd .antinaezd-capabilities__lists {
        grid-template-columns: 1fr;
    }

    .solution-antinaezd .antinaezd-capabilities__media-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .solution-antinaezd .antinaezd-capabilities__media-grid {
        grid-template-columns: 1fr;
    }

    .solution-antinaezd .antinaezd-img {
        max-height: 480px;
        object-fit: cover;
        min-height: 233px;
    }
}

.solution-antinaezd .antinaezd-mfsb__grid {
    align-items: stretch;
}

.solution-antinaezd .antinaezd-mfsb__hero {
    margin: 14px 0 18px;
}

.solution-antinaezd .antinaezd-mfsb__screens {
    padding: 18px;
}

.solution-antinaezd .antinaezd-mfsb__screens-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.solution-antinaezd .antinaezd-list li {
    margin: 30px 0;
}

.solution-antinaezd .antinaezd-mfsb__figure {
    margin: 0;
    overflow: hidden;
    border-radius: 14px;
    border: 2px solid rgba(0, 95, 174, 0.22);
    background: #fff;
}

.solution-antinaezd .antinaezd-mfsb__img {
    border-radius: 0;
    height: 220px;
    object-fit: cover;
    box-shadow: none;
}

.solution-antinaezd .antinaezd-mfsb__caption {
    padding: 7px 14px;
    background: #005fae;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    color: #ffffff;
    font-weight: 600;
    line-height: 1.35;
    height: 100%;
}

@media (max-width: 980px) {
    .solution-antinaezd .antinaezd-mfsb__screens-grid {
        grid-template-columns: 1fr;
    }
}

.solution-antinaezd .antinaezd-keyfeatures__list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding-left: 0;
    line-height: 3;
}

.solution-antinaezd .antinaezd-keyfeatures__list li::before {
    content: none;
}

.solution-antinaezd .antinaezd-keyfeatures__icon {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    background: rgba(0, 95, 174, 0.08);
    color: #005fae;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    font-size: 24px;
    margin-top: 2px;
}

.solution-antinaezd .antinaezd-feature {
    background: #fff;
    border-radius: 16px;
    padding: 22px;
    border: 1px solid rgba(0, 95, 174, 0.12);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}

.solution-antinaezd .antinaezd-feature__icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(0, 95, 174, 0.08);
    color: #005fae;
    margin-bottom: 14px;
    font-size: 22px;
}

.solution-antinaezd .antinaezd-feature__title {
    font-weight: 700;
    color: #2f3a4b;
    margin-bottom: 8px;
    font-size: 22px;
}

.solution-antinaezd .antinaezd-feature__text {
    color: #4a5568;
}

.solution-antinaezd .antinaezd-process__title {
    font-weight: 700;
    color: #2f3a4b;
    margin-bottom: 12px;
    font-size: 1.6rem;
}

.solution-antinaezd .antinaezd-result {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(0, 95, 174, 0.12);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
    text-align: center;
}

.solution-antinaezd .antinaezd-result__icon {
    color: #005fae;
    font-size: 50px;
    margin-bottom: 12px;
}

.solution-antinaezd .antinaezd-result__title {
    font-weight: 700;
    color: #2f3a4b;
}

.solution-antinaezd .antinaezd-cta__card {
    text-align: center;
}

.solution-antinaezd .antinaezd-cta__title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #2f3a4b;
    margin-bottom: 10px;
}

.solution-antinaezd .antinaezd-cta__text {
    color: #4a5568;
    margin-bottom: 18px;
}

.solution-antinaezd .antinaezd-cta__actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

@media (max-width: 1024px) {
    .solution-antinaezd .antinaezd-grid--3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .solution-antinaezd .antinaezd-grid--4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .solution-antinaezd .antinaezd-grid--2,
    .solution-antinaezd .antinaezd-grid--3,
    .solution-antinaezd .antinaezd-grid--4 {
        grid-template-columns: 1fr;
    }

    .solution-antinaezd .antinaezd-card {
        padding: 15px;
    }

    .solution-antinaezd .antinaezd-capabilities__media {
        padding: 0px;
        bottom: -56px;
        position: relative;
    }

    .solution-antinaezd .antinaezd-section {
        padding: 56px 0;
    }

    .solution-antinaezd .antinaezd-keyfeatures__list li {
        line-height: 1.4;
    }

    .solution-antinaezd .antinaezd-capabilities__title {
        padding-left: 10px;
    }

    .solution-antinaezd .antinaezd-capabilities__title::after {

        left: 10px;
    }
}

.service-formats,
.solutions-preorder {
    padding: 70px 0 80px;
    background: #fff;
    font-family: 'Commissioner', sans-serif;
    -webkit-font-smoothing: antialiased;
}

.sf-title,
.solutions-preorder__content h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 40px;
    font-weight: 500;
    line-height: 1.3;
}

.sf-title span,
.solutions-preorder__content h2 span {
    color: #005fae;
}

.sf-flex {
    display: flex;
    justify-content: center;
    gap: 22px;
}

.sf-card {
    max-width: 420px;
    background: #f4f5f7;
    border-radius: 14px;
    padding: 20px 20px 22px;
    color: #1a1a1a;
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-height: 100%;
}

.sf-card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.sf-diamond {
    color: #005fae;
    font-size: 22px;
}

.sf-plan-name {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.sf-label {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 4px;
}

.sf-list {
    list-style: none;
    padding: 0;
    margin: 0;
    min-height: 250px;
}

.sf-list li {
    position: relative;
    padding-left: 16px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 12px;
}

.sf-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: -6px;
    color: #1a1a1a;
    font-size: 19px;
}

.package-label {
    position: relative;
    display: inline-block;
    padding-right: 22px;
    font-size: 14px;
    color: #1a1a1a;
    font-weight: 600;
}

.package-label::after {
    content: '?';
    position: relative;
    display: inline-block;
    right: -6px;
    top: -2px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #7bb6e5;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    line-height: 14px;
    text-align: center;
}

.package-label::before {
    content: attr(data-tooltip);
    position: absolute;
    left: 56px;
    top: calc(100% + -88px);
    width: 260px;
    padding: 8px 10px;
    background: #fff;
    color: #1a1a1a;
    border: 1px solid #dcdcdc;
    border-radius: 8px;
    font-size: 12px;
    line-height: 1.4;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(4px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 2;
}

.package-label:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.package-note {
    color: #005fae;
    font-size: 13px;
    font-weight: 400;
    margin-top: -2px;
}

.sf-description {
    min-height: 75px;
    line-height: 1.5;
    color: #2b2b2b;
    margin: 0;
    font-size: 14px;
}

.sf-actions {
    margin-top: 40px;
    text-align: center;
}

.btn-blue-solid {
    display: inline-block;
    background: #003e7c;
    color: #fff;
    padding: 18px 45px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.3s ease;
}

.btn-blue-solid:hover {
    background: #005fae;
}

.sf-list li br,
.sf-list li p:empty,
.sf-card-header p:empty,
.sf-card > p:empty {
    display: none;
}

/* Адаптивность */
@media (max-width: 991px) {
    .sf-flex {
        flex-direction: column;
        align-items: center;
    }

    .sf-card {
        max-width: 100%;
        width: 100%;
    }

    .sf-list {
        min-height: auto;
    }

    .package-label::before {
        left: 0;
        width: 220px;
    }
}