 /* #region Root */
/* 
  ____             _   
 |  _ \ ___   ___ | |_ 
 | |_) / _ \ / _ \| __|
 |  _ < (_) | (_) | |_ 
 |_| \_\___/ \___/ \__|
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
    --navbar-bg: #e9fcff;
    --primary-color: #2a545b;
    --secondary-color: #879ea4;
    --form-bg: #e3e8ec;
    --card-bg: #e3e8ec;
    --main-gradient: linear-gradient(135deg, #E5E9EB, #99B8BD);
}

*, ::before, ::after {
    margin: 0;
    padding: 0;
    box-sizing: inherit;
}

body {
    width: 100%;
    height: 100vh;
    overflow-x: hidden;
    font-family: 'Inter', 'Satoshi', sans-serif;
}

body, main, section {
    overflow-x: hidden;
}

section {
    margin-bottom: 150px;
}

html {
    scroll-behavior: smooth;
}

/* #endregion */

/* #region Navbar */

/*
  _   _             _                
 | \ | | __ ___   _| |__   __ _ _ __ 
 |  \| |/ _` \ \ / / '_ \ / _` | '__|
 | |\  | (_| |\ V /| |_) | (_| | |   
 |_| \_|\__,_| \_/ |_.__/ \__,_|_|   
*/

nav {
    width: 100%;
    position: fixed;
    left: 50%;
    top: 3vh;
    transform: translate(-50%);
    display: flex;
    justify-content: center;
    gap: 20px;
    z-index: 10;
}

.main_navbar, .contact_navbar {
    background: var(--navbar-bg);
    padding: 12px 20px;
    height: 24px;
    border-radius: 10px;
    border: 1px solid #000000;
    font-size: 1em;
    font-weight: 600;
    color: #000000;
    display: flex;
    align-items: center;
    overflow: hidden;
}

nav a {
    text-decoration: none;
    color: #000000;
}

