/* Oczyszczony styles.css - zostawiono reguły użyte w plikach: index.html, pl.html, polityka-prywatnosci.html, privacy-policy.html. */

:root {
    --font-default: "Poppins", sans-serif;
    --font-primary: "Poppins", sans-serif;
    --font-secondary: "Poppins", sans-serif;
    scroll-behavior: smooth;
    --color-bg: #240c7c;
    --hero-overlay-color: transparent;
    --menu-color: #ffffff;
    --theme-color: #240c7c;
    --border-color: #e2e2e2;
    --theme-color-dark: #f8f8f8;
    --text-color: #3a3a3a;
    --hero-text-color: #ffffff;
    --text-white-color: #ffffff;
    --text-grey-color: #3a3a3a;
    --text-theme-color: #240c7c;
    --light-color: #ffffff;
    --color-default: #ffffff;
    --color-primary: #240c7c;
    --color-secondary: #4d487e;
    --color-start: #3a3a3a;
    --color-end: #3a3a3a;
    --hero-card-bg: rgb(228 227 223 / 17%);
    --box-shadow-color: rgb(82 90 101 / 10%);
}

:root.dark {
    --menu-color-bg: #565656;
    --color-bg: #000000;
    --hero-overlay-color: #000000;
    --menu-color: #ffffff;
    --theme-color: #000000;
    --border-color: #14929a;
    --theme-color-dark: #2c2c2c;
    --text-color: #ffffff;
    --hero-text-color: #ffffff;
    --text-white-color: #ffffff;
    --text-grey-color: #565656;
    --text-theme-color: #14929a;
    --light-color: #000000;
    --color-default: #000000;
    --color-primary: #000000;
    --color-secondary: #000000;
    --color-start: #000000;
    --color-end: #000000;
    --hero-card-bg: rgb(0 0 0 / 83%);
    --box-shadow-color: rgb(20 146 154 / 49%);
}

body {
    font-family: var(--font-default);
    color: var(--text-color);
    background: var(--theme-color);
    transition: 0.5s background ease;
}

body.dark {
    --menu-color-bg: #ffffff;
    --color-bg: #000000;
    --hero-overlay-color: #000000;
    --menu-color: #ffffff;
    --border-color: #2e3d4f;
    --theme-color-dark: #151515;
    --text-color: #ffffff;
    --text-white-color: #ffffff;
    --text-grey-color: #565656;
    --text-theme-color: #240c7c;
    --light-color: #000000c6;
    --color-default: #000000;
    --color-secondary: #0c6de0;
    --color-start: #000000;
    --color-end: #000000;
    --hero-card-bg: rgb(0 0 0 / 83%);
    --box-shadow-color: #240c7c;
}

#darkmode-button {
    border-radius: 50%;
    border: none;
    outline: none;
    display: grid;
    place-items: center;
    width: 45px;
    height: 45px;
    margin-left: 10px;
    grid-area: 1 / 1 / 2 / 2;
}

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

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

h1,
h2,
h3,
h4,
h6 {
    font-family: var(--font-primary);
}

.hide-on-mobile {
    display: block;
}

section {
    padding: 60px 0;
    overflow: hidden;
}

.section {
    padding: 60px 0;
    overflow: hidden;
    background: var(--light-color);
}

.section-header {
    text-align: center;
    padding-bottom: 60px;
}

.section-header h2 {
    font-size: 32px;
    position: relative;
    color: var(--color-primary);
}

.section-header p {
    margin-bottom: 0;
    color: #b8651d;
}

img {
    transition: 0.3s;
}

img:hover {
    transform: scale(1.1);
}

.breadcrumbs .page-header {
    padding: 120px 0 60px 0;
    min-height: 20vh;
    background: url(../images/hero-bg.png) center;
    background-size: cover;
    border-radius: 0px;
    overflow: hidden;
    position: relative;
}

.breadcrumbs .page-header:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(360deg,var(--light-color), var(--light-color));
    z-index: 0;
    opacity: 0.6;
}

.breadcrumbs .page-header h2 {
    color: var(--color-primary);
}

.breadcrumbs .page-header p {
    color: var(--menu-color);
}

.breadcrumbs nav {
    background-color: var(--theme-color);
    padding: 20px 0;
}

.breadcrumbs nav ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 16px;
    color: var(--color-default);
}

.breadcrumbs nav ol a {
    color: var(--text-white-color);
    transition: 0.3s;
}

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

