*{
            box-sizing: border-box;
        }

        html, body{
            margin: 0;
            padding: 0;
            width: 100%;
            overflow-x: hidden;
        }

        body {
            margin: 0;
            font-family: Arial, sans-serif;
            background: #f7f7f7;
            color: #222;
        }

        .top-bar {
           height: 0;
           padding: 0;
           background: transparent;
        }

        .header {
            background: #111418;
            height: 95px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 60px;
        }

        .logo {
            width: 220px;
        }

        .menu {
            flex: 1;
            display: flex;
            justify-content: center;
            gap: 40px;
            position: relative;
            left: -5px;
            top: 15px;
        }

        .menu a {
            color: #E5E5E5;
            text-decoration: none;
            font-size: 16px;
            font-weight: bold;
            letter-spacing: 1px;
            position: relative;
            transition: color .3s ease;
        }

        .menu a:hover {
            color:#0A4D68;
        }

        .menu a.active {
            color: #0A4D68;
            border-bottom: 2px solid #0A4D68;
            padding-bottom: 16px;
        }

        .menu a:hover {
            color:0A4D68;
        }

        .quote-top {
            background: #0A4D68;
            color: white !important;
            padding: 12px 22px;
            font-size: 13px;
            position: relative;
            top: -11px;
            right: -130px;
            border-radius: 20px;
        }

        .quote-top:hover {
            background: #07384D;
        }
        .hero {
            background: #f7f7f7;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px 20px 0;
            gap: 10px;
            height: auto;
            overflow: visible;
        }

        .hero-image {
            width: 60%;
            position: relative;
            left: 0;
            top: 0;
            display: flex;
            justify-content: center;
        }

        .hero-image img {
            width: 100%;
            height: 560px;
            object-fit: contain;
            object-position: center;
            display: block;
        }

        .hero-box {
            width: 40%;
            background: transparent;
            padding: 10px;
            border-radius: 0;
            border: none;
            box-shadow: none;
            position: relative;
            top: 0;
            text-align: center;
        }

        @media (min-width: 651px) {
            .hero-box {
                left: -70px;
                background: #fff;
                border-radius: 12px;
                border-left: 4px solid #08738d;
                box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
                padding: 30px;
                
            }
        }


        .hero-box h1 {
            font-size: 38px;
            margin: 0 0 10px;
            line-height: 1.1;
        }

        .hero-box h1 span {
            color: #0A4D68;
        }

        .hero-box p {
            font-size: 18px;
            color: #444;
            line-height: 1.4;
            margin: 0;
        }

        .buttons {
            display: flex;
            gap: 18px;
        }

        .btn-orange {
            background: #0A4D68;
            color: white;
            padding: 15px 28px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
        }

        .btn-outline {
            color: #222;
            padding: 14px 28px;
            border: 1px solid #222;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
        }

        .slogan {
            background: white;
            text-align: center;
            padding: 35px 20px 20px;
        }

        .slogan h2 {
            margin: 0;
            font-size: 28px;
            letter-spacing: 2px;
        }

        .orange-line {
            width: 60px;
            height: 4px;
            background: #0A4D68;
            margin: 15px auto 0;
        }

        .cards {
            background: #f7f7f7;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 70px;
            padding: 75px 70px 30px;
        }

        .card {
            background: #1b1b1b;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 20px 45px rgba(0,0,0,.18);
            transition: .3s;
        }

        .card:hover {
            transform: translateY(-8px);
            box-shadow: 0 30px 55px rgba(0,0,0,.25);
        }

        .card img {
            width: 100%;
            height: 240px;
            object-fit: contain;
            object-position: center;
            background: white;
            padding: 10px 10px 2px 10px;
            box-sizing: border-box;
            display: block;
            transition: .35s;
        }
     
          .card:hover .design-img {
            transform: scale(1.14);
        }


        .card-content {
            padding: 25px;
        }

        .icon {
            width: 58px;
            height: 58px;
            border: 2px solid #0A4D68;
            border-radius: 50%;
            color: #0A4D68;
            display: none;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            margin-top: -55px;
            margin-bottom: 15px;
            background: #111;
        }

        .card h3 {
            color:#ffffff;
            font-size: 22px;
            margin: 0 0 12px;
            line-height: 1.2;
        }

        .card p {
            color: #bdbdbd;
            font-size: 15px;
            line-height: 1.7;
        }

        .learn {
            display: inline-block;
            margin-top: 22px;
            padding: 13px 28px;
            border: 2px solid #1B82B3;
            border-radius: 8px;
            color: #D7F2FF;
            text-decoration: none;
            font-weight: 700;
            font-size: 15px;
            transition: all .3s ease;
        }

        .learn:hover {
            background: #0A4D68;
            color:#ffffff;
            border-color: #0A4D68;
            box-shadow: 0 0 18px rgba(10,77,104,.35);
            transform: translate(-2px);
        }

        .bottom-bar {
            background: #111;
            color: white;
            display: flex;
            justify-content: space-around;
            padding: 18px;
            font-size: 15px;
        }

        .bottom-bar span {
            color: #0A4D68;
            margin-right: 8px;
        }

        @media (max-width: 900px) {
            .header {
                height: auto;
                flex-direction: column;
                padding: 25px;
                gap: 20px;
            }

            .menu {
                flex-wrap: wrap;
                justify-content: center;
            }

            .hero {
                flex-direction: column;
                padding: 30px 20px 0;
            }

            .hero-image,
            .hero-box {
                width: 100%;
            }

            .cards {
                grid-template-columns: 1fr;
                padding: 20px;
            }

            .bottom-bar {
                flex-direction: column;
                gap: 10px;
                text-align: center;
            }
        }

        .automation-img {
            width: 100%;
            height: 240px;
            background: white url("images/Auto20.png") center bottom / 95% auto no-repeat;
            object-fit: contain;
            display: block;
            margin: 0 auto;
            padding: 0;
           
        }

        .design-img {
            transform: none;
        }

        .prototype-img {
            transform: none;
        }
        
        .video-section{
            width: 100%;
            max-width: none;
            margin: 30px 0 0;
            padding: 25px 20px 70px;
            background: #f7f7f7;
            text-align: center;
        }

        .video-content{
            max-width: 1100px;
            margin: 0 auto;
        }

        .video-section h2{
            font-size:42px;
            color:#111;
            margin: 0 0 15px;
        }

        .video-section h2 span{
            color:#0A4D68;
        } 
      
        .video-line {
            width: 90px;
            height: 2px;
            background: #0A4D68;
            margin: 0 auto 15px;
        }


        .video-section p{
            font-size:18px;
            color:#666;
            max-width:700px;
            margin:0 auto 35px;
            line-height:1.6;
        }
        .video-section video{
            width: 90%;
            max-width: 1000px;
            height: auto;
            display: block;
            margin: 0 auto;
            border-radius: 15px;
            box-shadow: 0 20px 35px rgba(0,0,0,.15);
        }
