* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #062858;
    line-height: 1.6;
}

/* Headings font */
h1, h2, h4, h5, h6,
.hero_title,
.services_title,
.business_units_title,
.business_unit_title,
.what_we_do_title,
.how_we_do_title,
.how_we_do_item_title,
.projects_title,
.project_card_title,
.cta_title,
.footer_title {
    font-family: 'Space Grotesk', sans-serif;
}

/* HEADER */
.header {
    background: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header_container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    position: relative;
}
@media (max-width: 1024px) {
.header_container {
    padding: 0 24px;
}}
@media (max-width: 768px) {
.header_container {
    padding: 0 16px;
    height: 60px;
}}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.logo_image {
    height: auto;
    max-height: 30px;
    width: auto;
}
.header_right {
    display: flex;
    align-items: center;
    gap: 20px;
}
.header_back_button {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid #062858;
    color: #062858;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}
.header_back_button:hover {
    background: #062858;
    color: #ffffff;
}
.header_back_button svg {
    width: 18px;
    height: 18px;
}
@media (max-width: 768px) {
    .header_back_button span {
        display: none;
    }
    .header_back_button {
        padding: 8px;
        min-width: 36px;
        justify-content: center;
    }
}
.burger_menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}
@media (max-width: 850px) {
.burger_menu {
    display: flex;
    margin-right: 15px;
}}
.burger_menu span {
    width: 100%;
    height: 3px;
    background: #062858;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}
.burger_menu.burger_active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}
.burger_menu.burger_active span:nth-child(2) {
    opacity: 0;
}
.burger_menu.burger_active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}
.nav {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-right: 45px;
}
@media (max-width: 850px) {
.nav {
    position: fixed;
    top: -10px;
    left: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    gap: 0;
    margin-right: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    z-index: 1000;
    max-height: calc(100vh - 60px);
    overflow-y: auto;
}
.nav.nav_open {
    transform: translateY(0);
    top: 60px;
    z-index: 1002;
}}
.nav a {
    color: #062858;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}
@media (max-width: 1024px) {
    .nav a {
        font-size: 14px;
    }
}
@media (max-width: 850px) {
.nav a {
    width: 100%;
    padding: 15px 0;
    font-size: 15px;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
}
.nav a:last-child {
    border-bottom: none;
}
}
.nav a:hover {
    color: #0066cc;
}
.nav a.nav_link_active {
    color: #062858;
    text-decoration: underline;
    text-decoration-color: #062858;
    text-decoration-thickness: 2px;
    text-underline-offset: 6px;
}
@media (max-width: 850px) {
    .nav a.nav_link_active {
        text-underline-offset: 4px;
    }
}
.home_lang {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #000;
  cursor: pointer;
  position: relative;
}
.home_lang img {
  width: 16px;
  height: auto;
}
.home_lang_menu {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 6px;
  background: white;
  color: #31414E;
  border-radius: 6px;
  padding: 4px 0;
  list-style: none;
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 99;
  cursor: pointer;
  min-width: 120px;
}
.home_lang_menu li {
  padding: 6px 12px;
  cursor: pointer;
  white-space: nowrap;
  text-shadow: none;
}
.home_lang_menu li:hover {
  background: #f0f0f0;
}
.home_lang_menu.hidden {
  display: none;
}
/* END HEADER */

/* HERO */
.hero {
    position: relative;
    width: 100%;
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero_background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.hero_bg_image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(2px);
}
.hero_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 51, 102, 0.75);
    background-image: url('../img/header_img.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 2;
}
.hero_content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 40px 20px;
    max-width: 1400px;
}
.hero_title {
    font-size: 76px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 30px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
@media (max-width: 1300px) {
.hero_title {
    font-size: 55px;
}}
@media (max-width: 900px) {
.hero_title {
    font-size: 55px;
    line-height: 1.2;
    margin-bottom: 30px;
}}
.hero_cta {
    display: inline-block;
    background: #0CC0DF;
    color: #ffffff;
    padding: 16px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 179, 255, 0.3);
}
@media (max-width: 768px) {
.hero_cta {
    padding: 14px 32px;
    font-size: 16px;
}
.hero_title {
    font-size: 35px;
    line-height: 1.2;
    margin-bottom: 30px;
}}
@media (max-width: 480px) {
.hero_cta {
    padding: 12px 28px;
    font-size: 15px;
}}
/* END HERO */

/* SERVICES SECTION */
.services_section {
    background: #f5f5f5;
    padding: 90px 0 40px;
}
.services_container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}
.services_title {
    display: flex;
    width: 68%;
    font-size: 26px;
    font-weight: 700;
    color: #062858;
    text-align: left;
    margin: 0 0 40px;
    line-height: 1.3;
}
.services_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.service_card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.service_image_wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
}
.service_image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.service_content {
    background: #062858;
    padding: 35px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.service_card_title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
}
.service_card_text {
    font-size: 15px;
    line-height: 1.4;
    color: #ffffff;
    margin: 0;
}
@media (max-width: 1024px) {
.services_section {
    padding: 60px 0;
}
.services_title {
    width: 100%;
    font-size: 24px;
    margin-bottom: 40px;
}
.services_grid {
    gap: 24px;
}
.service_image_wrapper {
    height: 220px;
}}
@media (max-width: 768px) {
.services_section {
    padding: 40px 0;
}
.services_container {
    padding: 0 16px;
}
.services_title {
    font-size: 22px;
    margin-bottom: 30px;
}
.services_grid {
    grid-template-columns: 1fr;
    gap: 20px;
}
.service_image_wrapper {
    height: 200px;
}}
/* END SERVICES SECTION */