.breadcrumbs nav ol li+li {
    padding-left: 10px;
}

.breadcrumbs nav ol li+li::before {
    display: inline-block;
    padding-right: 10px;
    color: var(--color-secondary);
    content: "/";
}

.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: -15px;
    z-index: 99999;
    background: var(--color-primary);
    width: 44px;
    height: 44px;
    border-radius: 50px;
    transition: all 0.4s;
}

.scroll-top i {
    font-size: 24px;
    color: #fff;
    line-height: 0;
}

.scroll-top:hover {
    background: rgb(16 16 16 / 80%);
    color: #fff;
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
    bottom: 15px;
}

#preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    overflow: hidden;
    background: var(--color-primary);
    transition: all 0.6s ease-out;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(48% - 3px);
    left: calc(48% - 3px);
    border: 2px solid #fff;
    border-color: var(--light-color) transparent var(--light-color) transparent;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1.5s linear infinite;
    animation: animate-preloader 1.5s linear infinite;
}

@-webkit-keyframes animate-preloader {
0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }

    .hide-on-mobile {
        display: none !important;
    }
}

.logo {
    width: 150px;
    height: auto;
}

.header {
    transition: all 0.5s;
    z-index: 997;
    height: 90px;
}

.header.sticked {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    height: 75px;
}

.header.stikcy-menu {
    background: var(--light-color);
}

.sticked-header-offset {
    margin-top: 0;
}

section {
    background: var(--light-color);
    padding-bottom: 82px;
}

@media (min-width: 1280px) {
    .navbar {
        padding: 0;
    }

    .navbar ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navbar li {
        position: relative;
    }

    .navbar>ul>li {
        white-space: nowrap;
        padding: 10px 0 10px 28px;
    }

    .navbar a,
.navbar a:focus {
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-family: var(--font-secondary);
        font-size: 16px;
        font-weight: 600;
        color: var(--menu-color);
        white-space: nowrap;
        transition: 0.3s;
        position: relative;
    }

    .stikcy-menu .navbar a {
        color: var(--text-color);
    }

    .navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
        visibility: visible;
        width: 100%;
    }

    .navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
        color: var(--color-primary);
    }

    .navbar .dropdown ul .active:hover {
        color: var(--color-primary);
    }
}

@media (min-width: 1280px) {
    .mobile-nav-show,
.mobile-nav-hide {
        display: none;
    }
}

@media (max-width: 1279px) {
    .navbar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 400px;
        bottom: 0;
        transition: 0.3s;
        z-index: 9997;
    }

    .navbar ul {
        position: absolute;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        inset: 0;
        padding: 50px 0 10px 0;
        margin: 0;
        background: var(--light-color);
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
    }

    .navbar a,
.navbar a:focus {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 20px;
        font-family: var(--font-primary);
        font-size: 15px;
        color: rgb(0, 0, 0);
        white-space: nowrap;
        transition: 0.3s;
    }

    .navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
        color: #fff;
    }

    .navbar .getstarted,
.navbar .getstarted:focus {
        background: #ECEAF9;
        padding: 8px 20px;
        border-radius: 24px;
        margin: 15px;
        color: rgb(0, 0, 0);
        font-weight: 200;
    }

    .navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
        color: #fff;
        background: #2B167C;
    }

    .navbar .dropdown>.dropdown-active,
.navbar .dropdown .dropdown>.dropdown-active {
        display: block;
    }

    .mobile-nav-show {
        color: var(--color-primary);
        font-size: 28px;
        cursor: pointer;
        line-height: 0;
        transition: 0.5s;
        z-index: 9999;
        margin-right: 10px;
    }

    .mobile-nav-hide {
        color: rgb(16, 16, 16);
        font-size: 32px;
        cursor: pointer;
        line-height: 0;
        transition: 0.5s;
        position: fixed;
        right: 20px;
        top: 20px;
        z-index: 9999;
    }

    .mobile-nav-active {
        overflow: hidden;
    }

    .mobile-nav-active .navbar {
        right: 0;
    }

    .mobile-nav-active .navbar:before {
        content: "";
        position: fixed;
        inset: 0;
        background: rgb(0 0 0 / 80%);
        z-index: 9996;
    }
}

@-webkit-keyframes pulsate-btn {
0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }

    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

@keyframes pulsate-btn {
0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }

    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