.footer{

    background:#111;
    color:#fff;
    width: 100%;
    padding:30px 70px 35px;
    margin-top:0;
    

}

.footer-container{

    max-width:1200px;
    margin:0 auto;
    
}

.footer-contact{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;

    color:#d8d8d8;
    font-size: 16px;
}

.footer-contact i{
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0A4D68, #1786b8);
    color: #f7f7f7;
    box-shadow: 0 4px 12px rgba(10,77,104,.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-size: 16px;
}

.footer-contact span{
   color: #0A4D68;
   margin: 0 18px;
   font-weight: 700;
}

.footer-column{
    flex:1;
}   

.footer-logo{
    width:195px;
    height:auto;
    margin:20px 30px 25px -25px;
}

.footer-column h3{
    margin-bottom:20px;
    color:#0A4D68;
    font-size:28px;

}

.footer-column p{
    max-width: 400px;
    color:#d8d8d8;
    font-size: 16px;
    line-height:1.8;
    margin-bottom: 15px;

}

.footer-label{
    display: inline-block;
    background: #0A4D68;
    color: white;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 10px 24px;
    border-radius: 5px;
    margin-bottom: 25px;
}
.footer-bottom{

    border-top:2px solid #0A4D68;
    margin-top:25px;
    padding-top:18px;
    text-align:center;
    color:#cfcfcf;
    font-size:17px;
    position: relative;
    border-top: none;
   
}

.footer-bottom::before{
    content: "";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    height: 2px;
    background: #0A4D68;
    border-radius: 2px;
}

.footer-bottom p{
    margin: 5px 0 25px;
}

/* CONTACT PAGE */


/* ==================================================
   CONTACT PAGE
================================================== */

.contact-hero {
    min-height: 290px;
    padding: 50px 25px;
    background:
        linear-gradient(
            rgba(17, 20, 24, 0.9),
            rgba(17, 20, 24, 0.9)
        );
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.contact-hero-content {
    color: #fff;
}

.contact-hero-content h1 {
    margin: 0 0 15px;
    font-size: 52px;
    letter-spacing: 3px;
}

.contact-hero-content p {
    margin: 0 0 7px;
    color: #d8d8d8;
    font-size: 20px;
}

.contact-hero-content h2 {
    margin: 0;
    color: #0A4D68;
    font-size: 30px;
}


/* MAIN CONTACT AREA */

.contact-page {
    background: #f7f7f7;
    padding: 80px 60px;
}

.contact-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.35fr;
    gap: 35px;
    align-items: stretch;
}

.contact-info-card,
.contact-form-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.10);
}

.contact-info-card {
    padding: 45px 40px;
    background: #111418;
    color: #fff;
}

.contact-form-card {
    padding: 45px;
}

.contact-small-title {
    display: inline-block;
    margin-bottom: 10px;
    color: #0A4D68;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
}