/* BUSINESS UNITS CAROUSEL */
.business_units_section {
    background: #f5f5f5;
    padding: 90px 0 40px;
    overflow: hidden;
}
.business_units_container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    overflow: hidden;
}
.business_units_title {
    display: flex;
    width: 68%;
    font-size: 26px;
    font-weight: 700;
    color: #062858;
    text-align: right;
    margin-left: auto;
    margin-right: 0;
    margin-top: 0;
    margin-bottom: 60px;
    line-height: 1.3;
}
.business_units_carousel {
    overflow: visible;
    position: relative;
    cursor: grab;
    user-select: none;
    padding: 25px 0;
    min-height: 580px;
}
.business_units_carousel:hover {
    cursor: grab;
}
.business_units_carousel:active {
    cursor: grabbing;
}
.business_units_track {
    display: flex;
    gap: 30px;
    will-change: transform;
    cursor: grab;
}
.business_units_track.dragging {
    transition: none;
    cursor: grabbing;
}
.business_units_track.smooth {
    transition: transform 0.3s ease-out;
}
.business_unit_card {
    flex: 0 0 320px;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: grab;
    position: relative;
    isolation: isolate;
}
.business_unit_image_wrapper {
    width: 100%;
    height: 250px;
    position: relative;
    overflow: hidden;
    transition: height 0.3s ease;
    flex-shrink: 0;
}
.business_unit_image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.business_unit_overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 51, 102, 0.3) 0%, rgba(0, 51, 102, 0.7) 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.business_unit_content {
    padding: 40px 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: all 0.3s ease;
}
.business_unit_content_overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    opacity: 0;
    visibility: hidden;
}
.business_unit_content_default {
    background: #062858;
    flex: 1;
    position: relative;
    z-index: 0;
}
.business_unit_title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
}
.business_unit_text {
    font-size: 15px;
    line-height: 1.6;
    color: #ffffff;
    margin: 0;
    flex: 1;
}
.business_unit_button {
    opacity: 0;
    visibility: hidden;
    padding: 12px 24px;
    background: #0CC0DF;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    transition: opacity 0.3s ease, visibility 0.3s ease, background 0.3s ease;
    margin-top: 10px;
    align-self: center;
    min-width: 150px;
    cursor: pointer;
}
.business_unit_card:hover {
    transform: scale(1.1);
    z-index: 10;
    overflow: hidden;
}
.business_unit_card:hover .business_unit_image_wrapper {
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
}
.business_unit_card:hover .business_unit_overlay {
    opacity: 1;
}
.business_unit_card:hover .business_unit_content_overlay {
    opacity: 1;
    visibility: visible;
}
.business_unit_card:hover .business_unit_content_default {
    opacity: 0;
    visibility: hidden;
    height: 0;
    padding: 0;
    margin: 0;
    overflow: hidden;
}
.business_unit_card:hover .business_unit_button {
    opacity: 1;
    visibility: visible;
}
@media (max-width: 1024px) {
.business_unit_card:hover {
    transform: none;
}
.business_unit_card:hover .business_unit_image_wrapper {
    height: 200px;
    position: relative;
}
.business_unit_card:hover .business_unit_overlay {
    opacity: 0;
}
.business_unit_card:hover .business_unit_content_overlay {
    opacity: 0;
    visibility: hidden;
}
.business_unit_card:hover .business_unit_content_default {
    opacity: 1;
    visibility: visible;
    height: auto;
    padding: 25px 20px;
}
.business_unit_card:hover .business_unit_button {
    opacity: 0;
    visibility: hidden;
}
/* Раскрытие карточки при клике на мобильных */
.business_unit_card.active {
    transform: scale(1.1);
    z-index: 10;
    overflow: hidden;
}
.business_unit_card.active .business_unit_image_wrapper {
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
}
.business_unit_card.active .business_unit_overlay {
    opacity: 1;
}
.business_unit_card.active .business_unit_content_overlay {
    opacity: 1;
    visibility: visible;
}
.business_unit_card.active .business_unit_content_default {
    opacity: 0;
    visibility: hidden;
    height: 0;
    padding: 0;
    margin: 0;
    overflow: hidden;
}
.business_unit_card.active .business_unit_button {
    opacity: 1;
    visibility: visible;
}
.business_units_section {
    padding: 40px 0;
    overflow: hidden;
}
.business_units_container {
    padding: 0 20px;
}
.business_units_title {
    width: 100%;
    font-size: 22px;
    margin-bottom: 30px;
    text-align: left;
    margin-left: 0;
}
.business_units_carousel {
    margin: 0 -20px;
    padding: 20px 20px;
    min-height: 510px;
    overflow: visible;
}
.business_units_track {
    gap: 20px;
}
.business_unit_card {
    flex: 0 0 280px;
    height: 450px;
}
.business_unit_image_wrapper {
    height: 200px;
}
.business_unit_content {
    padding: 25px 20px;
    gap: 10px;
}
.business_unit_title {
    font-size: 18px;
    line-height: 1.2;
}
.business_unit_text {
    font-size: 14px;
    line-height: 1.4;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}
.business_unit_button {
    padding: 10px 20px;
    font-size: 14px;
    min-width: 120px;
}}
/* END BUSINESS UNITS CAROUSEL */

/* WHAT WE DO SECTION */
.what_we_do_section {
    background: #f5f5f5;
    padding: 40px 0 0 0;
    position: relative;
    overflow: hidden;
}
.what_we_do_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    border-radius: 20px;
    height: 500px;
    overflow: hidden;
}
.what_we_do_line {
    position: absolute;
    left: 60px;
    top: 40px;
    bottom: 40px;
    width: 3px;
    background: #ffffff;
    z-index: 1;
}
.what_we_do_line_progress {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: linear-gradient(to bottom, #0CC0DF 0%, #0CC0DF 50%, #ffffff 50%, #ffffff 100%);
    transition: background 0.1s ease;
}
.what_we_do_line_indicator {
    display: none;
}
.what_we_do_content {
    position: relative;
    z-index: 2;
    height: 100%;
    overflow: hidden;
}
.what_we_do_list {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 60px 40px;
    transition: transform 0.8s ease;
    transform: translateY(0);
}
.what_we_do_list.scrolled {
    transform: translateY(-100%);
}
.how_we_do_list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 20px 40px 95px 40px;
    transition: transform 0.8s ease;
    transform: translateY(0);
}
.how_we_do_list.visible {
    transform: translateY(-100%);
}
.what_we_do_title,
.how_we_do_title {
    font-size: 32px;
    font-weight: 700;
    color: #062858;
    margin: 0 0 40px;
    text-align: right;
}
.what_we_do_items {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-left: 100px;
}
.what_we_do_item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}
.what_we_do_icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
}
.what_we_do_icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}
.what_we_do_text {
    font-size: 16px;
    line-height: 1.6;
    color: #062858;
    margin: 0;
    flex: 1;
}
.how_we_do_items {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-left: 80px;
}
.how_we_do_item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}
.how_we_do_icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 4px;
}
.how_we_do_icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}
.how_we_do_item_content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.how_we_do_item_title {
    font-size: 20px;
    font-weight: 700;
    color: #062858;
    margin: 0;
}
.how_we_do_item_text {
    font-size: 15px;
    line-height: 1.3;
    color: #062858;
    margin: 0;
}
@media (max-width: 1024px) {
.what_we_do_container {
    padding: 0 24px;
    height: 550px;
    max-width: 900px;
}
.what_we_do_line {
    left: 40px;
}
.what_we_do_title,
.how_we_do_title {
    font-size: 28px;
}
.what_we_do_items,
.how_we_do_items {
    margin-left: 80px;
}
}
@media (max-width: 768px) {
.what_we_do_container {
    padding: 0 16px;
    height: 500px;
    max-width: 100%;
}
.what_we_do_line {
    left: 20px;
}
.what_we_do_title,
.how_we_do_title {
    font-size: 24px;
    text-align: left;
    margin-bottom: 30px;
}
.what_we_do_items,
.how_we_do_items {
    margin-left: 20px;
    gap: 24px;
}
.what_we_do_list,
.how_we_do_list {
    padding: 40px 20px 40px 40px;
}
}
/* END WHAT WE DO SECTION */

