:root{
    --primary-color: #345DCA;
    --secondary-color: #345DCA;
    --background-color: #020617;
    --text-color: #ffffff;
    --text-secondary-color: #b0b8d1;
    --font-family: 'inter', sans-serif;
    --font-size: 16px;
}

body{
    margin: 0;
    padding: 0;
    font-family: var(--font-family);
    font-size: var(--font-size);
    background-color: var(--background-color);
    color: var(--text-color);
}

/* Grotere ruimte tussen sections op alle schermen */
section {
    margin-top: 8vw;
    margin-bottom: 8vw;
}

/* Op mobiel/tablet ook extra ruimte */
@media (max-width: 900px) {
    section {
        margin-top: 14vw;
        margin-bottom: 14vw;
    }
}

/* Extra margin onder de eerste p in elke section op mobiel */
@media (max-width: 900px) {
    section > p {
        margin-bottom: 10vw !important;
    }
}

/* Header Start */
header{
    position:sticky;
    top: 0;
    z-index: 1;
    padding: 20px;
    text-align: center;
    display: flex;
    justify-content: space-between;
}

.logo_header{
    display: flex;
    flex-direction: row;
    font-size: 0.5vw;
    font-weight: bold;
    gap: 0.5vw;
}

.logo_xs{
    width: 2.2vw;
    height: 2.3vw;
}

ul{
    margin: 20px 0;
    display: flex;
    justify-content: right;
    flex-direction: row;
    gap: 2em;
}

li{
    list-style: none;
    margin: 0 10px;
}

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

header a:hover{
    color: var(--secondary-color);
}

/* Header End */

/* Section 1 Hero start */

section:first-of-type{
    margin-top: -10vh;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    height: 100vh;
}

.Hero_content{
    width: 35%;
}

.Hero_content h1{
    font-size: 4.5vw;
    margin: 0;
}
.Hero_content p{
    font-size: 1.5vw;
    color: var(--text-secondary-color);
}

button{
    text-align: center;
    margin: 0;
    background-color: var(--primary-color);
    color: var(--background-color);
    border-radius: .5vw;
    border: none;
    padding: 1vw 2vw;
    font-size: 1.2vw;
    cursor: pointer;
    margin-top: 1vw;
    width: 10vw;
    height: 7vh;
    margin-right: .5em;
}

.Hero_img img{
    width: 39vw;
    height: 81vh;
}

button:hover{
    animation: boureShake 0.5s ease-in-out;
}

.btn_offerte{
    background-color: transparent;
    color: var(--primary-color);
    
    border: 2px solid var(--primary-color);
}

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

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

@keyframes boureShake {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}
/* Section 1 Hero end */
/* Section 2 Slogan Start */

section:nth-of-type(2){
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40vh;
    background-color: var(--primary-color);
}

#slogan h2{
    font-size: 2.2vw;
    text-align: center;
    width: 60%;
    font-style: italic;
    font-weight: 100;
}

/* Section 2 Slogan End */
/* Section 3 Focus_Points */

#focusPoints{
    text-align: center;
    height: 100vh;
    padding: 8vw;
}

#focusPoints h2{
    color: var(--text-color);
    font-size: 2.4vw;
    margin-bottom: 1vw;
    font-weight: 600;
}

#focusPoints > p{
    font-size: 1.2vw;
    color: var(--text-secondary-color);
    margin-bottom: 2vw;
}

.focusPoint_container{
    margin-top: 10vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
    background-color: var(--background-color);
}

.focusPoint_tile{
    width: 17vw;
    height: 50vh;
    margin: 0 1.5vw;
    background-size: cover;
    padding: 2vw;
    color: var(--text-color);
    border-radius: 1vw;
    display: flex;
    text-align: start;
    flex-direction: column;
    justify-content: flex-end;
}

.focusPoint_tile:first-of-type{
    background-image: url(img/scalability.png);
}

.focusPoint_tile:nth-of-type(2){
    background-image: url(img/Accesability.png);
}

.focusPoint_tile:nth-of-type(3){
    background-image: url(img/Responsive.png);
}