.contact-info-card h2,
.contact-form-card h2 {
    margin: 0 0 16px;
    font-size: 32px;
}

.contact-info-card h2 {
    color: #fff;
}

.contact-form-card h2 {
    color: #111418;
}

.contact-intro,
.form-intro {
    margin: 0 0 35px;
    line-height: 1.7;
}

.contact-intro {
    color: #c8c8c8;
}

.form-intro {
    color: #666;
}


/* CONTACT INFORMATION */

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-top: 28px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background: #0A4D68;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
}

.contact-detail h3 {
    margin: 2px 0 7px;
    color: #fff;
    font-size: 17px;
}

.contact-detail p {
    margin: 0;
    color: #cfcfcf;
    line-height: 1.6;
}

.contact-detail a {
    color: #cfcfcf;
    text-decoration: none;
}

.contact-detail a:hover {
    color: #fff;
}


/* CONTACT FORM */

.contact-form {
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    margin-bottom: 9px;
    color: #222;
    font-size: 15px;
    font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid #d4d4d4;
    border-radius: 8px;
    background: #fafafa;
    color: #222;
    font-family: Arial, sans-serif;
    font-size: 15px;
    outline: none;
    transition: border-color 0.25s ease,
                box-shadow 0.25s ease,
                background 0.25s ease;
}

.form-group textarea {
    resize: vertical;
    min-height: 145px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #0A4D68;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(10, 77, 104, 0.12);
}

.contact-submit {
    min-width: 190px;
    padding: 15px 25px;
    border: 2px solid #0A4D68;
    border-radius: 8px;
    background: #0A4D68;
    color: #fff;
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: transform 0.25s ease,
                background 0.25s ease,
                box-shadow 0.25s ease;
}

.contact-submit i {
    margin-left: 8px;
}

.contact-submit:hover {
    background: #083d52;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(10, 77, 104, 0.25);
}


/* MAP */

.map-section {
    width: 100%;
    max-width: 1200px;
    margin: 80px auto 0;
}

.section-heading {
    margin-bottom: 30px;
    text-align: center;
}

.section-heading span {
    color: #0A4D68;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
}

.section-heading h2 {
    margin: 10px 0;
    color: #111418;
    font-size: 36px;
}

.section-heading p {
    margin: 0;
    color: #666;
    font-size: 17px;
}

.map-container {
    width: 100%;
    height: 410px;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}


/* CONTACT PAGE FOOTER HELPERS */

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-contact-item i {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;
    background: #0A4D68;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-contact-item span {
    color: #d8d8d8;
    line-height: 1.35;
}

.footer-divider {
    width: 2px;
    height: 20px;
    background: #0A4D68;
    margin: 0 10px;
}


/* ACTIVE MENU LINK */

.menu .active-page {
    color: #26a6d1;
}


/* RESPONSIVE CONTACT PAGE */

@media (max-width: 1000px) {

    .contact-page {
        padding: 65px 30px;
    }

    .contact-section {
        grid-template-columns: 1fr;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 38px 32px;
    }

    .footer-contact {
        flex-direction: column;
        text-align: center;
    }

    .footer-divider {
        display: none;
    }

    .footer-logo {
        margin-right: 0;
        margin-bottom: 10px;
    }
}