/* STATS SECTION */
.stats_section {
    max-width: 1300px;
    margin: 0 auto;
    background: #f5f5f5;
    padding: 40px 0;
    overflow: hidden;
}
.stats_container {
    max-width: 100%;
    margin: 0;
    padding: 0;
    width: 100%;
}
.stats_image_wrapper {
    position: relative;
    background-image: url('../img/stats_img.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    border-radius: 0;
    min-height: 700px;
    width: 100%;
}
.stats_content {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 33.33%;
    display: flex;
    flex-direction: column;
    gap: 40px;
    justify-content: center;
    padding: 60px 40px;
}
.stats_item {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
}
.stats_item:nth-child(2) {
    margin-left: -100px;
}
.stats_item:last-child {
    margin-bottom: 0;
}
.stats_number_wrapper {
    display: flex;
    align-items: baseline;
    gap: 0;
}
.stats_number_prefix {
    font-size: 64px;
    font-weight: 700;
    background: linear-gradient(135deg, #3054B2 0%, #8869D4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}
.stats_number {
    font-size: 64px;
    font-weight: 700;
    background: linear-gradient(135deg, #3054B2 0%, #8869D4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}
.stats_number::after {
    content: attr(data-suffix);
    font-size: 64px;
    font-weight: 700;
    background: linear-gradient(135deg, #3054B2 0%, #8869D4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stats_description {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 16px;
    line-height: 1.6;
    color: #062858;
}
.stats_icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    margin-top: 2px;
}
.stats_icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}
@media (max-width: 1024px) {
.stats_section {
    padding: 60px 0;
}
.stats_container {
    padding: 0 30px;
}
.stats_image_wrapper {
    min-height: 600px;
}
.stats_content {
    width: 45%;
    padding: 50px 35px;
}
.stats_number_prefix,
.stats_number,
.stats_number::after {
    font-size: 56px;
}
.stats_item {
    margin-bottom: 35px;
}
.stats_item:nth-child(2) {
    margin-left: -30px;
}}
@media (max-width: 768px) {
.stats_section {
    padding: 40px 0;
}
.stats_container {
    padding: 0 20px;
}
.stats_image_wrapper {
    min-height: 700px;
    position: relative;
    overflow: hidden;
    background-image: none;
}
.stats_image_wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../img/stats_img.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(3px);
    border-radius: 20px;
    z-index: 0;
}
.stats_image_wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    z-index: 1;
}
.stats_content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    padding: 40px 30px;
    background: transparent;
    border-radius: 20px;
    margin-top: 0;
    gap: 35px;
    z-index: 2;
    justify-content: center;
}
.stats_number_prefix,
.stats_number,
.stats_number::after {
    font-size: 48px;
}
.stats_item {
    margin-bottom: 30px;
}
.stats_item:nth-child(2) {
    margin-left: 0;
}
.stats_description {
    font-size: 16px;
    color: #062858;
    font-weight: 500;
}}
/* END STATS SECTION */

/* PROJECTS SECTION */
.projects_section {
    background: #f5f5f5;
    padding: 40px 0;
}
.projects_container {
    max-width: 1400px;
    background: #062858;
    margin: 0 auto;
    padding: 40px;
}
.projects_title {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin: 0 0 40px;
    line-height: 1.3;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    background: #062858;
    padding: 0 40px 40px;
}
.projects_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: -30px;
}
.project_card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.project_image_wrapper {
    position: relative;
    width: 100%;
    min-height: 290px;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
}
.project_image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(4px);
    transform: scale(1.1);
}
.project_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 62, 113, 0.35);
    z-index: 1;
}
.project_content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 10px 24px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.project_category {
    font-size: 13px;
    font-weight: 600;
    color: #0CC0DF;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: absolute;
    top: 5%;
    right: 24px;
    z-index: 10;
    margin-top: 0;
    padding-top: 0;
}
.project_card_title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    margin-top: 8px;
    line-height: 1.3;
    text-align: left;
}
.project_card_text {
    font-size: 15px;
    line-height: 1.6;
    color: #ffffff;
    margin: 0;
    text-align: left;
}
@media (max-width: 1024px) {
.projects_section {
    padding: 60px 0;
}
.projects_title {
    font-size: 24px;
    padding: 50px 30px;
    margin-bottom: 50px;
}
.projects_grid {
    gap: 24px;
    margin-top: -25px;
}
.project_image_wrapper {
    min-height: 350px;
}
.project_content {
    padding: 10px 20px;
}}
@media (max-width: 900px) {
.projects_section {
    padding: 40px 0;
}
.projects_container {
    padding: 16px;
}
.projects_title {
    font-size: 22px;
    padding: 40px 24px;
    margin-bottom: 40px;
}
.projects_grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: -20px;
}
.project_image_wrapper {
    min-height: 300px;
}
.project_content {
    padding: 10px 20px;
}}
/* END PROJECTS SECTION */