.main_navbar {
    gap: 4em;
    transition: gap 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

nav.collapsed .main_navbar {
    gap: 2em;
}

.logo_section {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.logo_section span {
    display: inline-block;
    max-width: 20px;
    opacity: 1;
    transition: max-width 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.25s ease-out, 
                margin 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

nav.collapsed .logo_section span {
    max-width: 0;
    opacity: 0;
    margin: 0;
    transition: max-width 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.2s ease-in, 
                margin 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo_section img {
    height: 24px;
    margin-right: 0.5em;
    transition: transform 0.2s ease-in-out, 
                margin-right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

nav.collapsed .logo_section img {
    margin-right: 0;
}

.logo_section:hover img {
    transform: scale(1.15) rotate(5deg);
}

.logo_section span {
    transition: transform 0.1s;
}

.logo_section:hover span {
    transform: translateX(4px)
}

.logo_section:hover span:nth-child(3) {
    transition-delay: 0.06s;
}
.logo_section:hover span:nth-child(4) {
    transition-delay: 0.12s;
}

nav .pages{
    display: flex;
    justify-content: center;
    gap: 1.5em;
    transition: gap 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

nav.collapsed .pages {
    gap: 0;
}

nav .pages a {
    display: inline-block;
    max-width: 200px;
    white-space: nowrap;
    opacity: 1;
    overflow: hidden;
    position: relative;
    line-height: 1.6;
    transition: max-width 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.25s ease-out, 
                margin 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                color 0.2s ease-out;
}

nav .pages a:hover {
    color: var(--primary-color);
}

nav .pages a::before {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 0%;
    height: 2px;
    background: #000000;
    border-radius: 5px;
    transition: width 0.3s ease-in-out;
}

nav .pages a:hover::before {
    width: 100%;
}

nav .pages a.selected::before {
    background: var(--primary-color);
}

nav.collapsed .pages a:not(.selected) {
    max-width: 0;
    opacity: 0;
    margin: 0;
    transition: max-width 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.2s ease-in, 
                margin 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

nav .pages a.selected {
    color: var(--primary-color);
}

nav .connect img {
    margin-left: 4px;
    transition: transform 0.2s ease-in-out;
}

nav .connect:hover img {
    transform: translate(2px, -2px) scale(1.05);
}

.contact-arrow {
    background: var(--primary-color);
    width: 15px;
    height: 15px;
    padding: 7px;
    margin-left: 8px;
    border-radius: 5px;
    position: relative;
    z-index: 1;
}

.contact_navbar {
    cursor: pointer;
}

.contact_navbar p {
    z-index: 2;
    transition: color 0.3s 0.1s, transform 0.3s ease-in-out 0.05s;
}

.contact-arrow::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url(./src/icons/contact-arrow.svg);
    background-repeat: no-repeat;
    background-position: center;
    border-radius: inherit;
    transition: transform 0.3s ease-in-out;
}

.contact-arrow::before {
    content: '';
    position: absolute;
    border-radius: inherit;
    inset: 0;
    background: var(--primary-color);
    transition: transform 0.5s ease-in-out;
}

.contact_navbar:hover .contact-arrow::before {
    transform: scale(10.0);
}

.contact_navbar:hover .contact-arrow::after {
    transform: translateX(5px);
}

.contact_navbar:hover p {
    color: #ffffff;
    transform: translateX(5px);
}

.connect span {
    position: relative;
    cursor: pointer;
}

.connect span::before {
    content: '';
    width: 0%;
    height: 2px;
    background: #000000;
    border-radius: 5px;
    position: absolute;
    bottom: -2px;
    left: 0;
    transition: width 0.3s ease-in-out;
}

.connect span:hover::before {
    width: 100%;
}

.burger-menu {
    display: none;
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 1000;
    background: var(--navbar-bg);
    border: 1px solid #000000;
    border-radius: 10px;
    padding: 6px;
    width: 48px;
    height: 48px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
}

.burger-menu:hover {
    transform: scale(1.05);
}

.burger-menu span {
    display: block;
    width: 22px;
    height: 2px;
    background: #000000;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.burger-menu.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.burger-menu.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media screen and (max-width: 1050px) {
    body.menu-open {
        overflow: hidden;
        height: 100vh;
        height: 100dvh;
        position: fixed;
        width: 100%;
    }
    
    nav {
        height: auto;
        top: 0;
        transform: none;
        left: 0;
        justify-content: center;
    }

    .presentation {
        padding-top: 40px;
    }

    .burger-menu {
        display: flex;
    }
    
    .contact_navbar {
        display: none;
    }
    
    .main_navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background: var(--navbar-bg);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 2.5em !important;
        padding: 100px 0px 50px;
        transform: translateX(100%);
        opacity: 0;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                    opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .main_navbar.menu-open {
        transform: translateX(0);
        opacity: 1;
    }
    
    .logo_section {
        order: -1;
        margin-bottom: 1em;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .logo_section span {
        max-width: 20px !important;
        opacity: 1 !important;
        margin: 0 0 0 8px !important;
        transition: none !important;
    }
    
    .logo_section img {
        height: 32px;
        margin-right: 12px !important;
    }
    
    nav .pages {
        flex-direction: column;
        gap: 2em !important;
        align-items: center;
        width: 100%;
        text-align: center;
        transition: none !important;
    }
    
    nav .pages a {
        max-width: none !important;
        opacity: 1 !important;
        margin: 0 !important;
        font-size: 1.4em;
        text-align: center;
        width: 100%;
        display: block;
        transition: color 0.2s ease-out !important;
    }
    
    nav .connect {
        margin-top: 1em;
        font-size: 1.2em;
        padding: 12px 24px;
        border: 1px solid #000000;
        border-radius: 10px;
        background: transparent;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        transition: color 0.2s ease-out !important;
    }
    
    nav .connect span {
        position: static;
    }
    
    nav .connect span::before {
        display: none;
    }
    
    nav.collapsed .main_navbar.menu-open {
        gap: 3em !important;
    }
    
    nav.collapsed .pages a {
        max-width: none !important;
        opacity: 1 !important;
    }
    
    nav.collapsed .logo_section span {
        max-width: 20px !important;
        opacity: 1 !important;
        margin: 0 0 0 8px !important;
    }
}


@media screen and (max-width: 768px) {
    .burger-menu {
        right: 4vw;
        width: 44px;
        height: 44px;
    }
    
    .main_navbar {
        padding: 100px 0px 60px;
    }
    
    nav .pages a {
        font-size: 1.3em;
    }
    
    nav .connect {
        font-size: 1.1em;
    }
}

@media screen and (max-width: 480px) {
    .burger-menu {
        right: 5vw;
        width: 40px;
        height: 40px;
        padding: 10px;
    }
    
    .burger-menu span {
        width: 20px;
    }
    
    .main_navbar {
        padding: 90px 0px 50px;
    }
    
    nav .pages a {
        font-size: 1.2em;
    }
    
    .logo_section img {
        height: 28px !important;
    }
}

/* #endregion */

/* #region Main */

/* 
    __  __       _       
 |  \/  | __ _(_)_ __  
 | |\/| |/ _` | | '_ \ 
 | |  | | (_| | | | | |
 |_|  |_|\__,_|_|_| |_|
*/

main {
        width: 100%;
        height: 100vh;
        background: var(--main-gradient);
        display: flex;
        overflow: hidden;
}

main::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.6' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.5'/%3E%3C/svg%3E");
    pointer-events: none;
}

main * {
        z-index: 2;
}

.presentation {
        height: 100%;
        padding: 30px 4vw;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
}

h1 {
        color: var(--primary-color);
        font-size: 10vh;
        font-weight: 500;
        letter-spacing: -1.5px;
}

main h4 {
        color: #626262;
        font-size: 5vh;
        font-weight: 300;
        line-height: 8vh;
        margin-bottom: 1vh;
}

main h3 {
        color: #000000;
        font-size: 4.5vh;
        font-weight: 500;
        display: inline-block;
        padding: 2px 15px;
        border: 1px solid #000000;
        border-radius: 15px;
}

.moving_role h3::after {
        content: '|';
        margin-left: 5px;
        animation: blink 1s infinite;
}

@keyframes blink {
        0%, 50% {
                opacity: 1;
        }
        51%, 100% {
                opacity: 0;
        }
}

main h5 {
        color: #000000;
        font-size: 2vh;
        font-weight: 400;
        text-decoration: underline;
        text-underline-offset: 4px;
        margin-bottom: 2vh;
}

.certifications {
        display: flex;
        gap: 2vh;
}

.certifications img {
        min-height: 40px;
        height: 5vh;
        transition: transform 0.2s ease-in-out;
}

.certifications img:hover {
        transform: scale(1.1) rotate(5deg);
}

.certifications img:nth-child(odd):hover {
        transform: scale(1.1) rotate(-5deg);
}


.contact_field {
        display: flex;
        gap: 16px;
}

.contact_field button {
        background: var(--navbar-bg);
        color: #000000;
        height: 5vh;
        font-size: 24px;
        font-size: 2vh;
        border-radius: 15px;
        border: 1px solid #000000;
        cursor: pointer;
        transition: transform 0.2s ease-in-out, background 0.3s ease-in-out;
}

.contact_field button:hover {
        transform: scale(1.03);
        background: #d1f0f4;
}

.contact_field button p {
        margin: 0 2vh;
}

.contact_field button img {
        height: 100%;
        width: 3vh;
        padding: 0 10px;
}

@media  (max-height: 800px) {
        .main_navbar, .contact_navbar {
                padding: 12px 20px;
                height: 16px;
                border-radius: 10px;
                font-size: 0.8em;
        }

        .presentation {
                padding: 30px 50px;
        }

        .contact_field button {
                height: 5vh;
                font-size: 2vh;
                font-size: 2vh;
                border-radius: 7px;
        }
}

.cards {
        width: fit-content;
        display: flex;
        gap: 40px;
        padding-right: 40px;
}

.main_card_wrapper {
        position: relative;
        height: 100%;
        width: 30vw;
        min-width: 350px;
}

.main_card {
        position: relative;
        height: 100%;
        width: 100%;
        border-radius: 20px;
        cursor: pointer;
        transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
        text-decoration: none;
        color: inherit;
        display: block;
}

.main_card:hover {
        transform: translateY(-10px);
}

.see-more {
        transition: transform 0.3s ease-in-out;
}

.see-more:hover {
        transform: translateY(10px);
}

.main_card .card-inner {
        position: absolute;
        inset: 0;
        border-radius: inherit;
        background: url(./src/illustration/oteria1.png);
        background-size: cover;
        background-position: center;
        z-index: 1;
        transition: transform 0.3s ease-in-out;
}

.main_card:hover .card-inner {
        transform: scale(1.02);
}

.main_card .card-inner::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(0deg, #000000FF, #00000000 40%);
        z-index: 1;
        border-radius: inherit;
}

.main_card * {
        z-index: 2;
}

.second_cards {
        height: 100%;
        width: 30vw;
        min-width: 350px;
        display: flex;
        flex-direction: column;
        gap: 40px;
}

.second_card {
        position: relative;
        border-radius: 20px;
        height: calc((40% - 20px));
        cursor: pointer;
        transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
        text-decoration: none;
        color: inherit;
        display: block;
}

.second_card:hover {
        transform: translateY(-10px);
}

.second_card .card-inner {
        position: absolute;
        inset: 0;
        border-radius: inherit;
        background: linear-gradient(135deg, #2A545B, #4F858E);
        z-index: 1;
        transition: transform 0.3s ease-in-out;
}

.second_card:hover .card-inner {
        transform: scale(1.02);
}

.second_card#illustrated {
        height: 60%;
}

.second_card#illustrated .card-inner {
        background: url(./src/illustration/oterihack1.png);
        background-size: cover;
        background-position: center;
}

.second_card#illustrated .card-inner::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(0deg, #000000FF, #00000000 50%);
        z-index: 1;
        border-radius: inherit;
}

.second_card#illustrated * {
        z-index: 2;
}

.card_pin {
        position: absolute;
        top: 0;
        left: 0;
        width: fit-content;
        height: auto;
        display: flex;
        margin: 20px;
        padding: 5px 15px;
        gap: 10px;
        background: #ffffff;
        border-radius: 10px;
}

.card_pin p {
        color: var(--primary-color);
        display: inline-block;
}

.cards h4 {
        position: absolute;
        bottom: 20px;
        left: 30px;
        color: #ffffff;
        font-weight: 200;
        font-size: 3vh;
        line-height: 4vh;
}

.second_card:not(#illustrated) p {
        position: absolute;
        top: 30px;
        left: 30px;
        width: calc(100% - 60px);
        color: #ffffff;
        font-weight: 200;
        font-size: 1.5vh;
        line-height: 2vh;
}

.go-arrow {
        position: absolute;
        right: -20px;
        bottom: -20px;
        width: 60px;
        height: 60px;
        padding: 20px;
        border-radius: 50%;
        background: #2a545b;
        background-image: url(./src/icons/main_arrow.svg);
        background-repeat: no-repeat;
        background-position: center;
        transition: transform 0.3s ease-in-out;
}

.main_card:hover .go-arrow,
.second_card:hover .go-arrow {
        transform: translate(5px, 5px);
}

.go-arrow {
        -webkit-mask-image: none !important;
        mask-image: none !important;
        z-index: 3;
}

.main_card .card-inner,
.second_card .card-inner {
        -webkit-mask-image: radial-gradient(circle 120px at calc(100% - 20px) calc(100% - 40px), transparent 0 120px, black 121px);
        -webkit-mask-repeat: no-repeat;
        -webkit-mask-size: 100% 100%;

        mask-image: radial-gradient(circle 75px at calc(100% - 30px) calc(100% - 30px), transparent 0 75px, black 76px);
        mask-repeat: no-repeat;
        mask-size: 100% 100%;
}

.see-more {
        position: absolute;
        bottom: 0;
        left: -40px;
        font-size: 1.5vh;
        font-weight: 400;
        writing-mode: vertical-rl;
        text-orientation: upright;
        text-transform: uppercase;
        display: flex;
        align-items: center;
        gap: 20px;
        color: #000000;
        text-decoration: none;
        cursor: pointer;
        transform: none;
}

.see-more img {
        width: 1.5vh;
        animation: moveArrow 1s infinite;
}

@keyframes moveArrow {
        0% {
                transform: translateY(0);
        }
        50% {
                transform: translateY(30%);
        }
        100% {
                transform: translateY(0);
        }
}

@media screen and (max-width: 1800px) {
        .cards {
                transform: scale(0.9);
        }
}

@media screen and (max-width: 1700px) {
        .presentation {
                padding: 30px 60px;
        }

        .cards {
                gap: 30px;
                padding-right: 30px;
        }

        .main_card_wrapper {
                min-width: 300px;
                width: 28vw;
        }

        .second_cards {
                min-width: 300px;
                width: 28vw;
        }

        main h4 {
                font-size: 4.5vh;
                max-width: 75%;
        }

        main h3 {
                font-size: 4vh;
        }

        .second_card:last-child {
                display: none;
        }

        .second_card#illustrated {
                height: 100%;
        }
}

@media screen and (max-width: 1500px) {
        .presentation {
                padding: 30px 40px;
        }

        h1 {
                font-size: 8vh;
        }

        main h4 {
                font-size: 4vh;
                line-height: 6vh;
        }

        main h3 {
                font-size: 3.5vh;
        }

        .cards {
                gap: 25px;
                padding-right: 25px;
        }

        .main_card_wrapper, .second_cards {
                min-width: 280px;
                width: 26vw;
        }

        .cards h4 {
                font-size: 2.5vh;
                line-height: 3.5vh;
                bottom: 15px;
                left: 20px;
        }

        .second_card:not(#illustrated) p {
                font-size: 1.3vh;
                line-height: 1.8vh;
                top: 20px;
                left: 20px;
        }
}

@media screen and (max-width: 1200px) {
        main {
                flex-direction: column;
                height: fit-content;
                min-height: 100vh;
                padding-bottom: 80px;
                overflow-y: auto;
                scrollbar-width: none;
                -ms-overflow-style: none;
        }

        main::-webkit-scrollbar {
                display: none;
        }

        .presentation {
                padding: 130px 0px 10px;
                width: 100%;
        }

        h1 {
                font-size: 7vh;
                text-align: center;
                margin-bottom: 3vh;
        }

        .presentation h4 {
                font-size: 3.5vh;
                text-align: center;
                line-height: 5vh;
                max-width: 100%;
                margin-bottom: 2vh;
        }

        main h3 {
                font-size: 3vh;
                margin-bottom: 2vh;
        }

        .moving_role {
                text-align: center;
                margin-bottom: 3vh;
        }

        main h5 {
                text-align: center;
                margin-bottom: 2.5vh;
        }

        .certifications {
                justify-content: center;
                margin-bottom: 3vh;
                gap: 3vh;
        }

        .contact_field {
                justify-content: center;
                gap: 20px;
                margin-bottom: 4vh;
        }

        .see-more {
                display: none;
        }

        .cards {
                width: 100%;
                justify-content: center;
                flex-wrap: wrap;
                padding: 0;
                gap: 40px;
        }

        .main_card_wrapper {
                width: calc(50% - 20px);
                min-width: 300px;
                height: 600px;
        }

        .second_cards {
                width: calc(50% - 20px);
                min-width: 300px;
                height: 600px;
                flex-direction: column;
                gap: 40px;
        }

        .second_card {
                width: 100%;    
                height: calc(50% - 20px);
                min-height: 280px;
        }

        .second_card:last-child {
                display: block;
        }

        .second_card#illustrated {
                height: calc(50% - 20px);
        }

        .second_card:last-child {
                display: none;
        }

        .second_card#illustrated {
                height: 100%;
        }
}