@media (max-width: 650px) {

    .contact-hero {
        min-height: 235px;
    }

    .contact-hero-content h1 {
        font-size: 38px;
    }

    .contact-hero-content p {
        font-size: 17px;
    }

    .contact-hero-content h2 {
        font-size: 23px;
    }

    .contact-page {
        padding: 50px 18px;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 32px 23px;
        border-radius: 12px;
    }

    .contact-info-card h2,
    .contact-form-card h2 {
        font-size: 27px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-submit {
        width: 100%;
    }

    .map-section {
        margin-top: 55px;
    }

    .section-heading h2 {
        font-size: 29px;
    }

    .map-container {
        height: 330px;
    }
}

/* Separación y líneas entre los datos de contacto */

.contact-detail {
    padding: 25px 0;
    margin-top: 0;
}

.contact-detail + .contact-detail {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-info-card .contact-detail:first-of-type {
    margin-top: 20px;
}

/* FULL WIDTH MAP */

.map-container {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    border-radius: 0;
}

.map-container iframe {
    width: 100%;
    display: block;
}

/* MAP FINAL ADJUSTMENT */

.map-section {
    padding-bottom: 0;
    margin-bottom: 0;
}

.map-container {
    height: 430px;
    margin-bottom: 0;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.footer {
    margin-top: 0;
}

/* AJUSTE DEFINITIVO DEL MAPA */

.contact-page {
    padding-bottom: 0;
}

.map-container {
    height: 550px;
}

.map-section {
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-section {
    max-width: 1320px;
    gap: 70px;
}

/* ==================================================
   ABOUT US PAGE — FINAL DESIGN
================================================== */


/* GENERAL */

.about-page main {
    background: #fff;
}


/* ==================================================
   HERO
================================================== */

.about-main-hero {
    width: 100%;
    min-height: 455px;
    padding: 0 42px;
    background: #fff;
    display: grid;
    grid-template-columns: 34% 66%;
    align-items: stretch;
    overflow: hidden;
}

.about-hero-text {
    padding: 75px 30px 70px 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-hero-text h1 {
    margin: 0 0 28px;
    color: #111418;
    font-size: 48px;
    line-height: 1.12;
    letter-spacing: -1px;
}

.about-hero-text p {
    max-width: 430px;
    margin: 0;
    color: #333;
    font-size: 18px;
    line-height: 1.75;
}


/* HERO IMAGE PANELS */

.about-hero-images {
    height: 455px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    transform: skewX(-14deg);
    transform-origin: bottom;
    overflow: hidden;
}

.about-hero-panel {
    position: relative;
    min-width: 0;
    overflow: hidden;
    background: #111;
}

.about-hero-panel img {
    position: absolute;
    inset: -35px;
    width: calc(100% + 70px);
    height: calc(100% + 70px);
    object-fit: cover;
    transform: skewX(14deg) scale(1.08);
}

.about-panel-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.03) 35%,
            rgba(0, 0, 0, 0.88) 100%
        );
}

.about-panel-title {
    position: absolute;
    left: 42px;
    right: 20px;
    bottom: 28px;
    color: #fff;
    transform: skewX(14deg);
}

.about-panel-title i {
    display: block;
    margin-bottom: 10px;
    font-size: 31px;
}

.about-panel-title span {
    display: block;
    font-size: 16px;
    font-weight: 800;
    white-space: nowrap;
}

.about-panel-line {
    width: 42px;
    height: 3px;
    margin-top: 10px;
    background: #087fc3;
}


/* ==================================================
   COMPANY INTRODUCTION
================================================== */

.about-company {
    padding: 68px 45px;
    background: linear-gradient(135deg,#f2f4f6 0%, #ffffff 55%, #eef1f4 100%);
}

.about-company-content {
    width: 100%;
    max-width: 1220px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 32% 68%;
    gap: 52px;
    align-items: center;
}

.about-company-text h2 {
    margin: 0 0 28px;
    color: #ffffff;
    font-size: 38px;
    line-height: 1.16;
}

.about-company-text p {
    margin: 0 0 19px;
    color: #d6d6d6;
    font-size: 16px;
    line-height: 1.72;
}

.about-company-image {
    height: 335px;
    overflow: hidden;
    border-radius: 14px;
}

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


/* ==================================================
   CAPABILITIES
================================================== */

.about-services {
    padding: 48px 45px 58px;
    background: #f5f6f7;
}

.about-section-heading {
    margin-bottom: 35px;
    text-align: center;
}

.about-section-heading span {
    display: block;
    margin-bottom: 9px;
    color: #0666b1;
    font-size: 14px;
    font-weight: 800;
}

.about-section-heading h2 {
    margin: 0;
    color: #111418;
    font-size: 34px;
}

.about-services-grid {
    width: 100%;
    max-width: 1220px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.about-service-card {
    min-height: 175px;
    padding: 24px 22px;
    border: 1px solid #d8dde1;
    border-radius: 8px;
    background: #fff;
    display: flex;
    align-items: center;
    gap: 22px;
}

.about-service-icon {
    width: 76px;
    height: 76px;
    min-width: 76px;
    border: 1.5px solid #087fc3;
    border-radius: 50%;
    color: #087fc3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
}

.about-service-copy h3 {
    margin: 0;
    color: #111418;
    font-size: 19px;
}

.about-title-line {
    width: 36px;
    height: 3px;
    margin: 10px 0 13px;
    background: #087fc3;
}

.about-service-copy p {
    margin: 0;
    color: #333;
    font-size: 14px;
    line-height: 1.6;
}



/*====================================================
    ABOUT SECTION
====================================================*/

.about-section{

    padding:35px 0 10px;

    background:
    linear-gradient(115deg,#f4f5f8 0%,#ffffff 38%,#eef1f5 100%);

    overflow:hidden;

}

.about-container{

    width:92%;
    max-width:1450px;

    margin:0 auto;

    display:grid;

    grid-template-columns:42% 58%;
    column-gap: 20px;

    align-items:center;

    transform: translateY(-10px);

}

.about-text{

    padding-right:60px;
    margin-left: 70px;

}

.about-label{

    display:flex;

    align-items:center;

    gap:14px;

    color:#0a72d8;

    font-weight:700;

    font-size:20px;

    margin-bottom:28px;

}

.about-label::after{

    content:"";

    width:70px;

    height:3px;

    background:#0a72d8;

}

.about-text h2{

    font-size:58px;

    line-height:1.08;

    margin-bottom:16px;

    color:#111;

}

.about-line{

    width:270px;

    height:4px;

    background:#0a72d8;

    margin-bottom:20px;

}

.about-text p{

    color:#444;

    font-size:18px;

    line-height:1.55;

    margin-bottom:16px;

}

.about-image{

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

}


.about-image img{

    position:relative;

    z-index:2;

    width:85%;

    max-width:920px;
    max-height: 720px;

    height:auto;

    transform: translateY(25px);

}


/* ==================================================
   OUR APPROACH
================================================== */

.about-process {
    padding: 52px 45px 62px;
    background: #fff;
}

.about-process-content {
    width: 100%;
    max-width: 1220px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 30% 70%;
    gap: 42px;
    align-items: start;
}

.about-process-intro > span {
    display: block;
    margin-bottom: 13px;
    color: #0666b1;
    font-size: 14px;
    font-weight: 800;
}

.about-process-intro h2 {
    margin: 0;
    color: #111418;
    font-size: 35px;
    line-height: 1.15;
}

.about-heading-line {
    width: 38px;
    height: 3px;
    margin: 17px 0 22px;
    background: #087fc3;
}

.about-process-intro p {
    margin: 0 0 18px;
    color: #333;
    font-size: 15px;
    line-height: 1.7;
}

.about-process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.about-process-step {
    position: relative;
    padding: 0 10px;
    text-align: center;
}

.about-process-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 19px;
    left: calc(50% + 27px);
    width: calc(100% - 54px);
    border-top: 1px dashed #9db4c4;
}

.about-step-number {
    position: relative;
    z-index: 2;
    width: 39px;
    height: 39px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #096ac1;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
}

.about-process-step > i {
    min-height: 54px;
    color: #086ec7;
    font-size: 44px;
}

.about-process-step h3 {
    margin: 14px 0 14px;
    color: #111418;
    font-size: 15px;
    line-height: 1.4;
}

.about-process-step p {
    margin: 0 auto;
    color: #333;
    font-size: 13px;
    line-height: 1.55;
}


/* ==================================================
   FOOTER ADJUSTMENTS FOR ABOUT PAGE
================================================== */

.about-page .footer {
    margin-top: 0;
}

.about-page .footer-contact {
    justify-content: center;
}

.about-page .footer-bottom {
    margin-top: 24px;
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 1000px) {

    .about-main-hero {
        padding: 0 25px;
        grid-template-columns: 1fr;
    }

    .about-hero-text {
        padding: 60px 20px;
        text-align: center;
        align-items: center;
    }

    .about-hero-text h1 {
        font-size: 42px;
    }

    .about-hero-images {
        width: 100%;
        height: 400px;
        transform: none;
        gap: 7px;
    }

    .about-hero-panel img,
    .about-panel-title {
        transform: none;
    }

    .about-company-content,
    .about-process-content {
        grid-template-columns: 1fr;
    }

    .about-company-text {
        max-width: 700px;
        margin: 0 auto;
        text-align: center;
    }

    .about-services-grid {
        grid-template-columns: 1fr;
    }

    .about-process-steps {
        margin-top: 15px;
    }
}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 650px) {

    .about-main-hero {
        padding: 0;
    }

    .about-hero-text {
        padding: 48px 22px;
    }

    .about-hero-text h1 {
        font-size: 34px;
    }

    .about-hero-text p {
        font-size: 16px;
    }

    .about-hero-images {
        height: auto;
        padding: 0 18px 35px;
        grid-template-columns: 1fr;
    }

    .about-hero-panel {
        min-height: 280px;
        border-radius: 10px;
    }

    .about-company,
    .about-services,
    .about-process {
        padding-left: 20px;
        padding-right: 20px;
    }

    .about-company-image {
        height: 270px;
    }

    .about-section-heading h2 {
        font-size: 28px;
    }

    .about-service-card {
        align-items: flex-start;
    }

    .about-service-icon {
        width: 62px;
        height: 62px;
        min-width: 62px;
        font-size: 27px;
    }

    .about-process-intro {
        text-align: center;
    }

    .about-heading-line {
        margin-left: auto;
        margin-right: auto;
    }

    .about-process-steps {
        grid-template-columns: 1fr 1fr;
        gap: 35px 12px;
    }

    .about-process-step:not(:last-child)::after {
        display: none;
    }
}

/* ==================================================
   SERVICES PAGE
================================================== */

.services-page main {
    background: #f6f7f8;
}


/* ==================================================
   SERVICES INTRODUCTION
================================================== */

.services-intro {
    padding: 25px 45px 15px;
    background: #fff;
}

.services-intro-content {
    width: 100%;
    max-width: 1220px;
    min-height: 0;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 48% 52%;
    align-items: center;
    gap: 45px;
}

.services-intro-text h1 {
    margin: 0 0 30px;
    color: #111418;
    font-size: 52px;
    line-height: 1.12;
    letter-spacing: -1px;
}

.services-intro-text p {
    max-width: 560px;
    margin: 0;
    color: #333;
    font-size: 18px;
    line-height: 1.8;
}

.services-intro-image {
    height: 370px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    top: -15px;
}

.services-intro-image img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    object-position: center;
}


/* ==================================================
   SERVICES CARDS
================================================== */

.services-cards-section {
    padding: 60px 25px 60px;
    background: #f6f7f8;
}

.services-cards-grid {
    width: 100%;
    max-width: 1350px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 65px;
    align-items: stretch;
}

.services-card {
    overflow: hidden;
    border: 1px solid #e2e4e7;
    border-radius: 14px;
    background: #fff;
    display: flex;
    flex-direction: column;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.services-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.12);
}


/* CARD IMAGE */

.services-card-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    background: #f4f4f4;
}

