/* ================================================================
   SPEARHEAD AG — Main Stylesheet v2.0
   Fonts: Raleway via Google Fonts
   Class names match the rebuilt front-page.php (source-accurate)
   ================================================================ */

@font-face { font-family: 'Raleway'; src: url("../fonts/Raleway/Raleway-Black.ttf"); font-weight: 900; } 
@font-face { font-family: 'Raleway'; src: url("../fonts/Raleway/Raleway-Bold.ttf"); font-weight: 700; } 
@font-face { font-family: 'Raleway'; src: url("../fonts/Raleway/Raleway-SemiBold.ttf"); font-weight: 600; } 
@font-face { font-family: 'Raleway'; src: url("../fonts/Raleway/Raleway-Medium.ttf"); font-weight: 500; } 
@font-face { font-family: 'Raleway'; src: url("../fonts/Raleway/Raleway-Regular.ttf"); font-weight: 400; } 
@font-face { font-family: 'Raleway'; src: url("../fonts/Raleway/Raleway-Light.ttf"); font-weight: 300; } 
@font-face { font-family: 'Montserrat'; src: url("../fonts/Montserrat/Montserrat-Black.ttf"); font-weight: 900; } 
@font-face { font-family: 'Montserrat'; src: url("../fonts/Montserrat/Montserrat-Bold.ttf"); font-weight: 700; } 
@font-face { font-family: 'Montserrat'; src: url("../fonts/Montserrat/Montserrat-SemiBold.ttf"); font-weight: 600; } 
@font-face { font-family: 'Montserrat'; src: url("../fonts/Montserrat/Montserrat-Medium.ttf"); font-weight: 500; } 
@font-face { font-family: 'Montserrat'; src: url("../fonts/Montserrat/Montserrat-Regular.ttf"); font-weight: 400; } 
@font-face { font-family: 'Montserrat'; src: url("../fonts/Montserrat/Montserrat-Light.ttf"); font-weight: 300; }

/* ----------------------------------------------------------------
   CSS CUSTOM PROPERTIES
   ---------------------------------------------------------------- */
:root {
    --color-blue-deep:    #0D4A8C;
    --color-blue-mid:     #1565C0;
    --color-blue-bright:  #00AADD;
    --color-teal-start:   #2C7A8C;
    --color-teal-end:     #1B4F5E;
    --color-gray-light:   #EEEEEE;
    --color-gray-mid:     #888888;
    --color-gray-dark:    #333333;
    --color-black:        #1A1A1A;
    --color-white:        #FFFFFF;
    --color-charcoal:     #444444;

    --font-heading: 'Raleway', sans-serif;
    --font-body:    'Raleway', sans-serif;

    --header-h: 80px;
    --max-w:    1290px;
    --section-pad: 80px;

    --transition: 0.3s ease;
}

/* ----------------------------------------------------------------
   RESET & BASE
   ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; background-color: #E4E4E4; overflow-x: hidden; }

html { overflow-x: hidden; }

body {
    font-family: var(--font-body);
    color: var(--color-gray-dark);
    line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* Anchor offset for fixed header */
.anchor-link {
    display: block;
    position: relative;
    top: calc(-1 * var(--header-h));
    visibility: hidden;
}

/* ----------------------------------------------------------------
   UTILITY: CONTAINER & ROW
   ---------------------------------------------------------------- */
.container {
    width: var(--max-w);
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
}

@media (max-width: 1400px) {
    .container { padding: 0 15px; }
}

.row {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}

/* ----------------------------------------------------------------
   UTILITY BUTTONS
   ---------------------------------------------------------------- */
.btn {
    display: inline-block;
    padding: 10px 28px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: background var(--transition), color var(--transition);
}

.btn-default {
    width: 245px;
    height: 66px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    background: transparent;
    border: 2px solid #29AAE2;
    color: #29AAE2;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition-duration: 0.25s;
}

.btn-default:hover {
    background: #29AAE2;
    color: var(--color-white);
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .btn-default { width: 145px; }
    .btn-joinus { width: auto !important; }
}

/* ----------------------------------------------------------------
   HEADER
   ---------------------------------------------------------------- */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: transparent;
    /* No fixed height — padding-based like the original landing header */
    padding-top: 10px;
    box-shadow: none;
    transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease, height 0.3s ease;
}

.site-header.scrolled {
    background: var(--color-white);
    border-bottom: 1px solid #E4E4E4;
    padding-top: 0;
    height: var(--header-h);
}

/* Internal pages — header is always white, never transparent */
.site-header.header-homepage {
    background: var(--color-white);
    border-bottom: 1px solid #E4E4E4;
    padding-top: 0;
    height: var(--header-h);
    transition: none;
}
.site-header.header-homepage .logo-white { display: none; }
.site-header.header-homepage .logo-black { display: block; }
.site-header.header-homepage .nav-menu li a { color: var(--color-gray-dark); }
.site-header.header-homepage .nav-menu li a:hover { text-decoration: underline; }
.site-header.header-homepage .lang-link,
.site-header.header-homepage .lang-link.active { color: #231F20; }
.site-header.header-homepage .lang-link:hover { text-decoration: underline; }
.site-header.header-homepage .lang-sep { color: #231F20; }
.site-header.header-homepage .mobile-menu-toggle span { background: var(--color-black); }

.header-inner {
    width: var(--max-w);
    max-width: 100%;
    margin: 0 auto;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
}

/* Scrolled/white header uses fixed height with no row padding (like original .nav-group--header height: 80px) */
.site-header.scrolled .header-inner,
.site-header.header-homepage .header-inner {
    /* padding: 0 32px; */
    height: var(--header-h);
}

/* Logo */
.site-logo {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    max-width: 210px;
}

.site-logo img { display: block; max-width: 100%; }
.site-logo .logo-black { display: none; }
.site-header.scrolled .logo-white { display: none; }
.site-header.scrolled .logo-black { display: block; }

.logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    color: #fff;
    transition: color 0.3s ease;
}

.site-header.scrolled .logo-text { color: var(--color-black); }

.logo-arrow { width: 28px; height: 22px; }
.logo-arrow svg { width: 100%; height: 100%; }

/* Nav */
.main-nav { display: flex; align-items: center; gap: 0; }

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
}

.nav-menu li {
    margin-right: 33px;
}

.nav-menu li:last-child {
    margin-right: 0;
}

.nav-menu li a {
    display: block;
    padding: 0;
    font: 700 16px Raleway, sans-serif;
    color: rgba(255,255,255,0.9);
    letter-spacing: 0.01em;
    transition: color var(--transition);
    white-space: nowrap;
}

.nav-menu li a:hover { text-decoration: underline; }

.site-header.scrolled .nav-menu li a { color: var(--color-gray-dark); font: 700 16px Raleway, sans-serif; }
.site-header.scrolled .nav-menu li a:hover { text-decoration: underline; }

/* Language switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    margin-left: 16px;
    font-size: 0.8rem;
    font-weight: 600;
}

.lang-link { color: #fff; font: 400 16px Raleway, sans-serif; text-decoration: none; }
.lang-link:hover { text-decoration: underline; }
.lang-link.active { font-weight: 700; }
.lang-sep { color: #fff; margin: 0 15px; }

.site-header.scrolled .lang-link { color: #231F20; }
.site-header.scrolled .lang-link:hover { text-decoration: underline; }
.site-header.scrolled .lang-link.active { color: #231F20; font-weight: 700; }
.site-header.scrolled .lang-sep { color: #231F20; }

/* Mobile toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    transition: background 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
}

.site-header.scrolled .mobile-menu-toggle span,
.site-header.header-homepage .mobile-menu-toggle span {
    background: var(--color-black);
}

.mobile-menu-toggle[aria-expanded="true"] span {
    background: #fff;
}

/* Blue SVG burger icons — hidden by default, used on white-header pages */
.mobile-menu-toggle .burger-blue,
.mobile-menu-toggle .burger-blue-open { display: none; width: 24px; height: auto; }