#hero {
    position: relative;
    overflow: hidden;
}

#hero .hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

#hero #particles-js,
#hero #repulse-circle-div {
    position: absolute;
    inset: 0;
    z-index: 1;
}

#hero .container {
    position: relative;
    z-index: 2;
}

@keyframes pulsate-btn {
0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }

    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

@media (min-width: 1280px) {
    .container,
.container-xl {
        max-width: 1440px;
    }
}

.hero {
    width: 100%;
    position: relative;
    background: url(../images/hero-bg.png) center center;
    background-size: cover;
    padding: 60px 0 0 0;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    left: 0px;
    right: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    z-index: 0;
    margin-top: 0;
    background: linear-gradient(360deg, var(--hero-overlay-color), var(--hero-overlay-color));
}

@media (min-width: 1365px) {
    .hero {
        background-attachment: fixed;
    }
}

.dark-bg {
    padding: 50px 30px;
    border-radius: 8px;
}

.hero h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--hero-text-color);
    text-transform: capitalize;
    letter-spacing: 0.7px;
    font-weight: 600;
    text-shadow: 0 0px 0 rgba(0,0,0,0.99),
    0 6px 8px rgba(0,0,0,0.99),
    0 18px 35px rgba(0,0,0,0.99),
    0 40px 70px rgba(0,0,0,0.99);
}

.hero h2 span {
    text-shadow: none;
}

.hero span {
    color: black;
    padding: 10px;
    display: inline-block;
    font-weight: bolder;
    color: var(--color-primary);
    background-position: 0px;
    background-size: 11px;
    border-left-width: 0px;
    border-top-width: 0px;
    outline: 1px solid 0px;
    outline-offset: 0px;
}

.btn-get-started {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 14px 20px;
    border-radius: 50px;
    transition: 0.3s;
    color: var(--text-white-color);
    background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
}

.btn-get-started:hover {
    background: linear-gradient(45deg, var(--color-secondary), var(--color-primary));
    color: var(--text-white-color);
}

@media (max-width: 991px) {
    .hero {
        background: url(../images/hero-bg.png) center center;
    }

    .hero h2 {
        font-size: 22px;
    }
}

@media (max-width: 767px) {
    .text-left.caption {
        text-align: right;
    }

    .caption .justify-content-start {
        justify-content: center !important;
    }

    .btn-get-started {
        font-size: 14px;
    }
}

@media (min-width: 768px) {
    .btn-get-started {
        font-size: 14px;
    }
}

ol,
ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.single-page ul {
    list-style: none;
}

.single-page ul li {
    position: relative;
    color: var(--text-color);
    margin-bottom: 5px;
    border-radius: 8px;
}

.contact-section .contact-form-3 form .form-control {
    font-size: 15px;
    width: 100%;
    padding: 10px 20px;
    height: 52px;
    color: #fff;
    border: none;
    border-radius: 8px;
    text-transform: none;
    transition: all 0.4s;
    background: var(--theme-color-dark);
}

.contact-section .contact-form-3 form input:focus,
.contact-section .contact-form-3 form textarea:focus {
    outline: none;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.contact-information-box-3 {
    padding: 25px 20px;
    border-radius: 8px;
    margin-bottom: 50px;
}

.contact-information-box-3 .single-contact-info-box {
    position: relative;
    z-index: 1;
    padding: 10px 10px;
    display: block;
    border-radius: 3px;
    text-align: left;
    margin-bottom: 10px;
    overflow: hidden;
}

.contact-information-box-3 .contact-info {
    position: relative;
    z-index: 1;
}

.contact-information-box-3 .contact-info h6 {
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 7px;
    text-transform: none;
}

.contact-information-box-3 .contact-info p {
    color: var(--text-color);
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}

.contact-section .contact-form .form-group {
    margin-bottom: 30px;
}

.contact-section .contact-form form textarea.form-control {
    height: auto;
    padding-top: 15px;
    line-height: initial;
}

.contact-form button[type=submit] {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 14px 40px;
    border-radius: 50px;
    transition: 0.3s;
    border: 0;
    color: var(--text-white-color);
    background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
}

.contact-form button[type=submit]:hover {
    color: var(--text-white-color);
    background: linear-gradient(45deg, var(--color-secondary), var(--color-primary));
}

.with-errors {
    color: #dc3545;
}

.messages {
    margin-top: 30px;
}

.alert-success {
    margin-left: 15px;
}

.hidden {
    display: none;
}

#particles-js {
    position: absolute;
    z-index: 0;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

.footer-section {
    background: url(../images/hero-bg.png) center left;
    background-size: cover;
    padding: 0px 0;
    border-radius: 0px;
    position: relative;
    background-attachment: fixed;
}

.footer-section:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    z-index: 0;
    opacity: 0.8;
}