/* CTA SECTION */
.cta_section {
    background: #f5f5f5;
    padding: 60px 0;
    min-height: 500px;
    box-sizing: border-box;
}
.cta_container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.cta_content {
    width: 70%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.cta_logo_image {
    height: auto;
    max-height: 30px;
    width: auto;
}
.cta_title {
    font-size: 26px;
    font-weight: 700;
    color: #062858;
    line-height: 1.2;
    margin: 0;
}
.cta_text {
    font-size: 15px;
    color: #666;
    line-height: 1.4;
    margin: 0;
}
.cta_button {
    display: inline-block;
    background: #0CC0DF;
    color: #ffffff;
    padding: 16px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    align-self: flex-start;
}
.cta_image_wrapper {
    position: relative;
    width: 100%;
    min-height: 450px;
    height: auto;
    border-radius: 12px;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cta_image_background {
    position: absolute;
    width: 40%;
    height: 40%;
    background-image: url('../img/cta_team.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    z-index: 1;
}
.cta_image_background_left {
    left: -3%;
    top: 42%;
    transform: translateY(-50%) rotate(82deg);
}
.cta_image_background_right {
    right: 2%;
    top: 60%;
    transform: translateY(-50%) rotate(85deg);
}
.cta_image {
    width: 90%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    border-radius: 12px;
    position: relative;
    z-index: 2;
}
@media (max-width: 1024px) {
.cta_section {
    padding: 60px 0;
}
.cta_container {
    padding: 0 24px;
    gap: 40px;
}
.cta_title {
    font-size: 24px;
}
.cta_image_wrapper {
    min-height: 400px;
}
.cta_image_background {
    width: 45%;
    height: 45%;
}
.cta_image_background_left {
    left: -6%;
    top: 42%;
    transform: translateY(-50%) rotate(82deg);
}
.cta_image_background_right {
    right: -2%;
    top: 55%;
    transform: translateY(-50%) rotate(85deg);
}}
@media (max-width: 768px) {
.cta_section {
    padding: 40px 0;
}
.cta_container {
    grid-template-columns: 1fr;
    padding: 0 16px;
    gap: 30px;
}
.cta_content {
    width: 100%;
    text-align: center;
    align-items: center;
}
.cta_title {
font-size: 22px;
}
.cta_button {
    align-self: center;
}
.cta_image_wrapper {
    min-height: 300px;
}
.cta_image_background {
    display: none;
}}
/* END CTA SECTION */

/* COMPANIES SECTION (landing) */
.companies_section {
    background: #f5f5f5;
    padding: 60px 0;
    overflow: hidden;
}
.companies_inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 0 0 40px;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 0;
    align-items: center;
    min-height: 420px;
}
.companies_logos_wrap {
    padding-right: 40px;
}
.companies_logos_grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}
.companies_logo_cell {
    display: flex;
    align-items: center;
    justify-content: center;
}
.companies_logo_cell img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}
.companies_panel {
    background: #062858;
    color: #ffffff;
    border-radius: 24px 0 0 24px;
    padding: 48px 56px 48px 48px;
    margin-right: 0;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}
.companies_title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 20px;
    line-height: 1.2;
}
.companies_text {
    font-size: 16px;
    line-height: 1.65;
    color: #ffffff;
    margin: 0;
    max-width: 420px;
}
@media (max-width: 1200px) {
    .companies_logos_grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media (max-width: 1024px) {
    .companies_inner {
        padding: 0 24px;
        grid-template-columns: 1fr;
        gap: 32px;
        min-height: 0;
    }
    .companies_logos_wrap {
        padding-right: 0;
        order: 2;
    }
    .companies_panel {
        order: 1;
        border-radius: 20px;
        padding: 40px 32px;
        margin-right: 0;
    }
    .companies_title {
        font-size: 28px;
    }
    .companies_text {
        max-width: none;
    }
}
@media (max-width: 768px) {
    .companies_section {
        padding: 40px 0;
    }
    .companies_inner {
        padding: 0 16px;
    }
    .companies_logos_grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    .companies_panel {
        padding: 28px 24px;
    }
    .companies_title {
        font-size: 24px;
        margin-bottom: 16px;
    }
    .companies_text {
        font-size: 15px;
    }
}
@media (max-width: 480px) {
    .companies_logos_grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* END COMPANIES SECTION */

/* FOOTER */
.footer {
    background: #062858;
    color: #ffffff;
    padding: 40px 0 20px;
}
@media (max-width: 768px) {
    .footer {
        padding: 30px 0 15px;
    }
}
@media (max-width: 480px) {
    .footer {
        padding: 25px 0 15px;
    }
}
.footer_container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    width: 100%;
}
@media (max-width: 1024px) {
    .footer_container {
        padding: 0 24px;
    }
    .footer_left {
        margin-right: 40px;
    }
}
@media (max-width: 768px) {
    .footer_container {
        flex-direction: column;
        padding: 0 20px;
        gap: 30px;
        margin-bottom: 30px;
    }
}
@media (max-width: 480px) {
    .footer_container {
        padding: 0 16px;
        gap: 25px;
        margin-bottom: 25px;
    }
}
.footer_left {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 0 0 auto;
    margin-right: 60px;
}
@media (max-width: 768px) {
.footer_left {
    text-align: center;
    align-items: center;
    margin-right: 0;
    width: 100%;
    gap: 20px;
}
}
@media (max-width: 480px) {
    .footer_left {
        gap: 15px;
    }
}
.footer_contact p {
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
    color: #ffffff;
}
@media (max-width: 480px) {
.footer_contact p {
    font-size: 14px;
    line-height: 1.6;
}
}
.footer_social {
    display: flex;
    gap: 10px;
    justify-content: left;
}
@media (max-width: 480px) {
.footer_social {
    gap: 8px;
    justify-content: center;
}
}
.social_link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
}
@media (max-width: 480px) {
    .social_link {
        width: 28px;
        height: 28px;
    }
}
.social_link img {
    width: 25px;
    height: 25px;
    object-fit: contain;
}
@media (max-width: 480px) {
    .social_link img {
        width: 23px;
        height: 23px;
    }
}
.footer_right {
    width: 20%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-left: auto;
    flex: 0 0 auto;
    text-align: left;
    align-items: flex-start;
}
@media (max-width: 1024px) {
.footer_right {
    width: 30%;
}}
@media (max-width: 768px) {
.footer_right {
    width: 100%;
    text-align: center;
    align-items: center;
    margin-left: 0;
    gap: 12px;
}}
@media (max-width: 480px) {
    .footer_right {
        gap: 10px;
    }
}
.footer_title {
    font-size: 24px;
    font-weight: 700;
    color: #0CC0DF;
    margin: 0;
    text-align: left;
    width: 100%;
}
@media (max-width: 768px) {
    .footer_title {
        font-size: 20px;
        text-align: center;
    }
}
@media (max-width: 480px) {
    .footer_title {
        font-size: 18px;
    }
}
.footer_description {
    font-size: 15px;
    line-height: 1.6;
    color: #ffffff;
    margin: 0;
    text-align: left;
    width: 100%;
}
@media (max-width: 768px) {
    .footer_description {
        text-align: center;
    }
}
@media (max-width: 480px) {
    .footer_description {
        font-size: 14px;
        line-height: 1.5;
    }
}
.footer_copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 40px;
}
@media (max-width: 1024px) {
    .footer_copyright {
        padding-left: 24px;
        padding-right: 24px;
    }
}
@media (max-width: 768px) {
    .footer_copyright {
        padding-top: 15px;
        padding-left: 20px;
        padding-right: 20px;
    }
}
@media (max-width: 480px) {
    .footer_copyright {
        padding-top: 15px;
        padding-left: 16px;
        padding-right: 16px;
    }
    .footer_copyright p {
        font-size: 12px;
    }
}
.footer_copyright p {
    font-size: 14px;
    color: #ffffff;
    margin: 0;
}
/* END FOOTER */