.services-card-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center;
}


/* CARD CONTENT */

.services-card-content {
    padding: 30px 28px 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.services-card-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 0;
}

.services-card-heading > i {
    color: #075de8;
    font-size: 32px;
}

.services-page .services-card-heading h2 {
    display: inline-block;

    color: #111;
    
    font-size: 19px;
    line-height: 1.2;
    font-weight: bold;
    margin: 0;
}

.services-title-line {
    display: none;
}

.services-description {
    min-height: 102px;
    margin: 0 0 22px;
    color: #222;
    font-size: 18px;
    line-height: 1.75;
}


/* SERVICE LIST */

.services-list {
    min-height: 165px;
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
}

.services-list li {
    margin-bottom: 13px;
    color: #171717;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
}

.services-list li i {
    color: #075de8;
    font-size: 18px;
}


/* LEARN MORE BUTTON */

.services-button {
    width: 175px;
    box-sizing: border-box;
    margin-top: auto;
    padding: 17px 23px;
    border-radius: 30px;
    background: #050505;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.services-button i {
    color: #075de8;
    font-size: 17px;
}

.services-button:hover {
    background: #151515;
    transform: translateY(-2px);
}


/* ACTIVE SERVICES MENU ITEM — NO UNDERLINE */

.menu .services-active {
    color: #087fc3;
}