.copyright-text {
    margin-top: 30px;
}

.footer-content {
    position: relative;
    z-index: 2;
}

.footer-content .list {
    padding-left: 0;
}

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

.footer-logo img {
    max-width: 200px;
}

.footer-widget ul li,
.footer-widget ul li a {
    font-size: 14px;
}

.footer-text p {
    margin-bottom: 14px;
    font-size: 14px;
    color: var(--text-white-color);
    line-height: 28px;
}

.footer-widget-heading h3 {
    color: var(--color-primary);
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
    position: relative;
}

.footer-widget ul li a:hover {
    color: var(--color-primary);
}

.footer-widget ul li a {
    color: var(--text-white-color);
    text-transform: capitalize;
}

.subscribe-form {
    position: relative;
    overflow: hidden;
    border-radius: 50px;
}

.subscribe-form button {
    position: absolute;
    right: -3px;
    background: transparent;
    border: 0;
    top: -8px;
}

.subscribe-form button i {
    color: var(--color-primary);
    font-size: 3rem;
    transform: rotate(-6deg);
}

.copyright-text p {
    margin: 0;
    font-size: 14px;
    color: #b9b9b9;
}

.row {
    --bs-gutter-x: 30px;
    --bs-gutter-y: 25px;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-0.5 * var(--bs-gutter-x));
    margin-left: calc(-0.5 * var(--bs-gutter-x));
}

.header {
    background: rgba(255, 255, 255, 0.75);
    display: inline-block;
    padding: 6px 14px;
    border-radius: 16px;
    background: linear-gradient(45deg, rgba(36,12,124,0.10), rgba(194,189,243,0.22));
}

.home {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 16px;
    background: linear-gradient(45deg, rgba(32, 2, 106, 0.809), rgba(4, 1, 107, 0.724));
}

.contact-section .rfq-box {
    background: #f7f7f7;
    border-radius: 12px;
    padding: 18px 18px;
    margin: 14px 0;
}

.contact-section .rfq-title {
    margin: 0 0 10px;
    font-size: 16px;
    font-weight: 600;
}

.contact-section .rfq-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 10px 0;
    font-size: 14px;
    line-height: 1.3;
}

.contact-section .rfq-required {
    color: #240c7c;
}

.contact-section .rfq-hint {
    margin: 10px 0 0;
    font-size: 13px;
    opacity: .75;
}

.hp-field {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.whyus-section {
    background: var(--light-color);
    position: relative;
}

.whyus-row {
    margin-bottom: 34px;
}

.whyus-media1 {
    border-radius: 22px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 18px 40px var(--box-shadow-color);
    transform: translateZ(0);
}

.whyus-media1::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
    135deg,
    rgba(18, 2, 75, 0.069),
    rgba(53, 52, 61, 0.08)
  );
    pointer-events: none;
}

.whyus-img1 {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}

.whyus-media {
    border-radius: 22px;
    overflow: visible;
    position: relative;
    box-shadow: 0 18px 40px var(--box-shadow-color);
    transform: translateZ(0);
    padding-top: 26px;
    background: linear-gradient(
    135deg,
    rgba(18, 2, 75, 0.069),
    rgba(53, 52, 61, 0.08)
  );
}

.whyus-media::after {
    z-index: 0;
}

.whyus-img {
    position: relative;
    z-index: 1;
    height: 520px;
    margin-top: -96px;
    border-radius: 22px;
}

.whyus-media:hover .whyus-img {
    transform: scale(1.00);
}

.whyus-media1:hover .whyus-img1 {
    transform: scale(1.00);
}

.whyus-card {
    background: rgba(255,255,255,0.78);
    border-radius: 22px;
    padding: 34px 28px;
    box-shadow: 0 18px 40px var(--box-shadow-color);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(0,0,0,0.06);
}

.whyus-kicker {
    display: inline-block;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-theme-color);
    background: rgba(17, 0, 102, 0.104);
    padding: 8px 12px;
    border-radius: 999px;
    margin-bottom: 14px;
    font-size: 12px;
}