/* Animations for focusPoint_tile */
@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-80px);}
    to   { opacity: 1; transform: translateX(0);}
}
@keyframes slideInBottom {
    from { opacity: 0; transform: translateY(80px);}
    to   { opacity: 1; transform: translateY(0);}
}
@keyframes slideInRight {
    from { opacity: 0; transform: translateX(80px);}
    to   { opacity: 1; transform: translateX(0);}
}

/* Alleen als .animate aanwezig is, animatie toepassen */
.focusPoint_tile.animate {
    pointer-events: auto;
    opacity: 0;
    animation-fill-mode: forwards;
    animation-duration: 1.6s;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

.focusPoint_tile.animate:first-of-type {
    animation-name: slideInLeft;
    animation-delay: 0.2s;
}

.focusPoint_tile.animate:nth-of-type(2) {
    animation-name: slideInBottom;
    animation-delay: 0.5s;
}

.focusPoint_tile.animate:nth-of-type(3) {
    animation-name: slideInRight;
    animation-delay: 0.8s;
}

/* Section 3 Focus_Points */
/* Section 4 Workflow */

#Workflow{
    height: 100vh;
    display: flex;
    justify-content: center;
    flex-direction:row;
    align-items: center;
    height: 100vh;
    gap: 5vw;
}

#Workflow img{
    height: 70vh;
}

.workflow_img.animate{
    animation-name: slideInLeft; /* Voegt de slide-in animatie toe */
    animation-duration: 1.5s; /* Duur van de animatie */
}

/* Section 5 Team Start */

#Team{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#Team h2 {
    color: var(--text-color);
    font-size: 2.4vw;
    margin-bottom: 1vw;
    font-weight: 600;
    text-align: center;
}

#Team p {
    color: var(--text-secondary-color);
    font-size: 1.1vw;
    margin: 0 auto;
    max-width: 600px;
    text-align: center;
}

.team_container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 2vw;
}

/* Team grid styling */
.team_grid {
    display: flex;
    flex-direction: row;
    gap: 2vw;
    justify-content: center;
    align-items: stretch;
    margin-top: 2vw;
}

.team_card {
    flex: 1 1 0;
    max-width: 380px;
    min-width: 260px;
    min-height: 420px;
    background: var(--background-color);
    border: 1px solid var(--primary-color);
    border-radius: 16px;
    box-shadow: 0 4px 24px 0 rgba(44, 62, 80, 0.10);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 0 2em 0;
    transition: box-shadow 0.2s, transform 0.2s;
    opacity: 0;
    transform: translateY(60px) scale(0.96);
    transition: opacity 0.3s, transform 0.3s;
}


.team_card:hover {
    box-shadow: 0 8px 32px 0 rgba(79,108,247,0.15);
    transform: translateY(-4px) scale(1.02);
}

.team_card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 16px 16px 0 0;
}