@media screen and (max-width: 650px) {
        .main_card_wrapper, .second_cards {
                width: 85%;
        }

        .main_card h4, .second_cards h4 {
                max-width: 65%;
        }
}

/* #endregion */

/* #region Presentation */

/* 
  ____                           _        _   _             
 |  _ \ _ __ ___  ___  ___ _ __ | |_ __ _| |_(_) ___  _ __  
 | |_) | '__/ _ \/ __|/ _ \ '_ \| __/ _` | __| |/ _ \| '_ \ 
 |  __/| | |  __/\__ \  __/ | | | || (_| | |_| | (_) | | | |
 |_|   |_|  \___||___/\___|_| |_|\__\__,_|\__|_|\___/|_| |_|
*/

section h2 {
    width: 80%;
    font-size: 48px;
    margin: 50px auto 70px;
    text-align: center;
    font-weight: 500;
    color: var(--primary-color);
}

.presentation_container {
    display: grid;
    transform-origin: center;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(3, 1fr);
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    height: 650px;
    width: 1600px;
    margin: auto;
}

.presentation_container div {
    background: var(--card-bg);
    border-radius: 15px;
    color: #2A545B;
}

.presentation_container .main {
    font-size: 96px;
    line-height: 80px;
    font-weight: 500;
}

.presentation_container .second {
    font-size: 38px;
    font-weight: 500;
}