.whyus-title {
    font-size: 26px;
    line-height: 1.15;
    margin: 0 0 12px;
    color: var(--text-color);
    font-weight: 700;
}

.whyus-text {
    margin: 0 0 18px;
    color: var(--text-color);
    opacity: 0.92;
}

.whyus-list {
    margin: 0 0 22px;
    padding: 0;
}

.whyus-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin: 10px 0;
    color: var(--text-color);
}

.whyus-list i {
    color: var(--color-primary);
    line-height: 1.2;
    margin-top: 2px;
}

.whyus-row--reverse {
    margin-top: 10px;
}

@media (max-width: 991px) {
    .whyus-img {
        height: 300px;
    }

    .whyus-card {
        padding: 26px 20px;
    }

    .whyus-title {
        font-size: 22px;
    }
}

.service-intro {
    background: var(--light-color);
    position: relative;
    overflow: hidden;
}

.service-intro::before {
    content: "";
    position: absolute;
    inset: -50px -120px auto -120px;
    height: 420px;
    background: radial-gradient(closest-side, rgba(26, 6, 97, 0.14), transparent 70%),
    radial-gradient(closest-side, rgba(19, 12, 80, 0.12), transparent 72%);
    filter: blur(2px);
    pointer-events: none;
}

.service-intro__card {
    background: rgba(255,255,255,0.78);
    border-radius: 15px;
    padding: 34px 28px;
    box-shadow: 0 18px 40px var(--box-shadow-color);
    backdrop-filter: blur(9px);
    border: 1px solid rgba(0,0,0,0.06);
    position: relative;
}

.service-intro__title {
    margin: 0 0 12px;
    font-weight: 800;
    color: var(--text-color);
    line-height: 1.08;
    font-size: 40px;
}

.service-intro__title-accent {
    color: #fff;
    background: linear-gradient(45deg, rgba(30, 3, 98, 0.888), rgba(29, 0, 103, 0.553));
    border-radius: 14px;
    padding: 2px 10px;
}

.service-intro__lead {
    margin: 0 0 18px;
    color: var(--text-color);
    opacity: 0.92;
    font-size: 16px;
    line-height: 1.6;
}

.service-intro__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.service-intro__feature {
    display: flex;
    gap: 12px;
    padding: 14px 14px;
    border-radius: 18px;
    background: rgba(255,255,255,0.66);
    border: 1px solid rgba(0,0,0,0.06);
}

.service-intro__feature h3 {
    margin: 0 0 4px;
    font-size: 15px;
    font-weight: 800;
    color: var(--text-color);
}

.service-intro__feature p {
    margin: 0;
    font-size: 13px;
    opacity: 0.88;
}

.service-intro__icon {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, rgba(21, 2, 90, 0.1), rgba(12,9,33,0.06));
    color: var(--color-primary);
    flex: 0 0 auto;
    overflow: hidden;
}

.service-intro__icon img {
    width: 35px;
    height: 35px;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
    transform: none !important;
}

.btn-cta {
    display: inline-block;
    padding: 12px 22px;
    border-radius: 999px;
    color: var(--text-white-color);
    background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
    font-weight: 700;
    letter-spacing: .2px;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    box-shadow: 0 12px 25px var(--box-shadow-color);
}

.btn-cta:hover {
    transform: translateY(-2px);
    background: linear-gradient(45deg, var(--color-secondary), var(--color-primary));
    color: var(--text-white-color);
}

.service-intro__visual {
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 18px 40px var(--box-shadow-color);
    border: 1px solid rgba(0,0,0,0.06);
    background: linear-gradient(180deg, rgba(43, 5, 131, 0.09), rgba(255,255,255,0.70));
}

.service-intro__visual-top {
    display: flex;
    gap: 12px;
    padding: 16px 16px 0 16px;
    flex-wrap: wrap;
}

.kpi {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.878);
    border: 1px solid rgba(0,0,0,0.06);
}

.kpi__num {
    font-weight: 900;
    color: var(--color-primary);
    font-size: 18px;
    line-height: 1.1;
}

.kpi__label {
    font-size: 12px;
    opacity: 0.82;
}

.service-intro__image {
    margin: 14px 16px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-intro__image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}

.service-intro__image:hover img {
    transform: scale(1.00);
}

@media (max-width: 991px) {
    .service-intro__title {
        font-size: 30px;
    }

    .service-intro__grid {
        grid-template-columns: 1fr;
    }
}