/* HERO SOLUCION */
.hero_solucion {
    position: relative;
    width: 100%;
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero_solucion_background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.hero_solucion_bg_image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 51, 102, 0.75);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 2;
    object-fit: cover;
    filter: blur(2px);
}
.hero_solucion_content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 40px 20px;
    max-width: 1100px;
}
.hero_solucion_title {
    font-family: 'Space Grotesk';
    font-size: 76px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.hero_solucion_subtitle {
    font-family: 'Space Grotesk';
    font-size: 25px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 40px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    opacity: 0.95;
}
.hero_solucion_cta {
    display: inline-block;
    background: #0CC0DF;
    color: #ffffff;
    padding: 16px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 179, 255, 0.3);
}
@media (max-width: 1024px) {
.hero_solucion_title {
    font-size: 50px;
}
.hero_solucion_subtitle {
    font-size: 22px;
}}
@media (max-width: 768px) {
.hero_solucion_cta {
    padding: 14px 32px;
    font-size: 16px;
}
.hero_solucion_title {
    font-size: 45px;
    margin-bottom: 20px;
}
.hero_solucion_subtitle {
    font-size: 16px;
    margin-bottom: 25px;
}}
@media (max-width: 480px) {
.hero_solucion_cta {
    padding: 12px 28px;
    font-size: 15px;
}
.hero_solucion_subtitle {
    font-size: 15px;
    margin-bottom: 20px;
}}

/* Hero Nosotros (about page) */
.hero_nosotros .hero_solucion_background {
    z-index: 1;
}
.hero_nosotros .hero_nosotros_bg_image {
    filter: none;
    background: none;
    z-index: 1;
}
.hero_nosotros .hero_solucion_content {
    z-index: 3;
}
.hero_nosotros_title {
    font-weight: 700;
    margin-bottom: 28px;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}
.hero_nosotros_back {
    display: inline-block;
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 8px;
    padding: 14px 72px;
    min-width: 280px;
    box-sizing: border-box;
    text-align: center;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    box-shadow: none;
}
.hero_nosotros_back:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border-color: #ffffff;
}
@media (max-width: 768px) {
    .hero_nosotros_title {
        margin-bottom: 22px;
    }
    .hero_nosotros_back {
        padding: 12px 48px;
        min-width: 220px;
        font-size: 15px;
    }
}

/* Nosotros page hero: back bottom-left, scroll-to-content control center */
.nosotros_page_hero .hero_nosotros_back {
    position: absolute;
    bottom: 28px;
    right: 28px;
    z-index: 4;
    min-width: 0;
    padding: 12px 28px;
}
.nosotros_page_hero .hero_nosotros_scroll {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    padding: 0;
    border: none;
    background: transparent;
    color: #ffffff;
    cursor: pointer;
    opacity: 0.95;
    transition: opacity 0.25s ease, transform 0.25s ease;
}
.nosotros_page_hero .hero_nosotros_scroll:hover {
    opacity: 1;
    transform: translateY(2px);
}
.nosotros_page_hero .hero_nosotros_scroll:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 4px;
    border-radius: 50%;
}
@media (max-width: 768px) {
    .nosotros_page_hero .hero_nosotros_back {
        bottom: 20px;
        right: 16px;
        padding: 10px 20px;
        font-size: 14px;
    }
    .nosotros_page_hero .hero_nosotros_scroll_icon {
        width: 44px;
        height: 44px;
    }
}
/* END Hero Nosotros */

/* END HERO SOLUCION */