.presentation_container div {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.presentation_card1:hover, .presentation_card2:hover, .presentation_card3:hover, .presentation_card4:hover, .presentation_card5:hover, .presentation_card6:hover, .presentation_card7:hover, .presentation_card8:hover, .presentation_card9:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.presentation_card1 { grid-area: 1 / 1 / 3 / 3; }
.presentation_card2 { grid-area: 1 / 3 / 2 / 4; }
.presentation_card3 { grid-area: 1 / 4 / 2 / 5; }
.presentation_card4 { grid-area: 1 / 5 / 2 / 6; }
.presentation_card5 { grid-area: 2 / 3 / 3 / 4; }
.presentation_card6 { grid-area: 2 / 4 / 3 / 6; }
.presentation_card7 { grid-area: 3 / 1 / 4 / 3; }
.presentation_card8 { grid-area: 3 / 3 / 4 / 6; }

.presentation_card1 {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    position: relative;
}

.presentation_card1 .charts {
    background: none;
    height: 100%;
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    align-items: flex-end;
}

.presentation_card1 p {
    transform: translate(20px, -12px);
}

.presentation_card1 .charts div {
    width: 60px;
    height: calc(85%*0.6);
    border-radius: 5px;
    background: #879fa5;
    position: relative;
}

.presentation_card1 .info {
    position: relative;
    display: flex;
    width: fit-content !important;
    background: none !important;
    transform: translate(-270px);
}

.presentation_card1 .chart2 .info {
    transform: translate(-380px);
}

.presentation_card1 .difference {
    width: 240px !important;
    height: 2px !important;
    background: none !important;
    background-image: repeating-linear-gradient(90deg, #000 0 8px, transparent 8px 16px) !important;
    background-position: center;
    background-repeat: repeat-x;
    background-size: auto 100%;
}

.presentation_card1 .value {
    font-size: 20px;
    color: #7C7C7C;
    transform: translate(-20px, -10px);
}

.presentation_card1 .value#v2 {
    transform: translate(-20px, -10px);
}

.presentation_card1 .chart2 {
    height: 85% !important;
    background: var(--primary-color) !important;
}

.presentation_card2, .presentation_card4 {
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.presentation_card3 {
    background-image: url(./src/illustration/presentation1.png) !important;
    background-size: cover !important;
    background-position: center !important;
}

.presentation_card5 {
    background-image: url(./src/illustration/presentation2.png) !important;
    background-size: cover !important;
    background-position: center !important;
}

.presentation_card6 {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.presentation_card6 p {
    margin-left: 40px;
}

.presentation_card6 img {
    position: absolute;
    top: -5px;
    right: -5px;
    transform: rotate(-20deg);
}

.presentation_card7 {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;

}

.presentation_card7 img{
    width: 50%;
    transform: translate(10px, 10px);
    height: auto;
    object-fit: contain;
}

.presentation_card8 {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.presentation_card8 p {
    margin-left: 40px;
}

.presentation_card8::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 45%;
    height: 100%;
    background-image: url("./src/illustration/chart.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right bottom;
    pointer-events: none;
    display: block;
}

@media screen and (max-width: 1650px) {
    .presentation_container {
        margin: 0;
        position: relative;
        left: 50%;
        transform-origin: center;
        transform: translateX(-50%) scale(0.8);
    }
}

@media screen and (max-width: 1370px) {
    .presentation_container {
        transform: translateX(-50%) scale(0.7);
    }
}

@media screen and (max-width: 1200px) {
    .presentation_container {
        transform: translateX(-50%) scale(0.6);
    }

    section {
     margin-bottom: 30px;
    }
}

@media screen and (max-width: 1000px) {
    .presentation_container {
        width: 75%;
        height: auto;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(6, 1fr);
        margin: 0;
        position: relative;
        left: 50%;
        transform-origin: center;
        transform: translateX(-50%);
    }

    .presentation_card {
        height: 200px;
    }

    .presentation_card1 { grid-area: 1 / 1 / 3 / 4; height: 430px;}
    .presentation_card2 { grid-area: 4 / 1 / 5 / 2; height: 200px;}
    .presentation_card3 { grid-area: 4 / 2 / 5 / 3; height: 200px;}
    .presentation_card4 { grid-area: 4 / 3 / 5 / 4; height: 200px;}
    .presentation_card5 { grid-area: 5 / 1 / 6 / 2; height: 200px;}
    .presentation_card6 { grid-area: 5 / 2 / 6 / 4; height: 200px;}
    .presentation_card7 { grid-area: 3 / 1 / 4 / 3; height: 200px;}
    .presentation_card8 { grid-area: 6 / 1 / 7 / 4; height: 200px;}
    .presentation_card9 { grid-area: 3 / 3 / 4 / 4; height: 200px;}

    .presentation_card6 img {
        top: -15px;
        right: -40px;
        transform: rotate(-20deg) scale(0.7);
    }

    .presentation_card9 {
        background-image: url(./src/illustration/banner.png) !important;
        background-size: cover !important;
        background-position: center !important;
    }

    .presentation_container .main {
        font-size: 60px;
        line-height: 40px;
    }

    .presentation_container .second {
        font-size: 32px;
    }
}

@media screen and (max-width: 850px) {

    .presentation_container {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(7, 1fr);
        margin-bottom: 100px;
    }

    .presentation_card1 {grid-area: 1 / 1 / 3 / 3;}
    .presentation_card2 {grid-area: 3 / 1 / 4 / 2;}
    .presentation_card3 {grid-area: 3 / 2 / 4 / 3;}
    .presentation_card4 {grid-area: 4 / 2 / 5 / 3;}
    .presentation_card5 {grid-area: 4 / 1 / 5 / 2;}
    .presentation_card6 {grid-area: 5 / 1 / 6 / 3;}
    .presentation_card7 {grid-area: 6 / 1 / 7 / 3;}
    .presentation_card8 {grid-area: 7 / 1 / 8 / 3;}

    .presentation_card9 {display: none;}

}


@media screen and (max-width: 720px) {

    body {
        overflow-x: hidden;
    }

    .charts .difference {
        display: none;
    }

    .presentation_card1 {
        position: relative;
    }

    .charts {
        position: absolute;
        top: 20px;
        left: 20px;
        display: flex;
        align-items: flex-start !important;
        flex-direction: column;
        gap: 10px;
    }

    .charts .chart1, .charts .chart2 {
        width: 85% !important;
        height: 60px !important;
    }

    .charts .chart1::before {
        content: 'Autres';
        position: absolute;
        font-weight: 600;
        right: -60px;
        top: 50%;
        transform: translateY(-50%);
    }

    .charts .chart2::before {
        content: 'OCA';
        position: absolute;
        font-weight: 600;
        right: -50px;
        top: 50%;
        transform: translateY(-50%);
    }

    .charts .chart2 {
        width: calc(85%*0.6) !important;
    }

    .charts .chart1 .info, .charts .chart2 .info {
        display: none;
    }

    .presentation_container .main {
        font-size: 55px;
        line-height: 40px;
    }

    .presentation_container .second {
        font-size: 28px;
    }

    .presentation_card6 p {
        margin-left: 20px;
    }

    .presentation_card8 p {
        margin-left: 20px;
    }

    .presentation_card1 p {
        width: 90%;
    }
}

@media screen and (max-width: 480px) {
    .presentation_container {
        width: 90%;
        grid-template-rows: repeat(8, auto);
        height: auto;
        gap: 20px;
    }

    .presentation_card1 {height: 300px;}
    
    .presentation_card2, .presentation_card3, .presentation_card4, .presentation_card5, .presentation_card6, .presentation_card7, .presentation_card8 {
        height: 150px !important;
    }

    .presentation_card6 img {
        top: -25px;
        right: -30px;
        transform: rotate(-20deg) scale(0.6);
    }

    /* .presentation_card7 .second{
        font-size: 24px;
    } */

    .charts .chart1{
        width: 80% !important;
    }

    /* .presentation_card8 .main {
        font-size: 40px;
    } */

    .presentation_container .main {
        font-size: 42px;
        line-height: 40px;
    }

    .presentation_container .second {
        font-size: 20px;
    }
}


/* #endregion */

/* #region Services */

/* 
    _   _                                 _               
 | \ | | ___  ___   ___  ___ _ ____   _(_) ___ ___  ___ 
 |  \| |/ _ \/ __| / __|/ _ \ '__\ \ / / |/ __/ _ \/ __|
 | |\  | (_) \__ \ \__ \  __/ |   \ V /| | (_|  __/\__ \
 |_| \_|\___/|___/ |___/\___|_|    \_/ |_|\___\___||___/
*/

.services {
        width: 100%;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 60px;
        padding-bottom: 60px;
}

.service_card {
        position: relative;
        width: 300px;
        height: 530px;
        padding: 25px 50px;
        background: #e3e8ec;
        border-radius: 15px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
        cursor: pointer;
        flex-shrink: 0;
        text-decoration: none;
        color: inherit;
        display: block;
}

.service_card:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.service_card#odd {
        background: #e3eff9;
        transform: translateY(30px);
}

.service_card#odd:hover {
        transform: translateY(20px);
}

.service_card img {
        margin-top: 20px;
        width: 90%;
        margin: 20px 5% 16px;
        transition: transform 0.3s ease-in-out;
}

.service_card:hover img {
        transform: scale(1.05);
}

.service_card h3 {
        font-size: 24px;
        font-weight: 800;
        color: var(--primary-color);
        text-align: center;
}

.service_card p {
        margin-top: 20px;
        font-size: 16px;
        font-weight: 500;
        text-align: center;
}

.service_see_more {
        position: absolute;
        bottom: -0px;
        right: 20px;
        display: flex;
        align-items: center;
        font-size: 16px;
        text-wrap: nowrap;
        white-space: nowrap;
        transition: transform 0.3s ease-in-out;
}

.service_see_more p {
        margin: 0 5px 0 0;
        position: relative;
}

.service_see_more p::before {
        content: '';
        position: absolute;
        bottom: 0px;
        left: 0;
        width: 0%;
        height: 2px;
        background: #000000;
        border-radius: 5px;
        transition: width 0.3s ease-in-out;
}

.service_see_more:hover p::before {
        width: 100%;
}

.service_see_more img {
        width: 16px;
        height: 16px;
        transition: transform 0.3s ease-in-out;
}

.service_see_more:hover img {
        transform: translateX(3px);
}

@media screen and (max-width: 850px) {
        .service_card#odd {
                transform: translateY(0px);
        }
        
        .service_card#odd:hover {
                transform: translateY(-10px);
        }

        .services {
                padding-bottom: 40px;
        }
}

