:root{
    --primary:#0a1f44;
    --primary-2:#12366f;
    --accent:#ff7a00;
    --accent-2:#ff9c3a;
    --white:#ffffff;
    --text:#1e2430;
    --muted:#5c6472;
    --soft:#f5f7fb;
    --border:rgba(10,31,68,.10);
    --shadow:0 18px 55px rgba(8,25,59,.12);
    --radius:22px;
    --container:1240px;
}

/* RESET */
*,
*::before,
*::after{
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    margin:0;
    font-family:Segoe UI, Arial, sans-serif;
    line-height:1.65;
    color:var(--text);
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

/* PAGE WRAP */
.mh-page{
    overflow:hidden;
    min-height:100vh;
    padding-top:20px;
    padding-bottom:40px;
    background:
        radial-gradient(circle at top left, rgba(255,122,0,.08), transparent 30%),
        radial-gradient(circle at top right, rgba(10,31,68,.10), transparent 28%),
        #ffffff;
}

.mh-container{
    width:min(var(--container), calc(100% - 32px));
    margin-inline:auto;
}

/* BREADCRUMB */
.mh-breadcrumb{
    padding:8px 0 10px;
}

.mh-breadcrumb ol{
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    gap:10px;
    list-style:none;
    padding:14px 18px;
    margin:0;
    background:#fff;
    border:1px solid var(--border);
    border-radius:16px;
    box-shadow:var(--shadow);
    color:var(--muted);
    font-size:14px;
}

.mh-breadcrumb a{
    color:var(--primary);
    font-weight:600;
}

.mh-breadcrumb li+li::before{
    content:"/";
    margin-right:10px;
    color:#a0a8b5;
}

/* GLOBAL SECTION */
.mh-section{
    padding:80px 0;
    position:relative;
}

.section-heading{
    max-width:850px;
    margin:0 auto 38px;
    text-align:center;
}

.section-eyebrow{
    display:inline-block;
    padding:8px 14px;
    border-radius:999px;
    background:rgba(255,122,0,.12);
    color:var(--accent);
    font-weight:800;
    font-size:13px;
    letter-spacing:.2px;
}

.section-heading h2{
    margin:16px 0 14px;
    font-size:40px;
    line-height:1.18;
    color:var(--primary);
}

.section-heading p{
    margin:0;
    color:var(--muted);
    font-size:17px;
}

/* HERO */
.mh-hero{
    padding:34px 0 70px;
}

.mh-hero__grid{
    display:grid;
    grid-template-columns:1.05fr .95fr;
    gap:34px;
    align-items:center;
}

.mh-hero__content{
    padding-top:8px;
}

.mh-badge{
    display:inline-flex;
    align-items:center;
    background:rgba(10,31,68,.08);
    color:var(--primary);
    padding:10px 16px;
    border-radius:999px;
    font-weight:800;
    font-size:13px;
}

.mh-hero__content h1{
    margin:18px 0 18px;
    font-size:56px;
    line-height:1.06;
    letter-spacing:-.6px;
    color:var(--primary);
}

.mh-hero__content p{
    margin:0 0 24px;
    font-size:18px;
    color:var(--muted);
    max-width:720px;
}

.mh-hero__actions{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin-bottom:24px;
}

.mh-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:52px;
    padding:0 24px;
    border-radius:14px;
    font-weight:800;
    transition:.25s ease;
    border:1px solid transparent;
    cursor:pointer;
}

.mh-btn--primary{
    background:linear-gradient(135deg, var(--accent), var(--accent-2));
    color:#fff;
    box-shadow:0 14px 35px rgba(255,122,0,.25);
}

.mh-btn--primary:hover{
    transform:translateY(-2px);
}

.mh-btn--ghost{
    border-color:rgba(10,31,68,.14);
    background:#fff;
    color:var(--primary);
}

.mh-btn--ghost:hover{
    transform:translateY(-2px);
    background:#f8faff;
}

.mh-btn--full{
    width:100%;
}

.mh-hero__mini{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    padding:0;
    margin:0;
    list-style:none;
}

.mh-hero__mini li{
    padding:10px 14px;
    background:#fff;
    border:1px solid var(--border);
    border-radius:999px;
    color:var(--primary);
    font-weight:700;
    box-shadow:var(--shadow);
}

.mh-hero__visual{
    position:relative;
    min-height:540px;
}

.mh-hero__image-card{
    overflow:hidden;
    border-radius:32px;
    box-shadow:var(--shadow);
    background:#fff;
    border:1px solid var(--border);
}

.mh-hero__image-card img{
    width:100%;
    height:540px;
    object-fit:cover;
}

.mh-floating-card{
    position:absolute;
    background:#fff;
    border:1px solid var(--border);
    border-radius:18px;
    padding:16px 18px;
    box-shadow:var(--shadow);
    max-width:220px;
}

.mh-floating-card strong{
    display:block;
    margin-bottom:4px;
    color:var(--primary);
}

.mh-floating-card span{
    color:var(--muted);
    font-size:14px;
}

.card-1{
    top:28px;
    left:-20px;
}

.card-2{
    right:-14px;
    bottom:38px;
}

/* INTRO / FEATURES */
.mh-feature-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
}