/* NOSOTROS STORY SECTION */
/* Main block below hero (nosotros, lo que hacemos, casos, compañías): offset for sticky header */
.nosotros_page_hero + * {
    scroll-margin-top: 88px;
}
@media (max-width: 768px) {
    .nosotros_page_hero + * {
        scroll-margin-top: 76px;
    }
}
.nosotros_story_section {
    background: #f4f4f4;
    padding: 72px 0 88px;
}
.nosotros_story_inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    gap: 56px;
}
.nosotros_story_row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.nosotros_story_text {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.nosotros_story_paragraph {
    font-size: 16px;
    line-height: 1.75;
    color: #062858;
    margin: 0;
}
.nosotros_story_media {
    width: 100%;
    overflow: hidden;
}
.nosotros_story_img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 0;
}
@media (max-width: 1024px) {
    .nosotros_story_section {
        padding: 56px 0 64px;
    }
    .nosotros_story_inner {
        padding: 0 24px;
        gap: 44px;
    }
    .nosotros_story_row {
        gap: 32px;
    }
    .nosotros_story_paragraph {
        font-size: 15px;
    }
}
@media (max-width: 768px) {
    .nosotros_story_section {
        padding: 40px 0 48px;
    }
    .nosotros_story_inner {
        padding: 0 20px;
        gap: 40px;
    }
    .nosotros_story_row {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .nosotros_story_row:not(.nosotros_story_row_reverse) .nosotros_story_media {
        order: -1;
    }
    .nosotros_story_paragraph {
        font-size: 15px;
        line-height: 1.7;
    }
}
@media (max-width: 480px) {
    .nosotros_story_inner {
        padding: 0 16px;
    }
    .nosotros_story_paragraph {
        font-size: 14px;
    }
}
/* END NOSOTROS STORY SECTION */

/* PARTNERS SECTION */
.partners_section {
    background: #f4f4f4;
    padding: 56px 0 72px;
}
.partners_inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.partners_row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: center;
}
.partners_text {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.partners_title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 34px;
    line-height: 1.15;
    color: #062858;
    margin: 0 0 4px;
}
.partners_paragraph {
    margin: 0;
    font-size: 18px;
    line-height: 1.45;
    color: #062858;
}
.partners_media {
    width: 100%;
}
.partners_img {
    width: 100%;
    height: auto;
    display: block;
}
@media (max-width: 1024px) {
    .partners_inner {
        padding: 0 24px;
        gap: 20px;
    }
    .partners_row {
        gap: 20px;
    }
    .partners_title {
        font-size: 28px;
    }
    .partners_paragraph {
        font-size: 16px;
    }
}
@media (max-width: 768px) {
    .partners_section {
        padding: 40px 0 48px;
    }
    .partners_inner {
        padding: 0 16px;
        gap: 28px;
    }
    .partners_row {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .partners_row .partners_media {
        order: -1;
    }
    .partners_title {
        font-size: 22px;
    }
    .partners_paragraph {
        font-size: 14px;
        line-height: 1.5;
    }
}
/* END PARTNERS SECTION */

/* WHAT WE DO CARDS PAGE */
.whatdo_cards_section {
    background: #f4f4f4;
    padding: 56px 0 72px;
}
.whatdo_cards_inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}
.whatdo_cards_grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 16px;
}
/* Bento row pattern (15 cards = 5×3), approx. screenshot proportions */
.whatdo_cards_grid .whatdo_card:nth-child(1),
.whatdo_cards_grid .whatdo_card:nth-child(2),
.whatdo_cards_grid .whatdo_card:nth-child(3) {
    grid-column: span 4;
}
.whatdo_cards_grid .whatdo_card:nth-child(4) {
    grid-column: span 3;
}
.whatdo_cards_grid .whatdo_card:nth-child(5) {
    grid-column: span 4;
}
.whatdo_cards_grid .whatdo_card:nth-child(6) {
    grid-column: span 5;
}
.whatdo_cards_grid .whatdo_card:nth-child(7) {
    grid-column: span 5;
}
.whatdo_cards_grid .whatdo_card:nth-child(8) {
    grid-column: span 3;
}
.whatdo_cards_grid .whatdo_card:nth-child(9) {
    grid-column: span 4;
}
.whatdo_cards_grid .whatdo_card:nth-child(10) {
    grid-column: span 3;
}
.whatdo_cards_grid .whatdo_card:nth-child(11) {
    grid-column: span 4;
}
.whatdo_cards_grid .whatdo_card:nth-child(12) {
    grid-column: span 5;
}
.whatdo_cards_grid .whatdo_card:nth-child(13) {
    grid-column: span 4;
}
.whatdo_cards_grid .whatdo_card:nth-child(14) {
    grid-column: span 6;
}
.whatdo_cards_grid .whatdo_card:nth-child(15) {
    grid-column: span 2;
}
.whatdo_card {
    border-radius: 10px;
    overflow: hidden;
    background: #114a85;
    min-width: 0;
}
.whatdo_card_img {
    display: block;
    width: 100%;
    height: 155px;
    object-fit: cover;
}
.whatdo_card_text {
    margin: 0;
    padding: 20px;
    color: #ffffff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
}
@media (max-width: 1024px) {
    .whatdo_cards_inner {
        padding-left: max(24px, env(safe-area-inset-left, 0px));
        padding-right: max(24px, env(safe-area-inset-right, 0px));
    }
    .whatdo_cards_grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }
    .whatdo_cards_grid .whatdo_card:nth-child(n) {
        grid-column: span 1;
    }
    .whatdo_card_img {
        height: 140px;
    }
    .whatdo_card_text {
        font-size: 13px;
    }
}
@media (max-width: 768px) {
    .whatdo_cards_section {
        padding-top: 40px;
        padding-bottom: 48px;
        padding-left: max(24px, env(safe-area-inset-left, 0px));
        padding-right: max(24px, env(safe-area-inset-right, 0px));
    }
    .whatdo_cards_inner {
        padding-left: 0;
        padding-right: 0;
        max-width: none;
    }
    .whatdo_cards_grid {
        grid-template-columns: 1fr;
    }
    .whatdo_card_img {
        height: 170px;
    }
}
/* END WHAT WE DO CARDS PAGE */

/* SUCCESS CASES LOGOS PAGE */
.success_logos_section {
    background: #f4f4f4;
    padding: 56px 0 72px;
}
.success_logos_inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}
.success_logos_grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px 24px;
}
.success_logo_item {
    text-align: center;
}
.success_logo_image_wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70px;
}
.success_logo_image {
    max-width: 100%;
    max-height: 72px;
    width: auto;
    height: auto;
    object-fit: contain;
}
.success_logo_name {
    margin: 8px 0 0;
    font-size: 13px;
    line-height: 1.3;
    color: #222222;
    font-weight: 500;
}
@media (max-width: 1024px) {
    .success_logos_inner {
        padding: 0 24px;
    }
    .success_logos_grid {
        gap: 18px 18px;
    }
    .success_logo_name {
        font-size: 12px;
    }
}
@media (max-width: 768px) {
    .success_logos_section {
        padding: 40px 0 48px;
    }
    .success_logos_inner {
        padding: 0 16px;
    }
    .success_logos_grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px 14px;
    }
    .success_logo_image_wrap {
        min-height: 58px;
    }
    .success_logo_image {
        max-height: 56px;
    }
    .success_logo_name {
        font-size: 11px;
    }
}
/* END SUCCESS CASES LOGOS PAGE */