.section-header {
    width: 100%;
    max-width: min(980px, 100%);
    margin: 0 auto 50px;
    padding: 10px 15px;
    text-align: center;
    background: rgba(255,255,255,0.78);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 32px;
    box-shadow: 0 18px 40px var(--box-shadow-color);
    backdrop-filter: blur(8px);
}

.section-header h2 {
    margin: 0;
    color: var(--color-primary);
    font-weight: 400;
    line-height: 1.15;
}

.section-header p {
    margin: 10px 0 0;
    color: #b8651d;
    font-weight: 400;
    line-height: 1.4;
}

@media (max-width: 576px) {
    .section-header {
        padding: 16px 16px;
        border-radius: 18px;
        margin-bottom: 44px;
    }

    .section-header h2 {
        font-size: 26px;
        padding: 6px 12px;
    }
}

@media (max-width: 575px) {
    .mobile-nav-show {
        margin-right: 6px;
    }
}

.header .container-fluid.container-xl {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 18px;
}

.header #navbar.navbar {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
}

.header #navbar.navbar ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    margin: 0;
    padding: 0;
}

.header .btn-get-started.hide-on-mobile,
.header a.hide-on-mobile {
    margin-left: 8px;
}

.header #darkmode-button {
    height: 44px;
    min-width: 44px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
}

.header .btn-get-started {
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    line-height: 1;
}

@media (max-width: 1279px) {
    .header #navbar.navbar {
        flex: initial;
        display: block;
    }
}

.industries-section {
    padding: 72px 0;
}

.industries-header {
    margin-bottom: 28px;
    max-width: 760px;
}

.industry-tile {
    height: 100%;
    border-radius: 32px;
    overflow: hidden;
    background: #ffffff;
    border: 0;
    box-shadow: 0 18px 45px rgba(0,0,0,0.10);
    transition: box-shadow 180ms ease;
}

.industry-tile:hover {
    box-shadow: 0 22px 55px rgba(0,0,0,0.12);
}

.industry-name {
    margin: 0;
    padding: 16px 18px 14px;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
}

.industry-media {
    position: relative;
    width: 100%;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: #f3f3f7;
    transition: transform 180ms ease;
    transform: translateZ(0);
    backface-visibility: hidden;
    will-change: transform;
}

@supports not (aspect-ratio: 2 / 3) {
    .industry-media::before {
        content: "";
        display: block;
        padding-top: 150%;
    }
}

@media (max-width: 767.98px) {
    .industry-media {
        position: relative;
        width: 100%;
        aspect-ratio: 2 / 3;
        overflow: hidden;
    }

    .industry-media > picture {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .industry-media > picture > img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: contain;
        object-position: center center;
        transform: none !important;
        filter: none !important;
    }
}

.industry-media > picture {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.industry-media > picture > img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    transform: scale(1.001) translateZ(0);
    transition: transform 220ms ease, filter 220ms ease;
    will-change: transform, filter;
    backface-visibility: hidden;
}

.industry-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    transform: translateY(10px) translateZ(0);
    transition: opacity 220ms ease, transform 220ms ease;
    pointer-events: none;
    z-index: 2;
    backface-visibility: hidden;
    will-change: opacity, transform;
}

.industry-overlay .industry-overlay-inner {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.industry-overlay-inner {
    position: relative;
    width: 100%;
    max-width: 360px;
    padding: 0;
    background: transparent;
    border-radius: 0;
    color: #fff;
}

.industry-overlay-inner h4 {
    margin: 0 0 8px 0;
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 0.2px;
    opacity: 0.88;
    text-shadow: 0 2px 10px rgba(0,0,0,0.35);
}

.industry-overlay-inner p {
    margin: 0;
    font-size: 1.32rem;
    font-weight: 700;
    line-height: 2.5;
    opacity: 0.88;
    text-shadow: 0 2px 10px rgba(0,0,0,0.35);
}

.industry-tile:hover .industry-media {
    transform: translateY(-3px) translateZ(0);
}

.industry-tile:hover .industry-media > picture > img {
    transform: scale(1.04) translateZ(0);
    filter: blur(6px) brightness(0.85);
}

.industry-tile:hover .industry-overlay {
    opacity: 1;
    transform: translateY(0) translateZ(0);
}

.industry-tile:hover .industry-overlay::before {
    opacity: 1;
}

.services-section {
    padding: 72px 0;
}

.services-grid {
    --bs-gutter-x: 18px;
    --bs-gutter-y: 18px;
}

.service-card {
    height: 100%;
    background: #ffffff;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.10);
    transition: transform 180ms ease, box-shadow 180ms ease;
    padding: 24px 22px 18px;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.12);
}