.team_info {
    padding: 1.3em 1.5em 0 1.5em;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.skills {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5em;
    margin-top: 0.5em;
}

.team_name {
    font-weight: 600;
    color: var(--text-color);
    font-size: 1.08em;
    margin-bottom: 0.2em;
}

.team_role {
    color: var(--text-secondary-color);
    font-size: 0.98em;
    letter-spacing: 0.01em;
}

/* Animations for team_card */
@keyframes teamCardFadeInUp {
    0% {
        opacity: 0;
        transform: translateY(60px) scale(0.96);
    }
    60% {
        opacity: 1;
        transform: translateY(-8px) scale(1.04);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.team_card.animate {
    animation: teamCardFadeInUp 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.team_card.animate:nth-child(1) { animation-delay: 0.1s; }
.team_card.animate:nth-child(2) { animation-delay: 0.3s; }
.team_card.animate:nth-child(3) { animation-delay: 0.5s; }
.team_card.animate:nth-child(4) { animation-delay: 0.7s; }
/* Section 5 Team End */

/* Features Section */

.feature_icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.features_header {
    text-align: center;
    margin-bottom: 3vw;
}

.features_header h2 {
    color: var(--text-color);
    font-size: 2.4vw;
    margin-bottom: 1vw;
    font-weight: 600;
}

.features_header p {
    color: var(--text-secondary-color);
    font-size: 1.1vw;
    margin: 0 auto;
    max-width: 600px;
}

.feature_card p:nth-of-type(2){
    position: absolute;
    font-size: 0.9em;
    bottom: 1.5em;
}

.features_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 kolommen */
    gap: 2vw;
    max-width: 1100px;
    margin: 0 auto;
}

.feature_card {
    background: rgba(255,255,255,0.02);
    border: 1px solid #23263a;
    border-radius: 1vw;
    width: 300px;
    min-height: 220px;
    padding: 2vw 1.2vw 1.2vw 1.2vw;
    box-shadow: 0 4px 24px 0 rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.2s, box-shadow 0.2s;
    opacity: 0;
    transform: translateY(40px);
}

.feature_card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px 0 rgba(0,0,0,0.18);
}

.feature_icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    margin-bottom: 1vw;
}

.feature_card h3 {
    color: var(--text-color);
    font-size: 1.15em;
    margin: 0 0 0.5vw 0;
    font-weight: 500;
}

.feature_card p {
    color: var(--text-secondary-color);
    font-size: 1em;
    margin: 0;
}

/* Animations for feature_card */
@keyframes featureFadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature_card.animate {
    animation: featureFadeInUp 1.1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.feature_card.animate:nth-of-type(1) { animation-delay: 0.1s; }
.feature_card.animate:nth-of-type(2) { animation-delay: 0.3s; }
.feature_card.animate:nth-of-type(3) { animation-delay: 0.5s; }
.feature_card.animate:nth-of-type(4) { animation-delay: 0.7s; }
.feature_card.animate:nth-of-type(5) { animation-delay: 0.9s; }
.feature_card.animate:nth-of-type(6) { animation-delay: 1.1s; }

/* Testimonials Section */
.testimonials_section {
    padding: 6vw 0 7vw 0;
    background: var(--background-color);
    text-align: center;
}

.testimonials_title {
    color: var(--text-color);
    font-size: 2.6vw;
    font-weight: 700;
    margin-bottom: 1vw;
}

.testimonials_subtitle {
    color: var(--text-secondary-color);
    font-size: 1.2vw;
    margin-bottom: 3vw;
}

.testimonials_slider {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2vw;
    flex-wrap: wrap;
}

.testimonial_card {
    background: rgba(255,255,255,0.02);
    border: 1px solid #23263a;
    border-radius: 1.2vw;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    min-width: 320px;
    max-width: 420px;
    width: 100%;
    min-height: 220px;
    box-shadow: 0 4px 24px 0 rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    opacity: 0;
    transform: scale(0.8) translateY(40px);
}

.testimonial_card.active {
    transform: scale(1.08);
    box-shadow: 0 8px 32px 0 rgba(0,0,0,0.18);
    opacity: 1;
}

.testimonial_content {
    flex: 1 1 60%;
    padding: 2vw 1vw 2vw 2vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.testimonial_content h3 {
    color: var(--text-color);
    font-size: 1.1em;
    margin: 0 0 0.7vw 0;
    font-weight: 600;
}

.testimonial_content p {
    color: var(--text-secondary-color);
    font-size: 1em;
    margin-bottom: 1.5vw;
}

.testimonial_user {
    display: flex;
    align-items: center;
    gap: 0.8em;
}

.testimonial_avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--text-secondary-color);
}

.testimonial_name {
    color: var(--text-color);
    font-weight: 500;
    font-size: 1em;
}

.testimonial_role {
    color: var(--text-secondary-color);
    font-size: 0.9em;
}

.testimonial_image {
    flex: 1 1 40%;
    min-width: 120px;
    background-size: cover;
    background-position: center;
}

/* Animations for testimonials */
@keyframes testimonialPopIn {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(40px);
    }
    60% {
        opacity: 1;
        transform: scale(1.08) translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.testimonial_card.animate {
    animation: testimonialPopIn 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.testimonial_card.animate:nth-child(2) { animation-delay: 0.1s; } /* midden */
.testimonial_card.animate:nth-child(3) { animation-delay: 0.4s; } /* rechts */
.testimonial_card.animate:nth-child(1) { animation-delay: 0.7s; } /* links */

/* --- Responsive Styles --- */

/* General body/font scaling */
body {
    font-size: 16px;
}

/* Header */
@media (max-width: 900px) {
    header {
        /* flex-direction: column; */
        align-items: flex-start;
        padding: 10px;
    }
    .logo_header img{
        width: 2em;
        height: 2em;
        padding: 0.2em;
    }
    .logo_header {
        font-size: 1.2em;
    }
    .Hero_content {
        width: 90%;
        margin: 0 auto;
    }
    .Hero_content h1 {
        font-size: 3em;
    }
    .Hero_content p {
        font-size: 1.2em;
    }
    button, .btn_offerte {
        width: 30vw;
        font-size: 4vw;
        height: auto;
        padding: 3vw 0;
        border-radius: 2.5vw;
    }
    #mainNav ul li {
        display: none; 
    }

    #mainNav ul li:last-child {
        display: inline-block; 
    }

    #mainNav {
        display: block; 
    }

    .Hero_img {
        display: none;
    }
}