.mh-feature-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:var(--radius);
    padding:28px;
    box-shadow:var(--shadow);
    transition:.25s ease;
}

.mh-feature-card:hover{
    transform:translateY(-5px);
}

.mh-feature-card h3{
    margin:0 0 12px;
    color:var(--primary);
    font-size:21px;
}

.mh-feature-card p{
    margin:0;
    color:var(--muted);
}

/* POSITIONS */
.mh-positions{
    background:linear-gradient(180deg, #fff 0%, #f7f9fc 100%);
}

.mh-position-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
}

.mh-position-card{
    overflow:hidden;
    background:#fff;
    border:1px solid var(--border);
    border-radius:24px;
    box-shadow:var(--shadow);
    transition:.25s ease;
}

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

.mh-position-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.mh-position-card__body{
    padding:22px;
}

.mh-position-card__body h3{
    margin:0 0 10px;
    color:var(--primary);
    font-size:21px;
}

.mh-position-card__body p{
    margin:0;
    color:var(--muted);
}

/* PROCESS */
.mh-process-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
}

.mh-process-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:24px;
    padding:30px;
    box-shadow:var(--shadow);
    transition:.25s ease;
}

.mh-process-card:hover{
    transform:translateY(-5px);
}

.mh-process-card span{
    display:inline-flex;
    width:52px;
    height:52px;
    border-radius:50%;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg, var(--primary), var(--primary-2));
    color:#fff;
    font-weight:900;
    margin-bottom:16px;
}

.mh-process-card h3{
    margin:0 0 10px;
    color:var(--primary);
    font-size:20px;
}

.mh-process-card p{
    margin:0;
    color:var(--muted);
}

/* FAQ */
.mh-faq{
    background:linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
}

.mh-faq-list{
    max-width:920px;
    margin:0 auto;
    display:grid;
    gap:16px;
}

.mh-faq-item{
    background:#fff;
    border:1px solid var(--border);
    border-radius:20px;
    padding:0 22px;
    box-shadow:var(--shadow);
}

.mh-faq-item summary{
    list-style:none;
    cursor:pointer;
    padding:22px 0;
    font-weight:800;
    color:var(--primary);
    position:relative;
}

.mh-faq-item summary::-webkit-details-marker{
    display:none;
}

.mh-faq-item p{
    margin:0;
    padding:0 0 22px;
    color:var(--muted);
}

/* CONTACT */
.mh-contact__wrap{
    display:grid;
    grid-template-columns:.9fr 1.1fr;
    gap:28px;
    align-items:start;
    background:#fff;
    border:1px solid var(--border);
    box-shadow:var(--shadow);
    border-radius:28px;
    padding:34px;
}

.mh-contact__content h2{
    margin:14px 0 14px;
    color:var(--primary);
    font-size:38px;
    line-height:1.15;
}

.mh-contact__content p{
    margin:0;
    color:var(--muted);
    font-size:17px;
}





.mh-advantages{
    background:var(--soft);
}

.mh-advantages-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.mh-adv-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:20px;
    padding:28px;
    box-shadow:var(--shadow);
    transition:.25s ease;
}

.mh-adv-card:hover{
    transform:translateY(-6px);
}

.mh-adv-icon{
    font-size:30px;
    margin-bottom:14px;
}

.mh-adv-card h3{
    margin:0 0 10px;
    color:var(--primary);
}

.mh-adv-card p{
    margin:0;
    color:var(--muted);
    line-height:1.6;
}


.mh-sectors{
    background:linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.mh-sectors-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
}

.mh-sector-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:22px;
    padding:26px;
    box-shadow:var(--shadow);
    transition:.25s ease;
}

.mh-sector-card:hover{
    transform:translateY(-6px);
}

.mh-sector-icon{
    font-size:30px;
    margin-bottom:14px;
}

.mh-sector-card h3{
    margin:0 0 10px;
    color:var(--primary);
    font-size:21px;
}

.mh-sector-card p{
    margin:0;
    color:var(--muted);
    line-height:1.65;
}





.mh-gallery-section{
    background:linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.mh-gallery-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:18px;
    grid-auto-rows:220px;
}

.mh-gallery-item{
    margin:0;
    overflow:hidden;
    border-radius:24px;
    border:1px solid var(--border);
    box-shadow:var(--shadow);
    background:#fff;
    transition:.25s ease;
}

.mh-gallery-item:hover{
    transform:translateY(-6px);
}

.mh-gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.mh-gallery-item--large{
    grid-column:span 2;
    grid-row:span 2;
}

.mh-gallery-item--wide{
    grid-column:span 2;
}


@media (max-width: 1200px){
    .mh-cta__wrap{
        grid-template-columns:1fr;
    }
}

@media (max-width: 767px){
    .mh-cta{
        padding:70px 0;
    }

    .mh-cta__wrap{
        padding:24px;
        border-radius:22px;
    }

    .mh-cta__content h2{
        font-size:30px;
    }

    .mh-cta__content p{
        font-size:15px;
    }

    .mh-cta__buttons{
        flex-direction:column;
    }

    .mh-cta__stats{
        grid-template-columns:1fr;
    }

    .mh-cta__stat{
        padding:18px;
    }
}