/* SERVICES FOOTER */

.services-page .footer {
    margin-top: 0;
}

.services-page .footer-contact {
    justify-content: center;
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 1000px) {

    .services-intro {
        padding: 55px 30px 40px;
    }

    .services-intro-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .services-intro-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .services-intro-image {
        height: 280px;
    }

    .services-cards-grid {
        grid-template-columns: 1fr;
        max-width: 650px;
    }

    .services-card {
        display: grid;
        grid-template-columns: 45% 55%;
    }

    .services-card-image {
        height: 100%;
        min-height: 470px;
    }
}



.mobile-page-title {
    display: none;
     
}


/* ==================================================
   MOBILE CARDS - SERVICES PAGE
================================================== */

@media (max-width: 650px) {

    .desktop-logo-link {
        display: none !important;
    }

     .mobile-page-title {
        display: block !important;
        color: white;
        background: #0f607c;
        font-size: 20px;
        font-weight: 700;
        letter-spacing: 1px;
        padding: 9px 20px;
        border-radius: 22px;
    }

    .services-intro {
        padding: 45px 20px 0;
    }

    .services-intro-content {
        gap: 0;
    }

    .services-intro-text h1 {
        font-size: 32px;
    }

    .services-intro-text p {
        font-size: 16px;
    }

    .services-intro-image {
        height: 260px;
        top: -10px;
    }

    .services-intro-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
    }

    .services-cards-section {
        padding: 30px 16px 45px;
    }

    .services-page .services-card {
        display: flex;
        flex-direction: column;
        height: auto !important;
        min-height: 0 !important;
    }

    .services-page .services-card-image {
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
        flex: none !important;
        overflow: visible !important;
    }
    
    .services-page .services-card-image img {
        width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
        object-position: center !important;
        display: block !important;
    }

    .services-page .services-card-content {
        padding: 18px 18px 22px;
        height: auto !important;
        min-height: 0 !important;
    }

    .services-card-heading h2 {
        font-size: 20px;
    }

    .services-description,
    .services-list {
        min-height: 0;
        font-size: 21px;
        line-height: 1.6;
    }

    .services-button {
        width: 175px;
    }
}

.quote-modal{
    display:none;

    position:fixed;
    inset:0;

    background:rgba(0,0,0,.6);

    justify-content:center;
    align-items:center;

    z-index:9999;
}

.quote-box{

    background:#fff;

    width:500px;

    max-width:90%;

    padding:40px;

    border-radius:16px;

    position:relative;

    box-shadow:0 20px 50px rgba(0,0,0,.25);

}

.quote-close{

    position:absolute;

    top:15px;

    right:20px;

    border:none;

    background:none;

    font-size:32px;

    cursor:pointer;

}


.quote-box{
    width:760px;
    max-width:92%;
    max-height:90vh;
    overflow-y:auto;
}