/* FIN TECH DESCRIPTION SECTION */
.fin_tech_description_section {
    background: #f5f5f5;
    padding: 60px 0;
}
.fin_tech_description_container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.fin_tech_description_text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.fin_tech_description_paragraph {
    font-size: 16px;
    line-height: 1.5;
    color: #062858;
    margin: 0;
}
.bottom_margin {
    margin-bottom: 140px;
}
.fin_tech_description_image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fin_tech_payment_image {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
}
@media (max-width: 1024px) {
.fin_tech_description_section {
    padding: 50px 0;
}
.fin_tech_description_container {
    padding: 0 24px;
    gap: 40px;
}
.fin_tech_description_paragraph {
    font-size: 15px;
}}
@media (max-width: 768px) {
.fin_tech_description_section {
    padding: 40px 0;
}
.fin_tech_description_container {
    grid-template-columns: 1fr;
    padding: 0 20px;
    gap: 30px;
}
.fin_tech_description_text {
    order: 2;
}
.fin_tech_description_image {
    order: 1;
}}
@media (max-width: 480px) {
.fin_tech_description_container {
    padding: 0 16px;
}
.fin_tech_description_paragraph {
    font-size: 14px;
    line-height: 1.6;
}}

/* FIN TECH PROBLEMS SECTION */
.fin_tech_problems_section {
    background: #062858;
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}
.fin_tech_problems_lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
}
.fin_tech_problems_line_left {
    position: absolute;
    left: 0%;
    top: 50%;
    transform: translateY(-50%);
    height: 100%;
    width: auto;
    max-width: 30%;
    object-fit: contain;
    object-position: left center;
    opacity: 0.6;
}
.fin_tech_problems_line_right {
    position: absolute;
    right: 0%;
    top: 50%;
    transform: translateY(-50%);
    height: 100%;
    width: auto;
    max-width: 30%;
    object-fit: contain;
    object-position: right center;
    opacity: 0.6;
}
.fin_tech_problems_container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}
.fin_tech_problems_content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}
.fin_tech_problems_title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    text-align: right;
    margin: 0 0 40px;
    line-height: 1.3;
}
.fin_tech_problems_list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}
.fin_tech_problem_item {
    font-size: 16px;
    line-height: 1.6;
    color: #ffffff;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    width: 100%;
    max-width: 700px;
}
.fin_tech_problem_icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fin_tech_problem_icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.fin_tech_problem_item span {
    flex: 1;
}
@media (max-width: 1024px) {
.fin_tech_problems_section {
    padding: 60px 0;
}
.fin_tech_problems_container {
    padding: 0 24px;
}
.fin_tech_problems_content {
    max-width: 100%;
}
.fin_tech_problems_line_left,
.fin_tech_problems_line_right {
    max-width: 50%;
    opacity: 0.4;
}
.fin_tech_problems_title {
    font-size: 28px;
}
.fin_tech_problem_item {
    font-size: 15px;
}}
@media (max-width: 768px) {
.fin_tech_problems_section {
    padding: 50px 0;
}
.fin_tech_problems_container {
    padding: 0 20px;
}
.fin_tech_problems_content {
    gap: 30px;
    max-width: 100%;
}
.fin_tech_problems_line_left,
.fin_tech_problems_line_right {
    display: none;
}
.fin_tech_problems_title {
    font-size: 24px;
    text-align: left;
}
.fin_tech_problem_item {
    font-size: 14px;
    gap: 12px;
}
.fin_tech_problem_icon {
    width: 20px;
    height: 20px;
}}
@media (max-width: 480px) {
.fin_tech_problems_section {
    padding: 40px 0;
}
.fin_tech_problems_container {
    padding: 0 16px;
}
.fin_tech_problems_line_left,
.fin_tech_problems_line_right {
    max-width: 15%;
    opacity: 0.2;
}
.fin_tech_problems_title {
    font-size: 22px;
}
.fin_tech_problem_item {
    font-size: 14px;
    line-height: 1.5;
}}
/* FIN TECH SOLUTION TOP SECTION */
.fin_tech_solution_top_section {
    background: #f5f5f5;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.fin_tech_solution_top_section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../img/lines_background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0) invert(1) blur(1.1px);
    opacity: 0.95;
    z-index: 0;
}
.fin_tech_solution_top_section > * {
    position: relative;
    z-index: 1;
}
.fin_tech_solution_container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}
.fin_tech_solution_title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #062858;
    margin: 0 0 50px;
    line-height: 1.3;
}
.fin_tech_solution_top_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}
.fin_tech_solution_bottom_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.fin_tech_solution_card {
    padding: 60px;
    border-radius: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
}
.fin_tech_solution_card_dark {
    background: #062858;
    color: #ffffff;
}
.fin_tech_card {
    background-image: url('../img/fin_tech_card_background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.soluciones_agro_card {
    background-image: url('../img/soluciones_agro_card_background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.ingenieria_desarrollo_card {
    background-image: url('../img/ingenieria_desarrollo_card_card_background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.automatizacion_industrial_card {
    background-image: url('../img/automatizacion_industrial_card_background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.soluciones_integrales_card {
    background-image: url('../img/soluciones_integrales_card_background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.seguridad_personal_card {
    background-image: url('../img/seguridad_personal_card_background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.sistemas_especiales_card {
    background-image: url('../img/sistemas_especiales_card_background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.fin_tech_solution_card_light {
    background: #ffffff;
    padding: 35px;
    border-radius: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    color: #062858;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.fin_tech_solution_card_title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 25px;
    line-height: 1.3;
    text-align: right;
}
.fin_tech_solution_card_text {
    font-size: 15px;
    line-height: 1.3;
    color: #ffffff;
    margin: 0;
    text-align: left;
}
.fin_tech_solution_card_title_light {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #062858;
    margin: 0 0 20px;
    line-height: 1.3;
    text-align: right;
}
.fin_tech_solution_card_list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 1;
}
.fin_tech_solution_card_list li {
    font-size: 15px;
    line-height: 1.3;
    color: #ffffff;
    padding-left: 25px;
    position: relative;
}
.fin_tech_solution_card_list li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: #ffffff;
    font-size: 15px;
    line-height: 1.3;
}
.fin_tech_solution_card_list_light {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
    justify-content: flex-start;
    padding-bottom: 0;
    max-width: calc(100% - 35px);
}
.fin_tech_solution_card_list_light li {
    font-size: 15px;
    line-height: 1.3;
    color: #062858;
    padding-left: 20px;
    position: relative;
    text-align: left;
}
.fin_tech_solution_card_list_light li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #062858;
    font-size: 18px;
    line-height: 1.3;
    font-weight: bold;
}
.fin_tech_solution_card_icon {
    position: absolute !important;
    bottom: 30px;
    right: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    pointer-events: none;
}
.fin_tech_solution_card_icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/* FIN TECH SOLUTION BOTTOM SECTION */
.fin_tech_solution_bottom_section {
    background: #062858;
    padding: 80px 0;
}
.fin_tech_solution_bottom_container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}
.fin_tech_solution_bottom_container_top {
    margin-top: 70px;
}
@media (max-width: 1024px) {
.fin_tech_solution_top_section {
    padding: 60px 0;
}
.fin_tech_solution_bottom_section {
    padding: 60px 0;
}
.fin_tech_solution_container {
    padding: 0 24px;
}
.fin_tech_solution_title {
    font-size: 28px;
    margin-bottom: 40px;
}
.fin_tech_solution_top_grid {
    gap: 24px;
    margin-bottom: 30px;
}
.fin_tech_solution_bottom_grid {
    gap: 24px;
}
.fin_tech_solution_card {
    padding: 30px;
    min-height: 350px;
}
.fin_tech_solution_card_title {
    font-size: 22px;
}
.fin_tech_solution_card_title_light {
    font-size: 20px;
}}
@media (max-width: 868px) {
.fin_tech_solution_top_section {
    padding: 50px 0;
}
.fin_tech_solution_bottom_section {
    padding: 50px 0;
}
.fin_tech_solution_container {
    padding: 0 20px;
}
.fin_tech_solution_title {
    font-size: 24px;
    margin-bottom: 30px;
}
.fin_tech_solution_top_grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 25px;
}
.fin_tech_solution_bottom_grid {
    grid-template-columns: 1fr;
    gap: 20px;
}
.fin_tech_solution_card {
    padding: 25px;
    min-height: auto;
}
.fin_tech_solution_card_title {
    font-size: 20px;
    margin-bottom: 20px;
}
.fin_tech_solution_card_title_light {
    font-size: 18px;
    margin-bottom: 15px;
}
.fin_tech_solution_card_list li,
.fin_tech_solution_card_list_light li {
    font-size: 14px;
}
.fin_tech_solution_card_icon {
    width: 50px;
    height: 50px;
    bottom: 15px;
    right: 15px;
}}
@media (max-width: 480px) {
.fin_tech_solution_top_section {
    padding: 40px 0;
}
.fin_tech_solution_bottom_section {
    padding: 40px 0;
}
.fin_tech_solution_container {
    padding: 0 16px;
}
.fin_tech_solution_title {
    font-size: 22px;
    margin-bottom: 25px;
}
.fin_tech_solution_card {
    padding: 20px;
}
.fin_tech_solution_card_title {
    font-size: 18px;
}
.fin_tech_solution_card_title_light {
    font-size: 16px;
}
.fin_tech_solution_card_list li,
.fin_tech_solution_card_list_light li {
    font-size: 13px;
    line-height: 1.5;
}}
/* END FIN TECH SOLUTION ARCHITECTURE SECTION */

/* CTA SECTION */
.cta_section_solution {
    background: #f5f5f5;
    padding: 60px 0;
    min-height: 500px;
    box-sizing: border-box;
}
.cta_container_solution {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
}
.cta_content_solution {
    width: 90%;
    margin-left: auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.cta_logo_solution {
    height: auto;
    max-height: 30px;
    width: auto;
}
.cta_title_solution {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #062858;
    line-height: 1.2;
    margin: 0;
}
.cta_list_solution {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.cta_list_solution li {
    font-size: 15px;
    color: #062858;
    line-height: 1.3;
    padding-left: 20px;
    position: relative;
}
.cta_list_solution li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #062858;
    font-size: 18px;
    line-height: 1;
    font-weight: bold;
}
.cta_security_note {
    margin-top: 8px;
}
.cta_security_note_title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #062858;
    line-height: 1.3;
    margin: 0;
}
.cta_security_note_text {
    width: 85%;
    font-size: 13px;
    color: #666666;
    line-height: 1.3;
    margin: 0;
}
.cta_button_solution {
    width: 220px;
    display: inline-block;
    background: #0CC0DF;
    color: #ffffff;
    padding: 16px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    align-self: flex-start;
    text-align: center;
}
.cta_image_wrapper_solution {
    position: relative;
    width: 100%;
    min-height: 450px;
    height: auto;
    border-radius: 12px;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cta_image_background_solution {
    position: absolute;
    width: 40%;
    height: 40%;
    background-image: url('../img/cta_team.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    z-index: 1;
}
.cta_image_background_left_solution {
    left: -10%;
    top: 38%;
    transform: translateY(-50%) rotate(82deg);
}
.cta_image_background_right_solution {
    right: -5%;
    top: 60%;
    transform: translateY(-50%) rotate(85deg);
}
.cta_image_background_left_sistemas_especiales {
    width: 60%;
    left: -17%;
    top: 40%;
    transform: translateY(-50%) rotate(86deg);
}
.cta_image_background_right_sistemas_especiales {
    width: 60%;
    right: -12%;
    top: 60%;
    transform: translateY(-50%) rotate(85deg);
}
.cta_image_solution {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    border-radius: 12px;
    position: relative;
    z-index: 2;
}
@media (max-width: 1024px) {
.cta_content_solution {
    width: 75%;
}
.cta_section_solution {
    padding: 60px 0;
}
.cta_container_solution  {
    padding: 0 24px;
    gap: 20px;
}
.cta_title_solution {
    font-size: 24px;
}
.cta_image_wrapper_solution {
    min-height: 400px;
}
.cta_image_background_solution {
    width: 45%;
    height: 45%;
}
.cta_image_background_left_solution {
    left: -6%;
    top: 42%;
    transform: translateY(-50%) rotate(82deg);
}
.cta_image_background_right_solution {
    right: -2%;
    top: 55%;
    transform: translateY(-50%) rotate(85deg);
}
.cta_image_background_left_sistemas_especiales , .cta_image_background_right_sistemas_especiales {
    display: none;
}}
@media (max-width: 768px) {
.cta_section_solution {
    padding: 40px 0;
}
.cta_container_solution {
    grid-template-columns: 1fr;
    padding: 0 16px;
    gap: 30px;
}
.cta_content_solution {
    width: 100%;
    text-align: center;
    align-items: center;
}
.cta_title_solution {
font-size: 22px;
}
.cta_button_solution {
    align-self: center;
}
.cta_image_wrapper_solution {
    min-height: 300px;
}
.cta_image_background_solution {
    display: none;
}}
/* END CTA SECTION */