.site-header.header-homepage .mobile-menu-toggle span,
.site-header.scrolled .mobile-menu-toggle span { display: none; }

.site-header.header-homepage .mobile-menu-toggle .burger-blue,
.site-header.scrolled .mobile-menu-toggle .burger-blue { display: block; }

.site-header.header-homepage .mobile-menu-toggle[aria-expanded="true"] .burger-blue,
.site-header.scrolled .mobile-menu-toggle[aria-expanded="true"] .burger-blue { display: none; }

.site-header.header-homepage .mobile-menu-toggle[aria-expanded="true"] .burger-blue-open,
.site-header.scrolled .mobile-menu-toggle[aria-expanded="true"] .burger-blue-open { display: block; }

/* ----------------------------------------------------------------
   HERO SLIDER — .intro / .carousel-intro
   ---------------------------------------------------------------- */
.intro {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: max-content;
}

@media (max-width: 1400px) {
    .intro { min-height: initial; }
}

@media (max-width: 768px) {
    .intro { height: 100vh; }
}

.carousel-intro {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.carousel-intro__track {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-intro__card {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    opacity: 0;
    transition: opacity 1s ease;
    pointer-events: none;
}

.carousel-intro__card.active {
    opacity: 1;
    pointer-events: auto;
}

.carousel-intro__pseudo-image {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background-size: cover;
    background-position: center;
}

.carousel-intro__video {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.carousel-intro__card--video::after {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: rgba(0, 0, 0, 0.7);
}

.carousel-intro__pseudo-image::after {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: rgba(0, 0, 0, 0.7);
}

/* Slider prev/next buttons */
.intro__btn-prev,
.intro__btn-next {
    position: absolute;
    top: 50%;
    z-index: 11;
    opacity: 0.5;
    touch-action: manipulation;
    cursor: pointer;
    cursor: pointer;
    transition-duration: 0.25s;
    background: none;
    border: none;
    line-height: 0;
    padding: 0;
}

.intro__btn-prev:hover,
.intro__btn-next:hover { opacity: 1; }

.intro__btn-prev {
    left: 18px;
    transform: translateY(-50%) rotateZ(180deg);
}

.intro__btn-next {
    right: 18px;
    transform: translateY(-50%);
}

@media (max-width: 768px) {
    .intro__btn-prev { left: 10px; }
    .intro__btn-next { right: 10px; }
}

.intro__btn-prev img,
.intro__btn-next img { width: 30px; height: auto; }

/* ----------------------------------------------------------------
   HERO TEXT + BRAND STRIP OVERLAY
   ---------------------------------------------------------------- */
.intro__pseudo-container {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    pointer-events: none;
}

.row-brands a,
.intro__text-txt,
.intro__btn-prev,
.intro__btn-next {
    pointer-events: auto;
}

.intro__background-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.intro__pseudo-line {
    width: 100%;
}

.intro__text {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(100% - 140px);
    align-self: center;
    min-height: max-content;
    position: relative;
    z-index: 1;
}

.intro__text .container {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 1400px) {
    .intro__text { width: calc(100% - 100px); }
}

@media (max-width: 768px) {
    .intro__text { width: calc(100% - 60px); min-height: 471px; }
}

.intro__text-txt {
    font-family: var(--font-heading);
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    transition: opacity 0.6s;
}

.intro__text-txt.pre-animation {
    opacity: 0;
}

.intro__text-txt h1 {
    font-family: var(--font-heading);
    font-weight: 900;
    color: var(--color-white);
    text-transform: uppercase;
    font-size: 60px;
    margin: 0;
    margin-bottom: 40px;
    line-height: 1.25;
    letter-spacing: normal;
}

@media (max-width: 1400px) {
    .intro__text-txt h1 { font-size: 36px; margin-bottom: 25px; }
}

@media (max-width: 768px) {
    .intro__text-txt h1 { font-size: 21px; margin-bottom: 16px; }
}

.intro__text-txt h2 {
    font-family: var(--font-heading);
    font-weight: 900;
    color: var(--color-white);
    text-transform: uppercase;
    font-size: 42px;
    margin: 0;
    margin-bottom: 30px;
    line-height: 1.25;
}

@media (max-width: 1400px) {
    .intro__text-txt h2 { font-size: 21px; margin-bottom: 25px; }
}

@media (max-width: 768px) {
    .intro__text-txt h2 { font-size: 18px; margin-bottom: 16px; }
}

/* ----------------------------------------------------------------
   BRAND STRIP (bottom of hero)
   ---------------------------------------------------------------- */
.row-brands {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 1025px) {
    .row-brands {
        height: initial;
        flex-wrap: wrap;
        justify-content: center;
        box-sizing: border-box;
        padding: 0 40px 20px;
    }
}

@media (max-width: 768px) {
    .row-brands {
        flex-wrap: wrap;
        padding: 0 15px 20px;
        justify-content: center;
    }
}

.row-brands__title {
    font-family: var(--font-heading);
    font-size: 21px;
    font-weight: 700;
    color: #fff;
}

@media (max-width: 1400px) {
    .row-brands__title { white-space: nowrap; }
}

@media (max-width: 980px) {
    .row-brands__title { font-size: 16px; white-space: pre-wrap; }
}

@media (max-width: 768px) {
    .row-brands__title {
        width: 100%;
        text-align: center;
        font-size: 14px;
        margin-top: 30px;
        margin-bottom: 0;
    }
}

.row-brands__group {
    display: flex;
    align-items: center;
}

@media (max-width: 1025px) {
    .row-brands__group { justify-content: center; flex-wrap: wrap; }
}

.row-brands__item {
    margin-right: 64px;
}

.row-brands__item img {
    max-width: 140px;
    height: auto;
}

@media (max-width: 1400px) {
    .row-brands__item { margin-right: 20px; }
    .row-brands__item img { width: 90%; }
}

@media (max-width: 1025px) {
    .row-brands__item { margin: 0 0 0 45px; }
}

@media (max-width: 768px) {
    .row-brands__item {
        width: 33.3%;
        margin: 20px 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .row-brands__item img { width: 80%; }
}

/* ----------------------------------------------------------------
   BG-DAMAGE-CAR-AND-SOLUTIONS section
   ---------------------------------------------------------------- */
.bg-damage-car-and-solutions {
    background: url('../images/bgCarDamage.png') no-repeat center center;
    background-size: 100% auto;
    position: relative;
}

/* ----------------------------------------------------------------
   DAMAGE CAR SECTION
   ---------------------------------------------------------------- */
.damage-car {
    padding-top: 92px;
    padding-bottom: 27px;
}

.damage-car__title-group {
    text-align: center;
    margin-bottom: 24px;
}

.damage-car__title h2 {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 900;
    color: #231F20;
    text-align: center;
    text-transform: capitalize;
    margin-bottom: 6px;
}

.damage-car__title p {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 900;
    color: #231F20;
}

.damage-car__subtitle {
    font-size: 1rem;
    margin-top: 4em;
    text-align: center;
    font-weight: 500;
}

.damage-car__icon {
    width: 33px;
    height: 33px;
    display: inline-block;
    vertical-align: middle;
    margin: 0 4px;
}

.damage-car__row-car {
    position: relative;
    margin: 0 auto;
    max-width: 900px;
}

/* Car wrap: all frames stacked, cursor grab */
.damage-car__wrap {
    position: relative;
    width: 100%;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    overflow: hidden;
    background: transparent;
}

.damage-car__wrap:active { cursor: grabbing; }

@media (max-width: 1400px) {
    .damage-car { padding-bottom: 117px; }
    .damage-car__title h2 { font-size: 48px; }
}

@media (max-width: 1025px) {
    .damage-car { padding-bottom: 91px; }
}

@media (max-width: 768px) {
    .damage-car { padding-top: 75px; }
    .damage-car__title h2 { font-size: 27px; }
    .damage-car__title p { font-size: 18px; }
    .damage-car__subtitle { font-size: 18px; }
}

/* ----------------------------------------------------------------
   OUR FOCUS — .solutions section
   ---------------------------------------------------------------- */
.solutions {
    padding-top: 0;
    padding-bottom: 93px;
}

@media (max-width: 768px) {
    .solutions { padding-bottom: 40px; }
}

.solutions__btn-nav-row {
    width: 100%;
    margin-bottom: 100px;
    display: flex;
    justify-content: center;
}

.solutions__btn-nav-row a {
    margin: 0 18px;
    text-decoration: none;
}

.solutions__btn-nav-row .btn {
    margin-top: 40px;
}

@media (max-width: 768px) {
    .solutions__btn-nav-row a { margin: 0 18px; }
    .solutions__btn-nav-row a .btn { font-size: 14px; height: 40px; }
}

@media (max-width: 480px) {
    .solutions__btn-nav-row a { margin: 0 10px; }
}

.solutions__row {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

@media (max-width: 768px) {
    .solutions__row { justify-content: center; }
}

.solutions__item {
    width: 50%;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: center;
    box-sizing: border-box;
    padding: 0 15px;
    margin-bottom: 50px;
}

@media (max-width: 1400px) {
    .solutions__item { padding: 0 10px; }
}

@media (max-width: 980px) {
    .solutions__item { width: 50%; margin-bottom: 20px; }
}

@media (max-width: 768px) {
    .solutions__item { width: 284px; margin-bottom: 13px; margin-top: 30px; }
}

.solutions__image-wrap {
    height: 100px;
}

@media (max-width: 768px) {
    .solutions__image-wrap { height: initial; }
}

.solutions__image-wrap img {
    width: 100px;
    height: auto;
    max-width: 100%;
}

@media (max-width: 768px) {
    .solutions__image-wrap img { width: 70px; }
}

.solutions__title {
    width: 100%;
    margin: 26px 0 12px;
    text-align: center;
    font-family: var(--font-heading);
    font-size: 21px;
    font-weight: 700;
    color: #231F20;
}

@media (max-width: 768px) {
    .solutions__title { margin-top: 10px; font-size: 16px; }
}

@media (max-width: 480px) {
    .solutions__title { font-size: 14px; }
}

.solutions__text {
    width: 100%;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 300;
    color: #231F20;
    text-align: left;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .solutions__text { line-height: initial; font-size: 14px; }
}

/* ----------------------------------------------------------------
   VIDEO SECTION — .solution-video
   ---------------------------------------------------------------- */
.solution-video {
    position: relative;
    overflow: hidden;
}

.solution-video__wrap {
    width: 100%;
}

.solution-video__video {
    min-width: 100%;
    height: 56vw;
    display: block;
}

/* Overlay — shown when video not playing */
.solution-video__intro {
    position: absolute;
    top: 0;
    left: -300%;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    background-image: linear-gradient(to bottom, rgba(27, 145, 255, 0.1) 0%, rgba(0, 36, 56, 0.7) 80%, #011926 100%);
    transition-duration: 0.5s;
    opacity: 0;
    transform: scale(2, 2);
}

.solution-video__intro.open {
    left: 0;
    opacity: 1;
    transform: scale(1, 1);
}

.solution-video__intro-pseudo {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(8, 89, 125, 0.34);
}

.solution-video__intro .container {
    position: relative;
    z-index: 1;
    box-sizing: border-box;
    padding: 0 30px;
}

.solution-video__intro .row {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.solution-video__btn-group {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solution-video__btn {
    position: relative;
    margin-left: 140px;
    border-style: none;
    background: transparent;
    cursor: pointer;
    animation: 1s bounceKey infinite;
}

.solution-video__btn:hover {
    transform: scale(1.1);
}

.solution-video__btn img {
    width: 88px;
    height: 88px;
    object-fit: contain;
}

.solution-video__info {
    width: 575px;
}

.solution-video__title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 900;
    line-height: 38px;
    color: var(--color-white);
    margin: 0 0 20px 0;
}

.solution-video__content {
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-white);
}

.solution-video__content p {
    color: rgba(255,255,255,0.9);
    line-height: 1.5;
    margin-bottom: 14px;
}

.solution-video__content b,
.solution-video__content strong {
    font-weight: 600;
}

@-webkit-keyframes bounceKey {
    0% { transform: scale(1, 1); }
    20% { transform: scale(1.05, 1.05); }
    40% { transform: scale(1, 1); }
    60% { transform: scale(0.9, 0.9); }
    80% { transform: scale(1.15, 1.15); }
    100% { transform: scale(1, 1); } 
}

@keyframes bounceKey {
    0% { transform: scale(1, 1); }
    20% { transform: scale(1.05, 1.05); }
    40% { transform: scale(1, 1); }
    60% { transform: scale(0.9, 0.9); }
    80% { transform: scale(1.15, 1.15); }
    100% { transform: scale(1, 1); } 
}

/* ----------------------------------------------------------------
   SOLUTIONS — .our-pluses  (split-panel, original layout)
   ---------------------------------------------------------------- */
@keyframes showPost {
    0%   { opacity: 0; }
    100% { opacity: 1; }
}

.our-pluses {
    overflow: hidden;
    position: relative;
    background-image: url('../images/bgSolutions.jpg');
    background-size: cover;
}

.our-pluses__wrap-group {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}

/* Left panel — nav list (50 % of viewport) */
.our-pluses__nav {
    position: relative;
    width: 50vw;
    padding: 0;
}

/* Each tab card */
.our-pluses__card-nav {
    height: 220px;
    display: flex;
    background-color: rgba(255,255,255,.6);
    transition-duration: .25s;
    cursor: pointer;
    justify-content: flex-end;
    align-items: center;
}

.our-pluses__card-nav:not(.active):hover {
    background-color: rgba(255,255,255,1);
}

.our-pluses__card-nav.active {
    background-color: rgba(0,0,0,0);
}

/* Clickable header row (rendered as <a> — reset link styles) */
.our-pluses__card-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    padding-left: calc(50vw - 650px);
    cursor: pointer;
    user-select: none;
    gap: 0;
}

/* Icon */
.card-nav__icon {
    width: 150px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.card-nav__icon img {
    max-width: 100%;
    height: auto;
}

/* Text block */
.card-nav__content {
    box-sizing: border-box;
    padding: 0 15px 0 40px;
    display: flex;
    flex-wrap: wrap;
    flex: 1;
}

.card-nav__title {
    width: 100%;
    font-family: var(--font-heading);
    font-size: 21px;
    font-weight: 700;
    line-height: normal;
    color: #231F20;
    margin: 0;
    display: block;
}

.card-nav__text {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 300;
    line-height: normal;
    color: #000;
    display: block;
    margin-top: 8px;
}

/* Right panel — content (absolute, starts at right edge of left nav) */
.our-pluses__wrap {
    position: absolute;
    left: 100%;   /* = right edge of .our-pluses__nav = 50vw */
    top: 0;
    width: 50vw;
    max-width: 1000px;
    height: 100%;
    display: flex;
    align-items: flex-start;
    box-sizing: border-box;
    padding: 30px 45px 0 25px;
}

/* Post body — hidden by default; shown when card is active */
.our-pluses__post {
    width: 100%;
    opacity: 0;
    font-family: var(--font-body);
    font-weight: 400;
    line-height: normal;
    font-size: 14px;
    overflow: hidden;
    height: 100%;
    padding-bottom: 30px;
    box-sizing: border-box;
}

@media (min-width: 2000px) {
    .our-pluses__post { max-width: 700px; }
}

.our-pluses__card-nav.active .our-pluses__post {
    opacity: 1;
    animation: 1s showPost;
}

.our-pluses__post h2 {
    position: relative;
    margin-bottom: 25px;
    padding-bottom: 25px;
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 900;
    line-height: 35px;
    color: #231F20;
}

.our-pluses__post h2::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30%;
    height: 9px;
    background-color: #29AAE2;
}

.our-pluses__post p {
    font-size: 14px;
    color: var(--color-charcoal);
    line-height: normal;
    margin-bottom: 12px;
}

.our-pluses__post ul {
    list-style: none;
    padding: 0;
    margin: 8px 0 16px;
}

.our-pluses__post li {
    position: relative;
    padding-left: 12px;
    font-size: 14px;
    color: var(--color-charcoal);
    line-height: 26px;
    margin-bottom: 0;
}

.our-pluses__post li::before {
    content: '';
    position: absolute;
    top: 9px;
    left: 2px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #29AAE2;
}

/* ----------------------------------------------------------------
   CUSTOMERS & PARTNERS — .partners-customers
   ---------------------------------------------------------------- */
.partners-customers {
    position: relative;
    background-image: url('../images/partnersBg.jpg');
    background-size: cover;
    background-position: center;
    padding: 115px 0 431px;
    overflow: hidden;
}

.partners-customers__particle-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

@keyframes planetLazyTurn {
    0%   { transform: rotateZ(0deg); }
    50%  { transform: rotateZ(360deg); }
    100% { transform: rotateZ(0deg); }
}

.partners-customers__planet {
    position: absolute;
    width: 180vw;
    height: 180vw;
    max-width: none;
    left: -40vw;
    bottom: -169vw;
    top: auto;
    z-index: 0;
    pointer-events: none;
    transform-origin: center center;
    animation: 2500s planetLazyTurn ease infinite;
}

@media (max-width: 1025px) {
    .partners-customers__planet { width: 380vw; height: 380vw; left: -140vw; bottom: -344vw; }
}

@media (max-width: 480px) {
    .partners-customers__planet { width: 450vw; height: 450vw; left: -175vw; bottom: -408vw; }
}

.partners-customers .container {
    position: relative;
    z-index: 1;
}

/* Customers block */
.customers {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 137px;
}

.customers__title {
    width: 100%;
    text-align: center;
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 900;
    color: var(--color-white);
    margin: 0 0 8px 0;
}

.customers__after-title {
    width: 100%;
    text-align: center;
    font-family: var(--font-heading);
    font-size: 21px;
    font-weight: 700;
    color: var(--color-white);
    margin: 0;
}

.customers__items {
    width: 100%;
    margin-top: 54px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.customers__item {
    margin: 0 64px;
    text-align: center;
}

.customers__item img {
    max-width: 140px;
    width: 100%;
    height: auto;
    transition: opacity var(--transition), transform var(--transition);
}

.customers__item img:hover { opacity: 1; transform: scale(1.05); }

/* Partners block */
.partners {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 137px;
}

.partners__title {
    width: 100%;
    text-align: center;
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 900;
    color: var(--color-white);
    margin: 0 0 8px 0;
}

.partners__after-title {
    width: 100%;
    text-align: center;
    font-family: var(--font-heading);
    font-size: 21px;
    font-weight: 700;
    color: var(--color-white);
    margin: 0;
}

.partners__items {
    width: 100%;
    margin-top: 54px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.partners__item {
    margin: 0 64px;
    text-align: center;
}

.partners__item img {
    max-width: 140px;
    width: 100%;
    height: auto;
    transition: opacity var(--transition), transform var(--transition);
}

.partners__item img:hover { opacity: 1; transform: scale(1.05); }

/* ----------------------------------------------------------------
   CONTACT SECTION — .contact-us
   ---------------------------------------------------------------- */
.contact-us {
    background: #fff;
    padding: 92px 0 97px;
}
.contact-us .row {
    width: 100%;
    display: flex;
    justify-content: center;
}

.contacts-form {
    width: 1140px;
    max-width: 100%;
}

.contacts-form__title-group {
    width: 100%;
    margin-bottom: 60px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.contacts-form__title {
    font-size: 32px;
    font-weight: 900;
    color: #231F20;
    line-height: 45px;
}

.contacts-form__after-title {
    width: 100%;
    text-align: center;
    font-size: 21px;
    font-weight: 700;
    color: #231F20;
    line-height: 29px;
}

/* Two-column form layout */
.contacts-form > form {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.contacts-form__col {
    width: 50%;
    box-sizing: border-box;
    padding: 0 15px;
}

.field-group { width: 100%; }

.field-group--input {
    display: flex;
    flex-wrap: wrap;
    height: 41px;
    margin-bottom: 20px;
}

.place-write {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    padding: 0 10px;
    border: 1px solid rgba(35, 31, 32, 0.5);
    border-radius: 0;
    font: 300 14px var(--font-body);
    color: #231F20;
    background: #fff;
    transition-duration: 0.25s;
    outline: none;
    appearance: none;
}

.place-write:focus {
    outline: 0;
    box-shadow: 0 0 30px #E4E4E4;
    transform: scale(1.03);
}

.field-group--textarea {
    height: 285px;
}

.field-group--textarea .place-write {
    height: 100%;
    padding: 10px;
    resize: none;
}

.field-group--textarea .place-write:focus {
    box-shadow: 0 0 20px #E4E4E4;
    transform: scale(1.01);
}

.capthcha-wrapper { margin-top: 4px; }

.btn-group__send .btn {
    width: 245px;
    height: 66px;
    margin-top: 70px;
    background: transparent;
    color: #29AAE2;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.1em;
    border: 2px solid #29AAE2;
    cursor: pointer;
    transition-duration: 0.25s;
    text-transform: uppercase;
}

.btn-group__send .btn:hover {
    background: #29AAE2;
    color: #fff;
    transform: scale(1.02);
}

.btn-group__send .btn:disabled { opacity: 0.65; cursor: default; }

@media (min-width: 769px) {
    .btn-group__send .btn { height: 77px; }
}

.form-success {
    margin-top: 16px;
    padding: 14px 20px;
    background: #e8f5e9;
    border-left: 4px solid #4CAF50;
    color: #2E7D32;
    font-size: 0.88rem;
}

/* ----------------------------------------------------------------
   FOOTER
   ---------------------------------------------------------------- */
footer {
    padding: 44px 0 0;
    background-image: linear-gradient(-45deg, #146D94, #004BA4);
}

footer .container { padding: 0; }

footer .row {
    display: flex;
    align-items: flex-start;
}


/* Footer nav */
.nav-group--footer .nav-group__list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-group--footer .nav-group__list li {
    margin-right: 58px;
}

.nav-group--footer .nav-group__list li a,
.nav-group--footer .nav-group__list li .link {
    font-size: 14px;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.nav-group--footer .nav-group__list li a:hover,
.nav-group--footer .nav-group__list li .link:hover { text-decoration: underline; }

/* Footer logo */
.logo--footer {
    display: flex;
    align-items: center;
    margin-top: 35px;
    max-width: 225px;
}

.logo--footer img {
    display: block;
    max-width: 100%;
}

/* Footer contacts */
.contacts-group--footer {
    display: flex;
    align-items: flex-start;
}

.contacts-group__address {
    margin-left: 165px;
    font-size: 14px;
    color: #fff;
    font-weight: 700;
    font-style: normal;
    line-height: 18px;
    background: url("../images/addressIcon.svg") no-repeat 0 2px;
    padding-left: 26px;
}

.contacts-group__address a {
    text-decoration: none;
    color: #fff;
}

.contacts-group__address p {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    line-height: 1.7;
}

.contacts-group__address a:hover p { color: rgba(255,255,255,0.9); }

.contacts-group__list-contact {
    list-style: none;
    margin: 0 0 0 100px;
    padding: 0;
}

.contacts-group__list-contact li { margin-bottom: 11px; }

.contacts-group__item--site {
    padding-left: 28px;
    background: url("../images/webSiteIcon.svg") no-repeat 0 2px;
}

.contacts-group__item--phone {
    padding-left: 28px;
    background: url("../images/linkedinlanding.svg") no-repeat 0 2px;
    background-size: 16px auto;
}

.contacts-group__item--site a,
.contacts-group__item--phone a {
    font-size: 14px;
    color: #fff;
    font-weight: 700;
    font-style: normal;
    text-decoration: none;
    transition: color var(--transition);
}

.contacts-group__item--site a:hover,
.contacts-group__item--phone a:hover { text-decoration: underline; }

/* Copyright bar */
.copyright {
    margin-top: 52px;
    background-color: #fff;
}

.copyright .row {
    width: 100%;
    padding: 17px 0;
    display: flex;
    justify-content: center;
    font-size: 12px;
    font-weight: 300;
    color: #231F20;
}

.copyright__text {
    font-size: 12px;
    font-weight: 300;
    color: #231F20;
    text-align: center;
}

/* ----------------------------------------------------------------
   SCROLL TO TOP
   ---------------------------------------------------------------- */
.scroll-top {
    position: fixed;
    bottom: 24px; right: 24px;
    width: 52px; height: 52px;
    background: var(--color-blue-bright);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition), transform var(--transition);
    z-index: 999;
}

.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { transform: translateY(-3px); }
.scroll-top svg { width: 52px; height: 52px; }

/* ----------------------------------------------------------------
   REVEAL ON SCROLL
   ---------------------------------------------------------------- */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ----------------------------------------------------------------
   NEWS PAGES
   ---------------------------------------------------------------- */
.news-teaser-section,
.news-archive-section {
    padding: 0 0 0;
}

@media (max-width: 1400px) {
    .news-archive-section {
        padding: 0 15px;
        box-sizing: border-box;
    }
}

.news-teaser-inner,
.news-archive-inner {
    width: var(--max-w);
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

.section-heading-dark {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-black);
    text-align: center;
    margin-bottom: 48px;
}

.page-hero {
    padding: calc(var(--header-h) + 91px) 0 0;
    text-align: center;
}

.page-hero-inner {
    width: var(--max-w);
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

.page-hero-inner h1 {
    font: 900 32px "Raleway", sans-serif;
    color: var(--color-black);
    margin: 0 auto;
}

@media (max-width: 1400px) {
    .solutions__btn-nav-row .btn-default { font-size: 16px; }
    .header-inner { width: 100%; padding: 20px 60px; }
    .nav-menu li { margin-right: 15px; }
    .nav-menu li a { font-size: 14px; }
    .news-teaser-inner,
    .news-archive-inner,
    .page-hero-inner { padding: 0 27px; }
}

.news-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 41px -17px 0;
}

.news-card {
    width: calc(33.3% - 34px);
    margin: 0 17px 34px;
    background: var(--color-white);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s, box-shadow 0.25s;
}

.news-card:hover {
    transform: scale(1.01, 1.01);
    box-shadow: 2px 2px 4px rgba(35, 31, 32, 0.3);
}

.news-card-img-link {
    display: block;
    width: 100%;
    height: 232px;
    overflow: hidden;
}

.news-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transform: scale(1.15);
}

.news-card-img-placeholder {
    width: 100%;
    height: 232px;
    background: linear-gradient(135deg, #DDD, #CCC);
}

.news-card-body {
    padding: 25px 35px 29px 35px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-card-body h3 {
    font-family: var(--font-heading);
    font-size: 21px;
    font-weight: 700;
    color: #231F20;
    margin: 0;
    line-height: 1.3;
}

.news-card-body h3 a { color: inherit; text-decoration: none; }
.news-card-body h3 a:hover { color: var(--color-blue-bright); }

.news-date {
    font-size: 14px;
    font-style: italic;
    font-weight: 500;
    color: #231F20;
    padding: 19px 0;
    margin: 0;
}

.news-excerpt {
    font-size: 16px;
    font-weight: 300;
    color: #231F20;
    line-height: normal;
    flex: 1;
}

.btn-read-more {
    width: 220px;
    height: 60px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 3px solid #29AAE2;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: #29AAE2;
    letter-spacing: 0.1em;
    text-decoration: none;
    text-transform: uppercase;
    transition-duration: 0.25s;
    margin: 22px auto 0;
}

.btn-read-more:hover {
    background-color: #29AAE2;
    color: #fff;
}

.btn-outline {
    display: inline-block;
    padding: 12px 32px;
    border: 2px solid var(--color-gray-dark);
    color: var(--color-gray-dark);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.btn-outline:hover { background: var(--color-gray-dark); color: white; }

.news-more-wrap { text-align: center; margin-top: 48px; }

/* Pagination */
.pagination-wrap {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 48px;
}

.pagination-wrap .page-numbers {
    display: inline-block;
    padding: 8px 14px;
    border: 1px solid #DDD;
    color: var(--color-gray-dark);
    font-size: 0.85rem;
    transition: all var(--transition);
}

.pagination-wrap .page-numbers.current,
.pagination-wrap .page-numbers:hover {
    background: var(--color-blue-bright);
    border-color: var(--color-blue-bright);
    color: white;
}

/* ----------------------------------------------------------------
   SINGLE POST
   ---------------------------------------------------------------- */

/* Full-width hero image */
.single-post-hero {
    width: 100%;
    height: 714px;
    overflow: hidden;
    margin-top: var(--header-h);
}
.single-post-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* object-position: center top;
    display: block; */
}
.single-post-hero-placeholder {
    width: 100%;
    height: 100%;
    background: var(--color-blue-deep);
}

/* Content section — card overlaps the hero image */
.single-post-section {
    padding-bottom: 151px;
}

/* White card with negative margin overlap */
.single-post-inner {
    width: 1290px;
    max-width: 100%;
    margin: 0 auto;
}

.single-post {
    position: relative;
    z-index: 1;
    width: 100%;
    margin-top: -380px;
    box-sizing: border-box;
    padding: 55px 110px 150px;
    font-size: 16px;
    background-color: #fff;
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.5;
}

/* Title with blue underline accent */
.single-post-header {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding-bottom: 9px;
}
.single-post-header::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 146px;
    height: 9px;
    background-color: #29AAE2;
}
.single-post-header h1 {
    width: 100%;
    font-family: "Montserrat", sans-serif;
    font-size: 32px;
    font-weight: 900;
    color: #231F20;
    line-height: initial;
    margin-bottom: 0;
    margin-top: .67em;
}

.single-post-date {
    padding-top: 35px;
    padding-bottom: 35px;
    color: #231F20;
    margin-right: auto;
    font: 500 14px "Montserrat", sans-serif;
    font-style: italic;
}

.single-post-content { font-size: 16px; line-height: 1.5; color: var(--color-charcoal); font-weight: 300; }

.single-post-content h2, .single-post-content h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    margin: 28px 0 12px;
    color: var(--color-black);
}
.single-post-content strong, .single-post-content b { font-weight: 700; }
.single-post-content i { font-style: italic; }
.single-post-content p { margin-bottom: 16px; }
.single-post-content a { font-weight: 600; color: #29AAE2; word-break: break-word; overflow-wrap: break-word; text-decoration: underline; }

/* Custom bullet list — blue dots */
.single-post-content ul {
    padding-left: 0;
    list-style: none;
    line-height: 26px;
    margin-bottom: 16px;
}
.single-post-content ul li {
    position: relative;
    box-sizing: border-box;
    padding-left: 12px;
}
.single-post-content ul li::before {
    content: "";
    position: absolute;
    top: 9px;
    left: 2px;
    width: 6px;
    height: 6px;
    background-color: #29AAE2;
    border-radius: 100%;
}

/* ----------------------------------------------------------------
   SOLUTION PAGE — .post-modal--solution
   ---------------------------------------------------------------- */
.post-modal--solution {
    padding-bottom: 151px;
    background-image: url('../images/bgPost.png');
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: center;
}

.post-modal--solution .post-modal__content {
    position: relative;
    z-index: 1;
    width: 100%;
    margin-top: 100px;
    box-sizing: border-box;
    padding: 55px 110px 150px;
    font-size: 16px;
    background-color: #fff;
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.5;
}

.back-to-home__link {
    display: inline-block;
    margin-bottom: 30px;
}

.back-to-home__link img {
    width: 40px;
    height: auto;
}

.post-modal--solution .post__title-group {
    position: relative;
    margin-bottom: 35px;
    padding-bottom: 15px;
}

.post-modal--solution .post__title-group h1 {
    width: 100%;
    line-height: normal;
    margin-bottom: 0;
    font-size: 32px;
    font-weight: 900;
    color: #231F20;
    font-family: var(--font-heading);
}

.post-modal--solution .post__title-group::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 146px;
    height: 9px;
    background-color: #29AAE2;
}

.post-modal--solution .post__content {
    font-size: 14px;
    line-height: 1.5;
    color: var(--color-charcoal);
}

.post-modal--solution .post__content p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 12px;
}

.post-modal--solution .post__content strong,
.post-modal--solution .post__content b { font-weight: 700; }

.post-modal--solution .post__content ul {
    list-style: none;
    padding: 0;
    line-height: 26px;
}

.post-modal--solution .post__content ul li {
    position: relative;
    padding-left: 12px;
}

.post-modal--solution .post__content ul li::before {
    content: '';
    position: absolute;
    top: 9px;
    left: 2px;
    width: 6px;
    height: 6px;
    background-color: #29AAE2;
    border-radius: 100%;
}

.post-modal--solution .post__content a {
    font-weight: 600;
    color: #0000EE;
}

@media (max-width: 1024px) {
    .post-modal--solution .post-modal__content { padding: 55px 50px 150px; }
}

@media (max-width: 768px) {
    .post-modal--solution { padding-bottom: 0; }
    .post-modal--solution .post-modal__content { padding: 50px 30px 25px; font-size: 14px; }
    .post-modal--solution .post__title-group h1 { font-size: 18px; }
    .post-modal--solution .post__content { font-size: 14px; }
}

/* Back button */
.single-post-back { margin-top: 48px; display: flex; justify-content: center; }
.post-modal__btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 220px;
    height: 60px;
    padding: 0 24px;
    box-sizing: border-box;
    border: 3px solid #29AAE2;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: #29AAE2;
    letter-spacing: .1em;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color .25s, color .25s;
}
.post-modal__btn:hover {
    background-color: #29AAE2;
    color: #fff;
}

/* Responsive */
@media (max-width: 1300px) {
    .single-post-inner { width: 100%; padding: 0 35px; }
    .single-post { margin-top: -280px; padding: 55px 50px 150px; }
}
@media (max-width: 768px) {
    .single-post-hero { height: 70vw; }
    .single-post { width: 100%; margin: 0; padding: 50px 30px 25px; font-size: 14px; }
    .single-post-header h1 { font-size: 18px; }
    .post-modal__btn { min-width: 190px; height: 40px; font-size: 14px; }
}

/* Job single — compensates for the absent .single-post-date spacing */
.single-post--job .single-post-content { margin-top: 35px; }

/* ----------------------------------------------------------------
   TEAM PAGE
   ---------------------------------------------------------------- */
.team-section { padding: var(--section-pad) 17px; padding-top: calc(var(--header-h) + var(--section-pad)); }

.team-inner { max-width: var(--max-w); margin: 0 auto; padding: 51px 0 316px; }

.team-page-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 900;
    color: var(--color-black);
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.15;
}

.team-intro-box {
    background: var(--color-white);
    border: 1px solid #DDD;
    border-radius: 4px;
    padding: 40px 48px;
    margin-bottom: 64px;
}

.team-intro-box p {
    font-size: 0.9rem;
    color: var(--color-charcoal);
    line-height: 1.75;
    margin-bottom: 16px;
}

.brief-heading { margin-top: 24px; }

.brief-list { list-style: none; margin-top: 12px; }

.brief-list li {
    position: relative;
    padding-left: 20px;
    font-size: 0.88rem;
    color: var(--color-charcoal);
    line-height: 1.65;
    margin-bottom: 8px;
}

.brief-list li::before {
    content: '';
    position: absolute;
    left: 0; top: 7px;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--color-blue-bright);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.team-card {
    background: var(--color-white);
    border: 1px solid #DDD;
    border-radius: 4px;
    padding: 32px 24px 24px;
    text-align: center;
    transition: box-shadow var(--transition);
}

.team-card:hover { transform: scale(1.01, 1.01); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }

.team-photo-wrap { margin-bottom: 20px; }

.team-photo {
    width: 200px; height: 200px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 0 auto;
    background: #DDD;
    transition: transform 0.25s;
}

.team-card:hover .team-photo { transform: scale(1.02); }

.team-card-info {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    gap: 12px;
    margin-bottom: 4px;
    margin-top: 61px;
}

/* .team-card-info__text { flex: 1; } */

.team-card__title {
    font-family: var(--font-heading);
    font-size: 21px;
    font-weight: 700;
    color: #231F20;
    margin: 0 0 4px;
    text-align: center;
}

.team-card__status {
    font-size: 0.875rem;
    font-weight: 300;
    color: var(--color-charcoal);
    text-align: center;
    line-height: 1.4;
}

.team-linkedin { display: flex; align-items: center; flex-shrink: 0; }
.team-linkedin svg { width: 26px; height: 26px; }

.team-card__description {
    padding: 15px 28px 15px;
    font: 300 14px "Montserrat", sans-serif;
    color: #231F20;
    line-height: 1.6;
    text-align: left;
}

.team-section .btn-group {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 84px;
}

.team-section .btn-group a {
    text-decoration: none;
}

/* ----------------------------------------------------------------
   GENERIC PAGE CONTENT
   ---------------------------------------------------------------- */
.generic-page-content { padding: calc(var(--header-h) + 40px) 32px 80px; }
.content-inner { max-width: var(--max-w); margin: 0 auto; }
.content-inner h1 { font-family: var(--font-heading); font-size: 2rem; font-weight: 700; margin-bottom: 24px; }

.no-posts { text-align: center; color: var(--color-gray-mid); font-size: 0.95rem; padding: 40px; }

/* ----------------------------------------------------------------
   PAGE PAGE (internal content pages)
   ---------------------------------------------------------------- */
.page-content-section {
    padding: var(--section-pad) 32px;
    padding-top: calc(var(--header-h) + var(--section-pad));
}

.page-content-inner {
    max-width: var(--max-w);
    margin: 0 auto;
}

.page-content-box {
    background: var(--color-white);
    border: 1px solid #DDD;
    border-radius: 4px;
    padding: 55px 110px 150px;
    margin-bottom: 64px;
}

.page-content-box h1 {
    position: relative;
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 900;
    color: #231F20;
    line-height: initial;
    padding-bottom: 0;
    margin-bottom: 32px;
}

.page-content-box h1::before {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 146px;
    height: 9px;
    background-color: #29AAE2;
}

.page-content-box p {
    font-size: 0.9rem;
    color: var(--color-charcoal);
    line-height: 1.75;
    margin-bottom: 16px;
}

.page-content-box h2,
.page-content-box h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    margin: 28px 0 12px;
    color: var(--color-black);
}

.page-content-box strong, .page-content-box b { font-weight: 700; }
.page-content-box i { font-style: italic; }
.page-content-box a { font-weight: 600; color: #0000EE; }

.page-content-box ul {
    padding-left: 0;
    list-style: none;
    line-height: 26px;
    margin-bottom: 16px;
}
.page-content-box ul li {
    position: relative;
    box-sizing: border-box;
    padding-left: 12px;
}
.page-content-box ul li::before {
    content: "";
    position: absolute;
    top: 9px;
    left: 2px;
    width: 6px;
    height: 6px;
    background-color: #29AAE2;
    border-radius: 100%;
}

@media (max-width: 768px) {
    .page-content-box { padding: 32px 24px; }
    .page-content-box h1 { font-size: 20px; }
}

/* ----------------------------------------------------------------
   CAREERS / JOBS PAGE
   ---------------------------------------------------------------- */
.jobs {
    padding: 91px 0 120px;
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: center;
    padding-top: calc(var(--header-h) + 91px);
}

.container--jobs {
    max-width: 1290px;
    margin: 0 auto;
    padding: 0 32px;
}

.jobs__title-section {
    width: 100%;
    text-align: center;
    margin-bottom: 55px;
}

.jobs__title {
    display: block;
    font: 900 32px var(--font-heading);
    color: #231F20;
}

.jobs__after-title {
    margin: 5px 0 0;
    color: #231F20;
    font: 700 21px var(--font-heading);
    line-height: 1.5;
}

.jobs__collection {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.jobs__card {
    margin-bottom: 35px;
    transition-duration: 0.25s;
}

.jobs__card:hover {
    transform: scale(1.01);
    box-shadow: 2px 2px 4px rgba(35, 31, 32, 0.3);
}

.job-card {
    width: calc(33.3% - 24px);
    min-height: 316px;
    background-color: #fff;
}

.job-card__body {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-content: space-between;
}

.job-card__body > img,
.job-card__img-placeholder {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.job-card__img-placeholder {
    background: linear-gradient(135deg, #DDD, #CCC);
}

.job-card__title {
    width: 100%;
    margin: 40px 0;
    font: 700 21px var(--font-heading);
    color: #231F20;
    text-align: center;
    box-sizing: border-box;
    padding: 0 15px;
}

.job-card__btn-group {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.job-card__read-more {
    width: 220px;
    height: 60px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 3px solid #29AAE2;
    font: 700 16px var(--font-heading);
    color: #29AAE2;
    letter-spacing: 0.1em;
    text-decoration: none;
    text-transform: uppercase;
    transition-duration: 0.25s;
}

.job-card__read-more:hover {
    background-color: #29AAE2;
    color: #fff;
}

@media (max-width: 1024px) {
    .job-card { width: calc(50% - 17px); }
    .jobs__collection { justify-content: center; gap: 34px; }
    .jobs__card { margin-bottom: 0; }
}

@media (max-width: 768px) {
    .jobs { padding-bottom: 58px; }
    /* Single-column at 768px — matches news-card behaviour */
    .job-card { width: 100%; min-height: 260px; }
    .jobs__collection { gap: 24px; }
    .container--jobs { padding: 0 27px; }
    .job-card__title { font-size: 16px; margin: 20px 0; }
    .job-card__read-more { width: 145px; height: 40px; font-size: 14px; }
    .jobs__after-title { font-size: 16px; }
}

@media (max-width: 480px) {
    .jobs__collection { gap: 16px; }
    .container--jobs { padding: 0 15px; width: 100%; }
}

/* ----------------------------------------------------------------
   RESPONSIVE — WIDE (≤1400px)
   ---------------------------------------------------------------- */
@media (max-width: 1400px) and (min-width: 990px) {
    footer .row { justify-content: space-between; }
}

@media (max-width: 1400px) {
    .nav-group--footer .nav-group__list li { margin-right: 15px; }
    .contacts-group__address { margin-left: auto; }
    .our-pluses__card-wrapper { padding: 0 10px; }
    .card-nav__content { padding: 0 10px; }
    .card-nav__icon { width: 150px; }
    .partners-customers { padding-bottom: 100px; }
}

/* ----------------------------------------------------------------
   RESPONSIVE — TABLET (≤1024px)
   ---------------------------------------------------------------- */
@media (max-width: 1024px) {
    .news-grid { justify-content: center; margin: 17px 0; }
    .news-card { width: calc(50% - 34px); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }

    .our-pluses__wrap { padding: 0 25px; }
    .card-nav__icon { width: 155px; }
    .card-nav__content { padding-left: 15px; padding-right: 20px; }

    /* Video */
    .solution-video__info { width: 450px; }

    /* Partners */
    .partners-customers { padding-top: 80px; }
    .partners { margin-bottom: 88px; }
    .customers__item:nth-child(1) { width: 202px; }
    .customers__item:nth-child(2) { width: 168px; }
    .customers__item:nth-child(3) { width: 136px; }
    .partners__item:nth-child(1) { width: 202px; }
    .partners__item:nth-child(2) { width: 168px; }
    .partners__item:nth-child(3) { width: 136px; }

    /* Footer */
    footer .row { justify-content: space-between; padding: 0 30px; }
    .contacts-group__address { margin-left: 0; }
    .contacts-group__list-contact { padding-right: 30px; }
}

/* ----------------------------------------------------------------
   RESPONSIVE — MIDDLE (≤980px)
   ---------------------------------------------------------------- */
@media (max-width: 980px) {
    .card-nav__title { font-size: 16px; }
    .card-nav__text { font-size: 14px; font: Montserrat, sans-serif; line-height: 1.4em; }

    footer .row { flex-wrap: wrap; }
    .col-left { width: 100%; display: flex; flex-direction: row; justify-content: center; align-items: center; }
    .col-right { width: 100%; display: flex; justify-content: center; margin-top: 20px; }
    .logo--footer { margin-top: 0; margin-right: 20px; }
    .nav-group--footer { order: 2; }
    .nav-group--footer .nav-group__list li { margin-right: 20px; }

    /* Solutions — switch to stacked grid on mobile */
    .our-pluses__nav {
        width: 100%;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }

    .our-pluses__card-nav {
        width: 50%;
        height: auto;
        box-sizing: border-box;
        padding: 0 10px;
        justify-content: center;
        flex-wrap: wrap;
        background-color: rgba(255,255,255,.6);
    }

    .our-pluses__card-nav.active {
        background-color: rgba(255,255,255,.6);
    }

    .our-pluses__card-wrapper {
        order: 2;
        padding: 40px 0;
        width: 100%;
    }

    /* Content panel becomes inline accordion on mobile */
    .our-pluses__wrap {
        position: static;
        left: auto;
        top: auto;
        width: 100%;
        max-width: none;
        height: auto;
        max-height: 0;
        overflow: hidden;
        transition: max-height .25s ease;
        order: 0;
        display: block;
        padding: 0 10px;
    }

    .our-pluses__card-nav.active .our-pluses__wrap {
        max-height: 0;
    }

    .our-pluses__post {
        opacity: 1;
        height: auto;
        overflow-y: visible;
        padding-bottom: 20px;
    }

    .our-pluses__card-nav.active .our-pluses__post {
        animation: none;
    }
}

/* ----------------------------------------------------------------
   RESPONSIVE — MOBILE (≤768px)
   ---------------------------------------------------------------- */
@media (max-width: 768px) {
    :root { --header-h: 64px; --section-pad: 56px; }

    /* Header */
    .header-inner { padding: 26px 15px; }
    .site-header.scrolled .header-inner,
    .site-header.header-homepage .header-inner { padding: 0 15px; }

    /* Mobile nav — slides in from right, full screen dark overlay */
    .main-nav {
        display: flex;
        position: fixed;
        top: 0; right: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.95);
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: flex-end;
        justify-content: flex-start;
        padding: 90px 56px 40px;
        box-sizing: border-box;
        z-index: 999;
        transform: translateX(100%);
        transition: transform 0.5s ease;
    }

    .main-nav.open { transform: translateX(0); }

    .nav-menu {
        flex-direction: column;
        width: 100%;
        align-items: flex-end;
        padding-top: 30px;
    }
    .nav-menu li { margin-right: 0; width: 100%; display: flex; justify-content: flex-end; }
    .nav-menu li a {
        font-size: 18px;
        color: #fff;
        padding: 17px 0;
        border-bottom: 1px solid rgba(255,255,255,0.3);
        min-width: 195px;
        text-align: right;
        display: block;
    }
    .nav-menu li a:hover { text-decoration: underline; color: #fff; }

    /* Override header-homepage/scrolled dark styles inside the mobile overlay */
    .site-header.header-homepage .nav-menu li a,
    .site-header.scrolled .nav-menu li a { color: #fff; font: 700 18px Raleway, sans-serif; }

    .site-header.header-homepage .lang-link,
    .site-header.header-homepage .lang-link.active,
    .site-header.scrolled .lang-link,
    .site-header.scrolled .lang-link.active { color: rgba(255,255,255,0.75); font-size: 19px; }

    .site-header.header-homepage .lang-sep,
    .site-header.scrolled .lang-sep { color: rgba(255,255,255,0.5); font-size: 19px; }

    .site-header.header-homepage .mobile-menu-toggle[aria-expanded="true"] span,
    .site-header.scrolled .mobile-menu-toggle[aria-expanded="true"] span { background: #fff; }

    .lang-switcher {
        margin-left: 0;
        margin-top: auto;
        width: 100%;
        justify-content: flex-start;
        align-self: flex-start;
        padding-bottom: 80px;
    }
    .lang-link,
    .lang-link.active { color: rgba(255,255,255,0.75); font-size: 19px; }
    .lang-sep { color: rgba(255,255,255,0.5); font-size: 19px; }

    .mobile-menu-toggle {
        display: flex;
        position: fixed;
        z-index: 1002;
        top: 17px;
        right: 20px;
    }

    /* Burger → X when open */
    .mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    /* Hero */
    .intro { height: 100vh; min-height: 480px; }

    /* Brand strip — handled by 768px breakpoints above */

    /* Car & solutions — breakpoints handled inline above */

    /* Video */
    .solution-video__intro .row { flex-wrap: wrap; }
    .solution-video__btn-group { width: 100%; display: flex; justify-content: center; margin-bottom: 10px; }
    .solution-video__btn { width: 35px; height: 42px; margin: 0 auto; }
    .solution-video__btn img { width: 100%; height: auto; }
    .solution-video__info { width: 100%; line-height: initial !important; }
    .solution-video__title { font-size: 14px; line-height: initial; margin-bottom: 5px; }
    .solution-video__content { line-height: initial; font-size: 11px; }

    /* Solutions accordion — single column */
    .our-pluses__card-nav { width: 100%; }
    .our-pluses__card-wrapper { flex-wrap: wrap; justify-content: center; }
    .card-nav__icon { width: 80px; max-width: 80px; }
    .card-nav__content { width: calc(100% - 80px) !important; padding-right: 0; }
    .our-pluses__post h2 { font-size: 18px; line-height: 1.3; }
    .our-pluses__post li { line-height: 150%; }
    .our-pluses__post li::before { top: 5px; }

    /* Footer */
    footer .row { padding: 0 16px; flex-wrap: wrap; }
    .col-left { width: 100%; display: flex; justify-content: flex-start; }
    .col-right { width: 100%; display: flex; flex-wrap: wrap; justify-content: flex-start; margin-top: 20px; }
    .logo--footer { display: none; }
    .nav-group--footer .nav-group__list li { margin-right: 7px; }
    .nav-group--footer .nav-group__list li a,
    .nav-group--footer .nav-group__list li .link { font-size: 11px; }
    .contacts-group--footer { flex-wrap: wrap; }
    .contacts-group__address { width: 100%; order: 2; }
    .contacts-group__list-contact { width: 100%; margin: 0; }

    /* News & teams */
    .news-card { width: calc(100% - 34px); min-width: 320px; }
    .team-grid { grid-template-columns: 1fr; }
    .team-intro-box { padding: 24px; }

    /* Contact form */
    .contact-us { padding-bottom: 10px; }
    .contacts-form__col { width: 100%; margin-bottom: 21px; display: flex; flex-wrap: wrap; justify-content: center; padding: 0 15px; }
    .btn-group__send { display: flex; justify-content: center; }
    .btn-group__send .btn { width: 145px; height: 40px; margin-top: 17px; font-size: 14px; }

    /* Partners & Customers mobile */
    .customers__title { font-size: 18px; }
    .customers__after-title { font-size: 14px; }
    .customers__item { max-width: 33.3%; margin: 0 10px 20px; }
    .customers__items { column-count: 3; }
    .partners__title { font-size: 18px; }
    .partners__after-title { font-size: 14px; }
    .partners__item { max-width: 30%; margin: 0 0 20px; margin-right: 4px; }
    .partners__items { column-count: 3; }
}

/* ----------------------------------------------------------------
   RESPONSIVE — XS (≤480px)
   ---------------------------------------------------------------- */
@media (max-width: 480px) {
    .solution-video .container { padding: 0 5px !important; }
}
/* 
#moove_gdpr_cookie_info_bar .moove-gdpr-light-scheme {
    background-color: var(--color-blue-bright);
    border-top: 1px solid #202020
} */


.gdpr-sph { background-color: #29AAE2 !important; border-top: 0 !important; }
.gdpr-sph * { color: #FFFFFF !important; font-size: 18px !important; }

.gdpr-sph .moove-gdpr-cookie-notice {
    max-width: 528px;
    font-family: "Montserrat", sans-serif;
    color: #ffff;
    line-height: 1.15;
}

.gdpr-sph .moove-gdpr-infobar-allow-all { 
    width: 137px;
    min-width: 137px;
    height: 37px;
    margin-left: 23px;
    font-size: 14px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    font-family: Montserrat, sans-serif !important;
    letter-spacing: 0.1em !important;
    color: rgb(255, 255, 255);
    background-color: rgba(0, 0, 0, 0) !important;
    cursor: pointer;
    transition-duration: 0.25s;
    border: 3px solid #fff !important;
    border-image: initial;
    border-radius: 0px !important;
}
.gdpr-sph .moove-gdpr-infobar-reject-btn { 
    width: 137px;
    min-width: 137px;
    height: 37px;
    margin-left: 23px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    font-family: Montserrat, sans-serif !important;
    letter-spacing: 0.1em !important;
    color: rgb(255, 255, 255);
    background-color: rgba(0, 0, 0, 0) !important;
    cursor: pointer;
    transition-duration: 0.25s;
    border: 3px solid #fff !important;
    border-image: initial;
    border-radius: 0px !important;
}

#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content p,
#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content p a {
    margin: 0;
    font-size: 14px;
    line-height: 18px;
    font-weight: 400 !important;
    padding-bottom: 0;
    color: #fff;
}
#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content p strong { font-weight: bolder !important; }

.gdpr-sph .moove-gdpr-infobar-allow-all:hover { background-color: #fff !important; color: #29AAE2 !important; }
.gdpr-sph .moove-gdpr-infobar-reject-btn:hover { background-color: #fff !important; color: #29AAE2 !important; }

#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content a.mgbutton, #moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content button.mgbutton {
    padding: 8px 0 !important;
}

.grecaptcha-badge {
    bottom: 80px !important; /* move it above your scroll button */
    z-index: 9999 !important;
}


.ql-indent-1 { margin-left: 10px !important; }
.ql-indent-2 { margin-left: 20px !important; }
.ql-indent-3 { margin-left: 30px !important; }
.ql-indent-4 { margin-left: 40px !important; }
.ql-indent-5 { margin-left: 50px !important; }