.service-title {
    margin: 0 0 14px 0;
    text-align: center;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.15;
    color: var(--primary);
}

.service-media {
    width: 100%;
    max-width: 550px;
    margin: 0 auto 16px;
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 3 / 1;
    background: rgba(0, 0, 0, 0.03);
}

.service-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.service-accordion {
    margin-top: 6px;
}

.service-item {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding: 0;
    overflow: hidden;
}

.service-item:first-child {
    border-top: 0;
}

.service-summary {
    list-style: none;
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 6px;
    gap: 12px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.78);
}

.service-summary::-webkit-details-marker {
    display: none;
}

.service-summary::marker {
    content: "";
}

.service-chevron {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.04);
    position: relative;
}

.service-chevron::before {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    width: 8px;
    height: 8px;
    border-right: 2px solid rgba(0, 0, 0, 0.55);
    border-bottom: 2px solid rgba(0, 0, 0, 0.55);
    transform: rotate(-45deg);
    transition: transform 180ms ease;
}

.service-content {
    padding: 0 6px 14px 6px;
    color: rgba(0, 0, 0, 0.70);
    line-height: 1.6;
    padding: 0 6px 14px 6px;
}

.service-summary:hover .service-chevron {
    background: rgba(0, 0, 0, 0.06);
}

@media (max-width: 575.98px) {
    .services-grid {
        --bs-gutter-x: 14px;
        --bs-gutter-y: 14px;
    }

    .service-card {
        border-radius: 18px;
        padding: 22px 18px 16px;
    }

    .service-media {
        width: 100%;
        max-width: clamp(220px, 85vw, 420px);
        border-radius: 16px;
    }
}

@media (min-width: 576px) and (max-width: 991.98px) {
    .service-media {
        width: 100%;
        max-width: clamp(320px, 55vw, 520px);
    }
}

#contact input[type="checkbox"] {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border: 2px solid #240c7c;
    border-radius: 4px;
    background: #fff;
    display: inline-grid;
    place-content: center;
    margin-top: 2px;
    cursor: pointer;
}

#contact input[type="checkbox"]::before {
    content: "";
    width: 10px;
    height: 10px;
    transform: scale(0);
    transition: transform .12s ease-in-out;
    background: #240c7c;
    border-radius: 2px;
}

#contact input[type="checkbox"]:checked::before {
    transform: scale(1);
}

#contact input[type="checkbox"]:disabled {
    opacity: .5;
    cursor: not-allowed;
}

.header .lang-switch,
.navbar .lang-switch {
    height: 44px;
    min-width: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    border-radius: 50px;
    line-height: 1;
    color: var(--text-white-color);
    background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
    transition: 0.3s;
}

.header .lang-switch:hover,
.header .lang-switch:focus,
.navbar .lang-switch:hover,
.navbar .lang-switch:focus {
    color: var(--text-white-color);
    background: linear-gradient(45deg, var(--color-secondary), var(--color-primary));
}

#start {
    scroll-margin-top: 50px;
}

.positions-section {
    background: var(--light-color);
}

.position-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    margin-bottom: 60px;
    box-shadow: 0 18px 40px var(--box-shadow-color);
    transition: all .3s ease;
    padding: 25px;
}

.position-card:hover {
    transform: translateY(-4px);
}

.position-image {
    aspect-ratio: 3 / 2;
    overflow: hidden;
    border-radius: 20px;
}

.position-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.position-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.position-content h3 {
    text-align: center;
    color: #000;
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 50px;
    margin-top: -20px;
}

.position-grid {
    display: grid;
    grid-template-columns: repeat(3, 180px);
    justify-content: center;
    gap: 36px 60px;
}

.position-grid span {
    position: relative;
    padding-left: 18px;
    font-size: 16px;
    color: var(--text-color);
}

.position-grid span::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #b8651d;
    position: absolute;
    left: 0;
    top: 9px;
}

@media (max-width: 991px) {
    .position-content {
        padding: 25px;
    }

    .position-content h3 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .position-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .position-content {
        text-align: left;
    }
}