/* Slogan Section */
@media (max-width: 700px) {
    section:nth-of-type(2) {
        height: auto;
        padding: 8vw 0;
    }
    #slogan h2 {
        font-size: 5vw;
        width: 90%;
    }
}

/* Focus Points */
@media (max-width: 900px) {
    #focusPoints {
        padding: 4vw 2vw;
        height: auto;
    }
    .focusPoint_container {
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 4vw;
        margin-top: 4vw;
        -webkit-overflow-scrolling: touch;
    }
    .focusPoint_tile {
        min-width: 80vw;
        max-width: 80vw;
        width: 100vw;
        height: 60vh;
        box-sizing: border-box;
        scroll-snap-align: start;
        padding: 8vw 5vw;
        font-size: 4vw;
        margin: 0;
        border-radius: 6vw;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }
    #focusPoints h2 {
        font-size: 5vw;
    }
    #focusPoints > p {
        font-size: 3vw;
    }
}

/* Workflow Section */
@media (max-width: 900px) {
    #Workflow {
        display: none !important;
    }
}

/* Team Section */
@media (max-width: 900px) {
    #Team {
        height: auto;
        padding: 8vw 0;
    }
    .team_grid {
        flex-direction: column;
        gap: 4vw;
        align-items: center;
    }
    .team_card {
        max-width: 90vw;
        width: 100%;
        min-width: 0;
        min-height: 300px;
        padding: 4vw 2vw;
    }
    .team_card img {
        height: 180px;
    }
    #Team h2,
    .features_header h2 {
        font-size: 6vw;
    }
    #Team p,
    .features_header p {
        font-size: 3vw;
    }
    .skills{
        display: none !important;
    }
}

/* Features Section */
@media (max-width: 900px) {
    .features_header p{
        margin-bottom: 2.5em;
    }
    .feature_card p:nth-of-type(2){
    position: static;

}
    .features_grid {
        display: flex;
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
    }
    .feature_card {
        width: 37vw;
        min-width: 0;
        padding: 6vw 4vw;
        font-size: 4vw;
        margin: 0 auto;
        display: flex;
        justify-content:space-evenly;
    }
    .feature_icon {
        width: 2em;
        height: 2em;
        margin-bottom: 2vw;
    }
    .feature_card p{
        font-size: 3vw;
    }
    .feature_card h3 {
        font-size: 5vw;
    }
    #Features{
        padding: 4vw 3vw;
    }
}

/* Testimonials Section */
@media (max-width: 900px) {
    .testimonials_title {
        font-size: 7vw;
    }
    .testimonials_subtitle {
        font-size: 3vw;
    }
    .testimonials_slider {
        flex-direction: column;
        gap: 4vw;
    }
    .testimonial_card,
    .testimonial_card.active,
    .testimonial_card:not(.active) {
        max-width: 95vw;
        min-width: 0;
        min-height: 120px;
        max-height: none;
        height: auto;
        flex-direction: column;
    }
    .testimonial_image {
        min-width: 100%;
        height: 120px;
    }
    .testimonial_content {
        padding: 6vw 4vw;
        text-align: left;
    }
}