@media screen and (max-width: 425px) {
        .services {
                align-items: center;
                gap: 40px;
                padding: 0 0 40px 0;
        }

        .service_card {
                width: 75%;
                max-width: 300px;
                height: auto;
                min-height: 480px;
                padding: 25px 30px 50px;
        }

        .service_card h3 {
                font-size: 22px;
        }

        .service_card p {
                font-size: 15px;
                margin-top: 16px;
        }

        .service_see_more {
                bottom: 20px;
                right: 30px;
                font-size: 14px;
        }
}

@media screen and (max-width: 375px) {

        .service_card {
                padding: 20px 25px 50px;
        }

        .service_card h3 {
                font-size: 20px;
        }

        .service_card p {
                font-size: 14px;
        }
}

@media screen and (max-width: 320px) {
        .services {
                gap: 30px;
                padding-bottom: 30px;
        }

        .service_card {
                padding: 20px 20px 50px;
                min-height: 460px;
        }

        .service_card h3 {
                font-size: 19px;
        }

        .service_card p {
                font-size: 13px;
                line-height: 1.5;
        }

        .service_see_more {
                right: 20px;
                font-size: 13px;
        }
}

/* #endregion */

/* #region Confiance */

/* 
   ____             __ _                      
  / ___|___  _ __  / _(_) __ _ _ __   ___ ___ 
 | |   / _ \| '_ \| |_| |/ _` | '_ \ / __/ _ \
 | |__| (_) | | | |  _| | (_| | | | | (_|  __/
  \____\___/|_| |_|_| |_|\__,_|_| |_|\___\___|
*/