.quote-heading{
    margin-bottom:26px;
    padding-right:40px;
}

.quote-heading span{
    display:block;
    margin-bottom:8px;

    color:#075c82;

    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
}

.quote-heading h2{
    margin:0 0 10px;

    color:#222;

    font-size:34px;
    line-height:1.15;
}

.quote-heading p{
    margin:0;

    color:#666;

    font-size:15px;
    line-height:1.6;
}

.quote-form{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.quote-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
}

.quote-field{
    display:flex;
    flex-direction:column;
    gap:7px;
}

.quote-field label{
    color:#222;

    font-size:14px;
    font-weight:600;
}

.quote-field input,
.quote-field select,
.quote-field textarea{
    width:100%;

    padding:13px 14px;

    border:1px solid #d6dbe0;
    border-radius:7px;

    background:#fff;
    color:#222;

    font-family:inherit;
    font-size:14px;

    outline:none;
}

.quote-field input:focus,
.quote-field select:focus,
.quote-field textarea:focus{
    border-color:#075c82;
    box-shadow:0 0 0 3px rgba(7,92,130,.12);
}

.quote-field textarea{
    min-height:130px;
    resize:vertical;
}

.quote-send{
    width:max-content;

    padding:14px 22px;

    border:none;
    border-radius:7px;

    background:#075c82;
    color:#fff;

    font-family:inherit;
    font-size:14px;
    font-weight:700;

    cursor:pointer;
}

.quote-send span{
    margin-left:12px;
}

.quote-send:hover{
    background:#0875a3;
}

@media(max-width:700px){

    .quote-box{
        padding:28px 20px;
    }

    .quote-grid{
        grid-template-columns:1fr;
    }

    .quote-heading h2{
        font-size:28px;
    }

    .quote-send{
        width:100%;
    }


}

 .quote-placeholder{
        visibility: hidden;
        pointer-events: none;

}


/* =========================
   TEMPORARY PAGES
========================= */

.temporary-section {
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #f5f5f5;
    padding: 80px 20px;
}

.temporary-content {
    max-width: 750px;
    margin: 0 auto;
}

.temporary-content h1 {
    font-size: 52px;
    margin: 0 0 20px;
}

.temporary-line {
    width: 120px;
    height: 4px;
    background: #1687e8;
    margin: 0 auto 35px;
}

.temporary-content h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.temporary-content p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 35px;
}

.temporary-button {
    display: inline-block;
    padding: 16px 35px;
    background: #1687e8;
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
}

.temporary-button:hover {
    background: #0f6fc4;
}

/* =========================================
   HOME - MOBILE
========================================= */