/* Contact Section */
@media (max-width: 900px) {
    #Contact {
        width: 90%;
        margin: 0 auto;
        margin-bottom: 4em;
    }
    .contact_cta {
        width: 100%;
        max-width: 100%;
        padding: 4vw 2vw;
        text-align: center;
    }
    #Contact h2 {
        font-size: 1.5em;
    }
    #Contact p {
        font-size: .75em;
    }
    .contact_form {
        display: flex;
        align-items: center;
        background-color: none;
    }
    .form_row, .form_group{
        flex-direction: column;
        width: 100%;
    }
    form.contact_form {
        background-color: none;
    }
}

/* Footer */
@media (max-width: 900px) {
    .footer_top {
        flex-direction: column;
        gap: 2vw;
        align-items: flex-start;
    }
    .footer_brand, .footer_links, .footer_contact, .footer_social {
        min-width: 0;
        width: 100%;
        margin-bottom: 2vw;
    }
    .footer_links ul,
    .footer_contact ul {
        display: flex;
        flex-wrap: wrap;
        gap: 2vw;
    }
    .footer_links li,
    .footer_contact li {
        min-width: 120px;
    }
}

/* Hide scrollbars on mobile for a cleaner look (optional) */
/* @media (max-width: 700px) {
    body::-webkit-scrollbar {
        display: none;
    }
} */

/* Hamburger icon styling */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 36px;
    height: 36px;
    cursor: pointer;
    z-index: 1001;
}
.mobile-nav-toggle span {
    display: block;
    height: 4px;
    width: 100%;
    background: var(--text-color);
    border-radius: 2px;
    transition: 0.3s;
}

/* Mobile nav styles */
/* @media (max-width: 700px) {
    .mobile-nav-toggle {
        display: flex;
        margin-left: auto;
        margin-right: 10px;
    }
    nav#mainNav {
        position: fixed;
        top: 0;
        right: -100vw;
        width: 70vw;
        height: 100vh;
        background: #10142a;
        box-shadow: -4px 0 24px 0 rgba(0,0,0,0.18);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 60px 24px 24px 24px;
        transition: right 0.3s;
        z-index: 1000;
    }
    nav#mainNav.open {
        right: 0;
    }
    nav#mainNav ul {
        flex-direction: column;
        gap: 2em;
        width: 100%;
        margin: 0;
        padding: 0;
    }
    nav#mainNav li {
        margin: 0;
    }
    /* Optioneel: body scroll lock als menu open is */
    body.nav-open {
        overflow: hidden;
    }