.trust_partners {
    height: 200px;
    width: 100%;
    background-image: url(./src/illustration/banner.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;

    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.trust_partners img {
    height: 50%;
    transition: transform 0.3s ease-in-out;
}

.trust_partners img:hover {
    transform: scale(1.05) rotate(3deg);
}

/* Version avec dÃ©filement pour mobile/tablette */
.trust_partners_scroll {
    display: none;
    height: 200px;
    width: 100%;
    background-image: url(./src/illustration/banner.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    overflow: hidden;
    position: relative;
}

.partners_track {
    display: flex;
    align-items: center;
    gap: 80px;
    height: 100%;
    width: max-content;
    animation: scroll-partners 30s linear infinite;
}

.partners_track img {
    height: 100px;
    flex-shrink: 0;
}

@keyframes scroll-partners {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100% / 3));
    }
}

@media screen and (max-width: 1000px) {
    .trust_partners {
        display: none;
    }
    
    .trust_partners_scroll {
        display: block;
    }
}

/* #endregion */

/* #region Infos */

/* 
  ___        __           
 |_ _|_ __  / _| ___  ___ 
  | || '_ \| |_ / _ \/ __|
  | || | | |  _| (_) \__ \
 |___|_| |_|_|  \___/|___/
*/

.info_bar {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 10%;
}