@media (max-width: 650px) {

    .header {
        height: auto;
        min-height: 0;
        padding: 18px 20px;
        flex-direction: column;
        gap: 18px;
    }

    .logo {
        width: 180px;
    }

    .menu {
        width: 100%;
        left: 0;
        top: 0;
        gap: 16px 22px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .menu a {
        font-size: 13px;
        padding-bottom: 0;
    }

    .menu a.active {
        padding-bottom: 4px;
    }

    .quote-top {
        width: 100%;
        text-align: center;
        margin-top: 6px;
    }

    .hero {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;

    height: auto !important;
    min-height: 0 !important;

    padding: 20px 12px 5px !important;
    gap: 0 !important;

    overflow: hidden !important;
}

.hero-image {
    order: 2 !important;
    width: 100% !important;

    position: static !important;
    left: auto !important;
    top: auto !important;

    margin: 0 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

.hero-image img {
    width: 108% !important;
    max-width: none !important;

    height: auto !important;

    object-fit: contain !important;
    object-position: center !important;

    display: block !important;
    transform: none !important;
    margin: 0 auto !important;
}

.hero-box {
    order: 1 !important;
    width: 90% !important;
    max-width: 90% !important;

    position: static !important;
    top: auto !important;

    margin: 0 !important;
    padding: 18px 16px !important;

    box-sizing: border-box !important;
}

.hero-box h1 {
    font-size: 21px !important;
    line-height: 1.05 !important;
    margin-bottom: 7px !important;
}

.hero-box p {
    font-size: 11px !important;
    line-height: 1.3 !important;
    margin-bottom: 0 !important;
}

    .video-section {
        padding: 20px 20px 35px;
        margin-top: 5px;
    }

    .video-content {
        width: 100%;
        max-width: 100%;
    }

    .video-content h2 {
        font-size: 22px;
        text-align: center;
    }

    .video-content video {
        width: 100%;
        height: auto;
        display: block;
        margin: 0 auto;
    }

    .cards {
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        display: flex !important;
        align-items: stretch !important;
        padding: 35px 12px 10px;
        gap: 12px;
    }

    .card {
        width: calc((100% - 24px) / 3) !important;
        max-width: none !important;
        flex: 0 0 calc((100% - 24px) / 3) !important;
        margin: 0 !important;

        min-height: 0 !important;
        height: auto !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .card img {
        width: 100% !important;
        height: 110px !important;
        object-fit: contain !important;
        display: block !important;
        transform: scale(1.1);
    }

    .card-content {
        padding: 13px 8px 8px !important;
        display: flex !important;
        flex-direction: column !important;
        flex: 1 !important;
    }

    .card-content h3 {
        font-size: 13px !important;
        line-height: 1.15 !important;
        margin-bottom: 1px !important;
    }

    .card-content p {
        font-size: 10px !important;
        line-height: 1.25 !important;
        margin-bottom: 8px !important;
    }

    .learn {
        font-size: 10px !important;
        width: 100% !important;
        padding: 8px 6px !important;
        box-sizing: border-box !important;
        text-align: center !important;
        margin-top: auto !important;
    }

.home-page .services-cards-section {
    padding: 20px 12px 30px !important;
}

.home-page .services-cards-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    width: 100% !important;
}

.home-page .services-card {
    min-width: 0 !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
}


.home-page .services-card-image {
    height: 180px !important;
}

.home-page .services-card-content {
    padding: 12px 10px 14px !important;
    height: auto !important;
    min-height: 0 !important;
    flex: none !important;
}

.home-page .services-card-heading {
    gap: 3px !important;
}

.home-page .services-card-heading > i {
    font-size: 15px !important;
}

.home-page .services-card-heading h2 {
    font-size: 23px !important;
    line-height: 1.5 !important;
}

.home-page .services-title-line {
    display: none !important;
}

.home-page .services-description {
    font-size: 19px !important;
    line-height: 1.5 !important;
}

.home-page .services-list {
    font-size: 7px !important;
    line-height: 1.25 !important;
}

.home-page .services-list li {
    gap: 5px !important;
    margin-bottom: 6px !important;
}

.home-page .services-list i {
    font-size: 9px !important;
}

.home-page .services-card .services-button {
    font-size: 9px !important;
    padding: 7px 5px !important;
    width: 95% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    margin-left: auto !important;
    margin-right: auto !important;
    border-radius: 7px !important;
}

.home-page .services-card .services-button i {
    font-size: 12px !important;

}

.home-page .services-cards-section {
    padding-top: 25px !important;
    padding-bottom: 20px !important;

}

    /* FOOTER MOBILE - SOLO COPYRIGHT */

.footer {
    padding: 22px 15px !important;
}

.footer-logo,
.footer-contact {
    display: none !important;
}

.footer-bottom {
    margin-top: 0 !important;
    padding-top: 0 !important;
    border-top: none !important;
}

.footer-bottom::before {
    display: none !important;
}

.footer-bottom p {
    margin: 0 !important;
    font-size: 13px !important;
    line-height: 1.4 !important;
    text-align: center !important;
}

.about-section {
    padding-top: 0 !important;
    margin-top: 0 !important;
}
.about-container {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 12px 25px !important;
    box-sizing: border-box !important;
}

.about-text {
    width: 100% !important;
    max-width: 100% !important;
}

.about-text h2 {
    width: 100% !important;
    max-width: 100% !important;
    font-size: 34px !important;
    line-height: 1.08 !important;
}

.about-text p {
    width: 100% !important;
    max-width: 100% !important;
    font-size: 14px !important;
    line-height: 1.3 !important;
}

.about-image {
    width: 100% !important;
    max-width: 100% !important;
    margin-top: 25px !important;
}

.about-image img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    object-fit: contain !important;
}

}

/* MOBILE HAMBURGER MENU */

.menu-toggle {
    display: none;
}

@media (max-width: 650px) {

    .header {
        height: 90px;
        padding: 0 22px;
        flex-direction: row;
        justify-content: center;
        position: relative;
    }

    .logo {
        width: 190px;
    }

    .menu-toggle {
        display: block;
        position: absolute;
        left: 22px;
        top: 50%;
        transform: translateY(-50%);
        background: transparent;
        border: none;
        color: #ffffff;
        font-size: 34px;
        cursor: pointer;
        z-index: 1001;
    }

    .menu {
        display: none;
        position: absolute;
        top: 90px;
        left: 0;
        width: 50%;
        background: #111418;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 10px;
        z-index: 1000;

        border-radius: 0 0 28px 0;
        box-sizing: border-box;
    }

    .menu.open {
        display: flex;
    }

    .menu a {
        width: 100%;
        text-align: left;
        padding: 14px 10px;
        font-size: 15px;
    }

   .quote-top {
    width: 180px !important;
    max-width: 180px !important;
    margin: 10px 0 0 0 !important;
    padding: 12px 10px !important;
    text-align: center !important;
    box-sizing: border-box;
    align-self: flex-start;
    position: relative !important;
    top: 0 !important;
    right: 0 !important;
    }
}

@media (max-width: 650px) {

    .header .menu {
        display: none !important;
    }

    .header .menu.open {
        display: flex !important;
    }

}