@keyframes contactFormFadeIn {
    0% {
        opacity: 0;
        transform: translateX(60px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.contact_form {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.4s, transform 0.4s;
}

.contact_section.animate .contact_form {
    animation: contactFormFadeIn 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.5s forwards;
}

/* Contact section animation */
@keyframes contactFadeInUp {
    0% {
        opacity: 0;
        transform: translateY(60px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact_section {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.4s, transform 0.4s;
}

.contact_section.animate {
    animation: contactFadeInUp 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* Contact Section */
.contact_section {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 3vw;
    padding: 6vw 0;
    background: var(--background-color);
    flex-wrap: wrap;
}

.contact_cta {
    background: var(--primary-color);
    color: #fff;
    border-radius: 2vw;
    padding: 3vw 2.5vw;
    min-width: 340px;
    max-width: 540px;
    flex: 1 1 340px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact_cta h2 {
    font-size: 2.8vw;
    margin-bottom: 1vw;
    font-weight: 700;
}

.contact_cta p {
    font-size: 1.2vw;
    color: #e0e6ff;
}

.contact_form {
    background: #10142a;
    border-radius: 2vw;
    padding: 2.5vw 2vw 2vw 2vw;
    box-shadow: 0 4px 24px 0 rgba(0,0,0,0.10);
    min-width: 340px;
    max-width: 420px;
    flex: 1 1 340px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 1vw;
    border: 1.5px solid var(--primary-color);
}

.form_row {
    display: flex;
    gap: 1vw;
}

.form_group {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.contact_form label {
    color: #b0b8d1;
    font-size: 0.95em;
    margin-bottom: 0.3em;
}

.contact_form input,
.contact_form textarea {
    background: transparent;
    border: 1.5px solid var(--primary-color);
    border-radius: 1vw;
    padding: 0.7em 1em;
    color: #fff;
    font-size: 1em;
    margin-bottom: 0.5em;
    outline: none;
    transition: border 0.2s;
}

.contact_form input:focus,
.contact_form textarea:focus {
    border-color: #4f6cf7;
}

.contact_btn {
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 1vw;
    padding: 0.9em 0;
    font-size: 1.1em;
    cursor: pointer;
    margin-top: 0.5vw;
    transition: background 0.2s;
}

.contact_btn:hover {
    background: #4f6cf7;
}

/* Footer Styles */
.site_footer {
    background: #0a0d1a;
    color: #b0b8d1;
    padding: 3vw 0 1vw 0;
    font-size: 1em;
}

.footer_top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3vw;
    max-width: 1200px;
    margin: 0 auto 1vw auto;
    padding: 0 2vw;
}

.footer_brand {
    flex: 1 1 220px;
    min-width: 180px;
}
.footer_logo {
    width: 44px;
    height: 44px;
    vertical-align: middle;
    margin-bottom: 0.5em;
}
.footer_company {
    font-size: 1.3em;
    font-weight: 700;
    color: #fff;
    margin-left: 0.5em;
}
.footer_tagline {
    margin: 1em 0 0 0;
    font-size: 0.95em;
    color: #b0b8d1;
}

.footer_links, .footer_contact, .footer_social {
    flex: 1 1 160px;
    min-width: 140px;
}
.footer_links h4,
.footer_contact h4,
.footer_social h4 {
    color: #fff;
    font-size: 1.1em;
    margin-bottom: 0.7em;
}
.footer_links ul,
.footer_contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer_links li,
.footer_contact li {
    margin-bottom: 0.5em;
}
.footer_links a,
.footer_contact a {
    color: #b0b8d1;
    text-decoration: none;
    transition: color 0.2s;
}
.footer_links a:hover,
.footer_contact a:hover {
    color: var(--primary-color, #4f6cf7);
}

.footer_social_icons {
    display: flex;
    gap: 1em;
    margin-top: 0.5em;
}
.footer_social_icons img {
    width: 28px;
    height: 28px;
    filter: grayscale(1) brightness(1.5);
    transition: filter 0.2s;
}
.footer_social_icons a:hover img {
    filter: none;
}

.footer_bottom {
    border-top: 1px solid #23263a;
    margin-top: 2vw;
    padding-top: 1vw;
    text-align: center;
    font-size: 0.95em;
    color: #b0b8d1;
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
    justify-content: center;
    align-items: center;
}
.footer_bottom a {
    color: #b0b8d1;
    margin-left: 1em;
    text-decoration: none;
    transition: color 0.2s;
}
.footer_bottom a:hover {
    color: var(--primary-color, #4f6cf7);
}

@media (max-width: 900px) {
    h1{
        font-size: 1em;
    }
    h2{
        font-size: 3.5em;
    }
}

/* Responsive footer*/
@media (max-width: 900px) {
    .footer_top {
        flex-direction: column;
        gap: 2vw;
        align-items: flex-start;
    }
    .footer_brand, .footer_links, .footer_contact, .footer_social {
        min-width: 0;
        width: 100%;
        margin-bottom: 2vw;
    }
    .footer_links ul,
    .footer_contact ul {
        display: flex;
        flex-wrap: wrap;
        gap: 2vw;
    }
    .footer_links li,
    .footer_contact li {
        min-width: 120px;
    }
}

/* Responsive hero */
@media (max-width: 900px) {
    
}