.info_bar:nth-child(2) {
    margin-bottom: 100px;
}

.info_bar .info {
    width: 40%;
    max-width: 700px;
}

.info_bar h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.info_bar .address {
    margin-top: 10px;
    font-weight: 200;
}

.member_cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.member_card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 300px;
    height: 430px;
    border-radius: 20px;
    background: #325a61;
    overflow: hidden;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    cursor: pointer;
}

.member_card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url(./src/illustration/T.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: transform 0.3s ease-in-out;
    z-index: 0;
}

.member_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.member_card:hover::before {
    transform: scale(1.1);
}

.member_card#c2::before {
    background-image: url(./src/illustration/R.png);
}

.member_card#c3::before {
    background-image: url(./src/illustration/A.png);
}

.member_card p {
    z-index: 3;
    transform: translate(20px, -15px);
}

.member_card::after {
    content: '';
    position: absolute;
    z-index: 1;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.8), rgba(0,0,0,0) 60%);
    border-radius: inherit;
    pointer-events: none;
}

.member_card .name {
    font-size: 24px;
    color: #ffffff;
    font-weight: 500;
}

.member_card .role {
    font-size: 16px;
    color: #A9A9A9;
    font-weight: 400;
}

.info_sec {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 12px;
    position: relative;
}

.info_sec::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 42px;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease-in-out;
}

.info_sec:hover::after {
    width: calc(100% - 42px);
}

.info_sec img {
    height: 32px;
}



@media screen and (max-width: 1000px) {
    .info_bar {
        align-items: center;
        flex-direction: column;
        gap: 50px;
    }

    .info_bar .info {
        width: 100%;
    }

    .info_bar h3 {
        text-align: center;
    }

    .map_wrap {
        margin: 20px auto;
        transform: translate(10%);
    }

    /* center align adress */
    .info_bar .address {
        text-align: center;
        transform: translate(-10%);
    }

    .member_cards {
        justify-content: center;
    }
}

/* #endregion */

/* #region Form */

/* 
  _____                    
 |  ___|__  _ __ _ __ ___  
 | |_ / _ \| '__| '_ ` _ \ 
 |  _| (_) | |  | | | | | |
 |_|  \___/|_|  |_| |_| |_|
*/

.contact-section {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 80px 0px;
    background: transparent;
}

.contact-container {
    background: var(--form-bg);
    border-radius: 20px;
    padding: 50px 60px;
    max-width: 700px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-container h1 {
    font-size: 36px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.contact-subtitle {
    font-size: 14px;
    font-weight: 400;
    color: #626262;
    line-height: 1.6;
    margin-bottom: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.contact-container input[type="text"],
.contact-container input[type="email"],
.contact-container input[type="tel"],
.contact-container textarea {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 1px solid var(--secondary-color);
    background: transparent;
    font-size: 14px;
    font-family: 'Inter', 'Satoshi', sans-serif;
    transition: border-color 0.3s;
}

.contact-container input[type="text"]:focus,
.contact-container input[type="email"]:focus,
.contact-container input[type="tel"]:focus,
.contact-container textarea:focus {
    outline: none;
    border-bottom-color: var(--primary-color);
}

.contact-container input::placeholder,
.contact-container textarea::placeholder {
    color: var(--secondary-color);
    opacity: 0.6;
}

.contact-container textarea {
    resize: vertical;
    min-height: 60px;
    margin-bottom: 30px;
}

.checkbox-section {
    margin-bottom: 30px;
}

.checkbox-section h3 {
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.checkbox-item {
    display: flex;
    align-items: center;
}

.checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.checkbox-item label {
    margin: 0;
    cursor: pointer;
    font-weight: 400;
    font-size: 14px;
}

.submit-container {
    display: flex;
    justify-content: flex-end;
    margin-top: 40px;
}

.contact-container button[type="submit"] {
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Inter', 'Satoshi', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.contact-container button[type="submit"]:hover {
    background: #1f3e44;
    transform: translateX(5px);
}

.contact-container button[type="submit"]::after {
    content: '→';
    font-size: 20px;
}

input#budget {
    margin-bottom: 30px;
}

@media (max-width: 900px) {
    .contact-container {
        max-width: 80%;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0px;
    }

    .contact-container {
        padding: 40px 30px;
    }

    .contact-container h1 {
        font-size: 28px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 24px;
    }

    .checkbox-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .submit-container {
        justify-content: stretch;
    }

    .contact-container button[type="submit"] {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 40px 0px;
    }

    .contact-container {
        padding: 30px 20px;
        border-radius: 15px;
    }

    .contact-container h1 {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .contact-subtitle {
        font-size: 13px;
        margin-bottom: 30px;
    }

    .form-group label {
        font-size: 13px;
    }

    .contact-container input[type="text"],
    .contact-container input[type="email"],
    .contact-container input[type="tel"],
    .contact-container textarea {
        font-size: 13px;
        padding: 10px 0;
    }

    .checkbox-section h3 {
        font-size: 13px;
        margin-bottom: 16px;
    }

    .checkbox-item label {
        font-size: 13px;
    }

    .contact-container button[type="submit"] {
        padding: 12px 30px;
        font-size: 15px;
    }
}

/* #endregion */

/* #region Footer */
/*
  _____           _
 |  ___|__   ___ | |_ ___ _ __
 | |_ / _ \ / _ \| __/ _ \ '__|
 |  _| (_) | (_) | ||  __/ |
 |_|  \___/ \___/ \__\___|_|
*/

footer {
    width: 100%;
    background: #d4dce0;
    padding: 60px 0 0 0;
    margin-top: 0;
    position: relative;
    z-index: 5;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px 40px 40px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.footer-brand h2 {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.2;
}

.footer-tagline {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 400;
    margin: 0;
    max-width: 250px;
}

.footer-section h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-section ul li {
    font-size: 14px;
}

.footer-section a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.footer-appointment {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-appointment span {
    color: var(--primary-color);
}

.calendar-icon {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    transition: transform 0.3s;
}

.calendar-icon:hover {
    transform: scale(1.1);
}

.footer-social {
    display: flex;
    flex-direction: column;
}

.footer-social p {
    font-size: 14px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.linkedin-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 8px;
    margin-bottom: 16px;
    transition: all 0.3s !important;
}

.linkedin-link:hover {
    background: #1f3e44;
    transform: translateY(-3px);
}

.scroll-top {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    transition: background 0.3s, transform 0.3s;
}

.scroll-top:hover {
    background: #1f3e44;
    transform: translateY(-5px);
}

.footer-legal {
    background: #c5d0d5;
    padding: 24px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(42, 84, 91, 0.1);
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 14px;
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.footer-address {
    font-size: 14px;
    color: var(--primary-color);
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    footer {
        margin-top: 80px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        padding: 0 20px 30px 20px;
        gap: 30px;
    }

    .footer-legal {
        flex-direction: column;
        gap: 16px;
        padding: 20px;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 12px;
    }
}

/* #endregion */


@media screen and (max-width: 1050px) {

    body.menu-open {
        overflow: hidden;
        height: 100vh;
        height: 100dvh;
        position: fixed;
        width: 100%;
    }
    
    nav {
        height: auto;
        top: 0;
    }

    .presentation {
        padding-top: 40px;
    }

    .burger-menu {
        display: flex;
    }
    
    .contact_navbar {
        display: none;
    }
    
    nav {
        justify-content: center;
    }
    
    .main_navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background: var(--navbar-bg);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 2.5em !important;
        padding: 100px 0px 50px;
        transform: translateX(100%);
        opacity: 0;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                    opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .main_navbar.menu-open {
        transform: translateX(0);
        opacity: 1;
    }
    
    .logo_section {
        order: -1;
        margin-bottom: 1em;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .logo_section span {
        max-width: 20px !important;
        opacity: 1 !important;
        margin: 0 0 0 8px !important;
        transition: none !important;
    }
    
    .logo_section img {
        height: 32px;
        margin-right: 12px !important;
    }
    
    nav .pages {
        flex-direction: column;
        gap: 2em !important;
        align-items: center;
        width: 100%;
        text-align: center;
        transition: none !important;
    }
    
    nav .pages a {
        max-width: none !important;
        opacity: 1 !important;
        margin: 0 !important;
        font-size: 1.4em;
        text-align: center;
        width: 100%;
        display: block;
        transition: color 0.2s ease-out !important;
    }
    
    nav .connect {
        margin-top: 1em;
        font-size: 1.2em;
        padding: 12px 24px;
        border: 1px solid #000000;
        border-radius: 10px;
        background: transparent;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        transition: color 0.2s ease-out !important;
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-10px);
    }
}

.form-message {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}