@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap'); :root {
    --blue: #0057B8;
    --blue2: #00428e;
    --green: #00A651;
    --dark: #0c2442;
    --muted: #5d6b7d;
    --line: #dfe8f2;
    --soft: #f4f9ff;
    --footer: #082f5b;
    --shadow: 0 14px 38px rgba(0,87,184,.10);
    --radius: 18px
}

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

html {
    scroll-behavior: smooth
}

body {
    font-family: Inter,Arial,sans-serif;
    color: var(--dark);
    background: #fff;
    font-size: 15px;
    line-height: 1.6;
    overflow-x: hidden
}

a {
    text-decoration: none;
    color: inherit
}

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

.container {
    width: min(1180px,92%);
    margin: auto
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line)
}

.nav-wrap {
    height: 68px;
    display: flex;
    align-items: center;
    gap: 18px
}

.brand {
    display: flex;
    align-items: center;
    gap: 11px;
    min-width: 190px;
    font-weight: 900;
    font-size: 22px;
    color: var(--blue2);
    letter-spacing: -.03em
}

.brand img {
    width: 58px;
    height: 42px;
    object-fit: contain
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    justify-content: center
}

.main-nav a {
    font-weight: 800;
    font-size: 13px;
    color: #16233a;
    padding: 22px 0;
    position: relative
}

.main-nav a.active,.main-nav a:hover {
    color: var(--blue)
}

.main-nav a:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 13px;
    width: 0;
    height: 3px;
    background: var(--green);
    border-radius: 10px;
    transition: .22s
}

.main-nav a.active:after,.main-nav a:hover:after {
    width: 100%
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px
}

.search-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 0;
    background: #eef6ff;
    color: var(--blue);
    font-size: 15px
}

.lang {
    font-size: 12px;
    font-weight: 800;
    color: var(--blue2);
    white-space: nowrap
}

.btn {
    border: none;
    border-radius: 999px;
    padding: 11px 20px;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: .22s;
    font-size: 14px
}

.btn-primary {
    background: var(--blue);
    color: #fff;
    box-shadow: 0 10px 22px rgba(0,87,184,.20)
}

.btn-primary:hover {
    background: var(--blue2);
    transform: translateY(-2px)
}

.btn-outline {
    background: #fff;
    color: var(--blue);
    border: 2px solid var(--blue)
}

.btn-outline:hover {
    background: #eef6ff
}

.btn-green {
    background: #22cf66;
    color: #fff
}

.btn-dark {
    background: #111827;
    color: #fff
}

.nav-toggle {
    display: none;
    background: #eef6ff;
    border: 0;
    border-radius: 12px;
    width: 42px;
    height: 42px;
    color: var(--blue);
    font-size: 20px
}

.hero {
    position: relative;
    min-height: 650px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center
}

.hero:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,rgba(255,255,255,.98) 0%,rgba(255,255,255,.9) 45%,rgba(255,255,255,.34) 100%)
}

.hero .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr .82fr;
    gap: 48px;
    align-items: center;
    padding: 58px 0 96px
}

.eyebrow,.section-tag {
    display: inline-flex;
    padding: 7px 15px;
    border-radius: 999px;
    background: #e5f8ee;
    color: #008b42;
    font-weight: 900;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .04em
}

.hero h1 {
    font-size: clamp(38px,5.1vw,64px);
    line-height: 1.06;
    letter-spacing: -.055em;
    color: #064896;
    margin: 18px 0
}

.lead {
    font-size: 17px;
    color: #243957;
    max-width: 720px
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 24px 0
}

.seo-note {
    background: rgba(255,255,255,.88);
    border-left: 4px solid var(--blue);
    border-radius: 0 14px 14px 0;
    padding: 16px 20px;
    max-width: 720px;
    color: #263b58;
    box-shadow: var(--shadow)
}

.hero-card {
    background: #fff;
    border: 12px solid rgba(255,255,255,.86);
    border-radius: 28px;
    box-shadow: var(--shadow);
    overflow: hidden
}

.hero-card img {
    height: 480px;
    width: 100%;
    object-fit: cover
}

.stats-strip {
    margin-top: -58px;
    position: relative;
    z-index: 5
}

.stats-inner {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: repeat(5,1fr);
    overflow: hidden
}

.stat {
    padding: 24px 16px;
    text-align: center;
    border-right: 1px solid var(--line)
}

.stat:last-child {
    border-right: 0
}

.stat b {
    font-size: 34px;
    line-height: 1;
    color: var(--blue);
    font-weight: 900
}

.stat span {
    display: block;
    margin-top: 8px;
    text-transform: uppercase;
    color: #68778c;
    font-size: 12px;
    font-weight: 900
}

section {
    padding: 72px 0
}

.section-light {
    background: linear-gradient(180deg,#f7fbff,#fff)
}

.section-blue {
    background: linear-gradient(180deg,#f4faff,#edf6ff)
}

.section-head {
    max-width: 780px;
    margin: 0 auto 34px;
    text-align: center
}

.section-head h2 {
    font-size: clamp(30px,4vw,44px);
    line-height: 1.12;
    color: #064896;
    letter-spacing: -.04em;
    margin: 12px 0
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 44px;
    align-items: center
}

.image-stack .main-img {
    border-radius: 22px;
    box-shadow: var(--shadow);
    height: 380px;
    width: 100%;
    object-fit: cover
}

.content h2 {
    font-size: clamp(30px,4vw,46px);
    line-height: 1.14;
    color: #064896;
    letter-spacing: -.04em;
    margin: 14px 0
}

.check-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 12px;
    margin-top: 22px
}

.check {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 12px 14px;
    font-weight: 800;
    color: #293d59
}

.check i {
    color: var(--green);
    margin-right: 7px
}

.jobs-grid,.benefits-grid,.leaders-grid,.news-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 18px
}

.card,.job-card,.leader-card,.news-card,.panel {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 8px 22px rgba(0,87,184,.055);
    transition: .22s
}

.card:hover,.job-card:hover,.leader-card:hover,.news-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow)
}

.card {
    padding: 22px
}

.card i {
    font-size: 24px;
    color: var(--blue);
    background: #eef6ff;
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    margin-bottom: 14px
}

.card h3,.job-card h3 {
    font-size: 19px;
    color: #064896;
    margin-bottom: 6px
}

.job-card {
    padding: 22px;
    min-height: 320px;
    display: flex;
    flex-direction: column
}

.job-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px
}

.badge {
    background: #e5f8ee;
    color: #008b42;
    border-radius: 999px;
    padding: 6px 12px;
    font-weight: 900;
    font-size: 12px
}

.job-card .salary {
    font-size: 17px;
    color: var(--blue);
    font-weight: 900;
    margin: 4px 0 14px
}

.job-meta {
    display: grid;
    gap: 8px;
    margin-bottom: 18px;
    color: #40516c
}

.job-meta i {
    width: 20px;
    color: var(--blue)
}

.job-card .btn {
    margin-top: auto;
    width: 100%;
    padding: 11px 14px
}

.global-box,.cta {
    background: linear-gradient(135deg,#004a9f,#006bd8);
    border-radius: 26px;
    padding: 42px;
    color: #fff;
    box-shadow: var(--shadow)
}

.global-box {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 28px;
    align-items: center
}

.global-box h2,.cta h2 {
    font-size: 38px;
    line-height: 1.12
}

.global-box p,.cta p {
    color: #dff0ff
}

.country-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 10px
}

.country {
    background: rgba(255,255,255,.13);
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 14px;
    padding: 14px;
    text-align: center;
    font-weight: 900
}

.leader-card {
    overflow: hidden
}

.leader-card img {
    height: 250px;
    width: 100%;
    object-fit: cover
}

.leader-card div,.news-card div {
    padding: 18px
}

.leader-card h3,.news-card h3 {
    font-size: 19px;
    color: #064896
}

.leader-card span {
    color: var(--green);
    font-weight: 900
}

.gallery {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 15px
}

.gallery img {
    height: 210px;
    width: 100%;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: var(--shadow)
}

.gallery img:first-child {
    height: 435px;
    grid-row: span 2
}

.news-card {
    overflow: hidden
}

.news-card img {
    height: 180px;
    width: 100%;
    object-fit: cover
}

.cta {
    display: block;
    align-items: center;
    justify-content: space-between;
    gap: 26px
}

.contact-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 28px
}

.panel {
    padding: 26px
}

.panel h2 {
    font-size: 36px;
    line-height: 1.12;
    color: #064896;
    margin-bottom: 16px
}

.info-list {
    display: grid;
    gap: 10px;
    margin: 18px 0
}

.info-list i {
    width: 22px;
    color: var(--blue)
}

.form-grid {
    display: grid;
    gap: 12px
}

.input,textarea,select {
    width: 100%;
    height: 44px;
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: 11px;
    font: inherit;
    font-size: 14px;
    outline: none;
    background: #fff
}

textarea {
    height: auto;
    min-height: 105px;
    resize: vertical
}

.input:focus,textarea:focus,select:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(0,87,184,.08)
}

.sub-hero {
    padding: 56px 0;
    background: linear-gradient(135deg,#edf7ff,#fff);
    border-bottom: 1px solid var(--line)
}

.sub-hero h1 {
    font-size: clamp(32px,5vw,52px);
    line-height: 1.08;
    color: #064896;
    letter-spacing: -.05em
}

.verify-box {
    max-width: 880px;
    margin: 58px auto
}

.verify-form {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 12px
}

.result-card {
    max-width: 980px;
    margin: 30px auto 60px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow)
}

.result-head {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 20px;
    align-items: center;
    background: #f5faff;
    padding: 26px
}

.result-photo {
    width: 118px;
    height: 118px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0,0,0,.18)
}

.result-head h2 {
    font-size: 28px;
    color: #064896
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 14px;
    padding: 26px
}

.detail-box {
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 14px
}

.detail-box b {
    display: block;
    color: #617083
}

.approved-box {
    margin: 0 26px 26px;
    border: 1px solid #22a85a;
    background: #eaf9f0;
    border-radius: 14px;
    padding: 18px
}

.print-actions {
    max-width: 980px;
    margin: 25px auto 0;
    display: flex;
    gap: 10px
}

.site-footer {
    background: var(--footer);
    color: #d8ebff;
    padding: 52px 0 18px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr 1fr 1.25fr;
    gap: 42px
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border-radius: 12px;
    padding: 8px 12px;
    color: var(--blue2);
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 16px
}

.footer-logo img {
    width: 58px;
    height: 36px;
    object-fit: contain
}

.site-footer h4 {
    color: #fff;
    margin-bottom: 14px
}

.site-footer a {
    display: block;
    margin: 7px 0;
    color: #d8ebff
}

.socials {
    display: flex;
    gap: 10px;
    margin-top: 16px
}

.socials a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,.11);
    border-radius: 50%;
    display: grid;
    place-items: center
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.13);
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 30px;
    padding-top: 20px
}

.float-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1000;
    width: 56px;
    height: 56px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 30px;
    box-shadow: 0 14px 30px rgba(37,211,102,.35)
}

.apply-modal {
    position: fixed;
    inset: 0;
    background: rgba(6,43,84,.58);
    backdrop-filter: blur(6px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px
}

.apply-modal.show {
    display: flex;
    animation: fade .24s ease
}

.modal-card {
    background: #fff;
    border-radius: 22px;
    width: min(520px,96vw);
    padding: 26px;
    position: relative;
    box-shadow: 0 30px 80px rgba(0,0,0,.25);
    animation: pop .28s ease
}

.modal-close {
    position: absolute;
    right: 16px;
    top: 14px;
    border: 0;
    background: #eef6ff;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-size: 18px;
    color: var(--blue)
}

.modal-card h2 {
    font-size: 30px;
    color: #064896
}

.modal-form {
    display: grid;
    gap: 10px;
    margin-top: 14px
}

.modal-form input,.modal-form textarea {
    height: 44px;
    padding: 10px 13px;
    border: 1px solid var(--line);
    border-radius: 11px;
    font: inherit
}

.modal-form textarea {
    height: 95px
}

.admin-body {
    background: #f3f7fb;
    color: #263b58
}

.admin-shell {
    display: grid;
    grid-template-columns: 245px 1fr;
    min-height: 100vh
}

.admin-side {
    background: #062b54;
    color: #fff;
    padding: 22px;
    position: sticky;
    top: 0;
    height: 100vh
}

.admin-brand {
    background: #fff;
    border-radius: 14px;
    padding: 12px;
    margin-bottom: 20px;
    color: var(--blue2);
    font-weight: 900
}

.admin-brand img {
    width: 90px;
    margin-bottom: 6px
}

.admin-side a {
    display: block;
    color: #d8ebff;
    padding: 10px 12px;
    border-radius: 10px;
    margin: 3px 0;
    font-size: 14px
}

.admin-side a:hover,.admin-side a.active {
    background: rgba(255,255,255,.12)
}

.admin-main {
    padding: 26px
}

.admin-title {
    font-size: 30px;
    color: #064896;
    margin-bottom: 16px
}

.admin-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 20px;
    box-shadow: var(--shadow);
    margin-bottom: 18px
}

.admin-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 14px
}

.kpi {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 18px;
    box-shadow: var(--shadow)
}

.kpi b {
    font-size: 26px;
    color: var(--blue)
}

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

.admin-form .full {
    grid-column: 1/-1
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff
}

.data-table th,.data-table td {
    padding: 10px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    font-size: 13px;
    vertical-align: middle
}

.data-table th {
    background: #eef6ff;
    color: #064896
}

.table-wrap {
    overflow: auto
}

.status {
    display: inline-flex;
    padding: 5px 9px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 11px;
    background: #e5f8ee;
    color: #008b42
}

.danger {
    color: #dc2626;
    font-weight: 800
}

.notice {
    padding: 12px 14px;
    border-radius: 12px;
    background: #e5f8ee;
    color: #08783d;
    margin-bottom: 14px;
    font-weight: 700
}

@keyframes fade {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes pop {
    from {
        opacity: 0;
        transform: translateY(16px) scale(.96)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@media(max-width: 1050px) {
    .nav-toggle {
        display:grid;
        place-items: center
    }

    .main-nav {
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        background: #fff;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        padding: 18px 4%;
        border-bottom: 1px solid var(--line)
    }

    .main-nav.show {
        display: flex
    }

    .main-nav a {
        padding: 7px 0
    }

    .nav-actions .lang,.search-btn {
        display: none
    }

    .brand {
        min-width: auto
    }

    .hero .container,.grid-2,.global-box,.contact-grid {
        grid-template-columns: 1fr
    }

    .hero-card img {
        height: 380px
    }

    .stats-inner {
        grid-template-columns: repeat(2,1fr)
    }

    .stat {
        border-bottom: 1px solid var(--line)
    }

    .jobs-grid,.benefits-grid,.leaders-grid,.news-grid {
        grid-template-columns: repeat(2,1fr)
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }

    .admin-shell {
        grid-template-columns: 1fr
    }

    .admin-side {
        position: relative;
        height: auto
    }

    .admin-grid {
        grid-template-columns: repeat(2,1fr)
    }

    .admin-form {
        grid-template-columns: 1fr
    }

    .verify-form {
        grid-template-columns: 1fr
    }
}

@media(max-width: 650px) {
    .brand span {
        display:none
    }

    .hero {
        min-height: auto
    }

    .hero .container {
        padding: 38px 0 76px
    }

    .hero h1 {
        font-size: 36px
    }

    .hero-card img {
        height: 300px
    }

    .stats-strip {
        margin-top: -40px
    }

    .stats-inner,.jobs-grid,.benefits-grid,.leaders-grid,.news-grid,.country-grid,.footer-grid,.details-grid,.admin-grid {
        grid-template-columns: 1fr
    }

    .gallery {
        grid-template-columns: 1fr
    }

    .gallery img:first-child {
        height: 240px
    }

    .cta {
        display: block;
        padding: 28px
    }

    .global-box h2,.cta h2,.panel h2 {
        font-size: 30px
    }

    .section-head h2 {
        font-size: 30px
    }

    .footer-bottom {
        display: block
    }

    .result-head {
        grid-template-columns: 1fr;
        text-align: left
    }

    .admin-main {
        padding: 16px
    }
}

@media print {
    .site-header,.site-footer,.float-whatsapp,.print-actions,.no-print {
        display: none!important
    }

    .result-card {
        box-shadow: none;
        margin: 0;
        border: 1px solid #ccc
    }

    body {
        background: #fff
    }
}

/* ===== V4 professional compact polish ===== */
body {
    font-size: 14px;
    font-family: Inter,Arial,sans-serif;
    color: #10233f
}

.site-header {
    box-shadow: 0 8px 22px rgba(0,0,0,.035)
}

.nav-wrap {
    height: 64px
}

.brand {
    font-size: 20px;
    gap: 9px;
    min-width: 175px
}

.logo-box {
    background: #fff;
    border-radius: 9px;
    padding: 4px 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center
}

.brand img {
    width: 64px;
    height: 42px;
    object-fit: contain
}

.footer-logo img {
    width: 66px;
    height: 42px
}

.main-nav {
    gap: 18px
}

.main-nav a {
    font-size: 12.5px;
    font-weight: 800
}

.btn {
    padding: 9px 17px;
    font-size: 13px
}

.nav-apply {
    padding: 10px 18px
}

.hero {
    min-height: 610px
}

.hero .container {
    gap: 36px;
    padding: 44px 0 82px
}

.hero h1 {
    font-size: clamp(34px,4.3vw,58px);
    letter-spacing: -.045em
}

.lead {
    font-size: 16px
}

.hero-card {
    padding: 10px;
    border-radius: 22px
}

.hero-card img {
    height: 470px;
    border-radius: 18px
}

.stats-strip {
    margin-top: -54px
}

.stat {
    padding: 24px 18px
}

.stat b {
    font-size: 34px
}

.stat span {
    font-size: 12px
}

.section-head {
    margin-bottom: 28px
}

.section-head h2,.content h2 {
    font-size: clamp(28px,3.2vw,42px)
}

section {
    padding: 64px 0
}

.jobs-grid {
    grid-template-columns: repeat(4,1fr);
    gap: 16px
}

.job-card {
    padding: 18px;
    min-height: 275px
}

.job-card h3 {
    font-size: 18px
}

.job-card .salary {
    font-size: 16px
}

.job-meta {
    font-size: 13.5px;
    gap: 7px
}

.job-card .btn {
    padding: 9px 12px
}

.card {
    padding: 18px
}

.card h3 {
    font-size: 17px
}

.panel {
    padding: 22px
}

.panel h2 {
    font-size: 32px
}

.input,textarea,select {
    height: 40px;
    padding: 8px 12px;
    border-radius: 9px;
    font-size: 13px
}

textarea {
    min-height: 86px
}

.modal-card {
    width: min(430px,94vw);
    padding: 22px
}

.modal-card h2 {
    font-size: 24px
}

.modal-form input,.modal-form textarea {
    height: 40px;
    font-size: 13px
}

.footer-grid {
    gap: 34px
}

.site-footer {
    padding: 46px 0 16px
}

.admin-body {
    font-size: 13px
}

.admin-shell {
    grid-template-columns: 230px 1fr
}

.admin-side {
    padding: 18px
}

.admin-brand img {
    width: 72px
}

.admin-title {
    font-size: 26px
}

.admin-card {
    padding: 18px;
    border-radius: 14px
}

.admin-form {
    gap: 10px
}

.data-table th,.data-table td {
    padding: 8px;
    font-size: 12.5px
}

.kpi {
    padding: 15px
}

.kpi b {
    font-size: 24px
}

.offer-page {
    background: #d7d7d7;
    padding: 32px 0
}

.letter-sheet {
    width: 794px;
    min-height: 1123px;
    background: #fff;
    margin: 0 auto 28px;
    padding: 58px 68px;
    position: relative;
    box-shadow: 0 5px 18px rgba(0,0,0,.16);
    font-size: 13px;
    line-height: 1.45;
    color: #222
}

.letter-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    border-bottom: 2px solid #777;
    padding-bottom: 18px;
    margin-bottom: 25px
}

.letter-logo {
    width: 110px;
    height: 110px;
    object-fit: contain
}

.letter-contact {
    font-size: 12px;
    line-height: 1.55
}

.letter-qr {
    width: 105px
}

.letter-watermark {
    position: absolute;
    left: 50%;
    top: 52%;
    transform: translate(-50%,-50%);
    width: 480px;
    opacity: .075;
    z-index: 0
}

.letter-content {
    position: relative;
    z-index: 1
}

.letter-photo {
    float: right;
    width: 105px;
    height: 120px;
    object-fit: cover;
    margin: 0 0 12px 20px
}

.letter-title {
    text-align: center;
    font-size: 20px;
    margin: 10px 0 20px
}

.letter-sheet h3 {
    font-size: 15px;
    margin-top: 16px
}

.signature-row {
    display: flex;
    justify-content: space-between;
    margin-top: 130px
}

.sig-img {
    width: 120px;
    height: 80px;
    object-fit: contain
}

.qr-inline {
    display: flex;
    gap: 12px;
    align-items: center
}

.blog-img-preview {
    width: 82px;
    height: 55px;
    object-fit: cover;
    border-radius: 8px
}

.compact-form {
    max-width: 760px
}

.compact-form .admin-form {
    grid-template-columns: repeat(3,1fr)
}

.compact-form .full {
    grid-column: 1/-1
}

@media(max-width: 1050px) {
    .jobs-grid {
        grid-template-columns:repeat(2,1fr)
    }

    .compact-form .admin-form {
        grid-template-columns: 1fr
    }

    .letter-sheet {
        width: 100%;
        padding: 36px 25px
    }

    .admin-shell {
        grid-template-columns: 1fr
    }
}

@media(max-width: 650px) {
    .brand img {
        width:54px
    }

    .brand span:not(.logo-box) {
        display: inline;
        font-size: 18px
    }

    .jobs-grid {
        grid-template-columns: 1fr
    }

    .hero-card img {
        height: 300px
    }

    .letter-sheet {
        font-size: 12px
    }

    .letter-header {
        display: block
    }

    .letter-qr {
        margin: 10px 0
    }

    .signature-row {
        display: block
    }

    .admin-main {
        padding: 12px
    }
}

@media print {
    .letter-sheet {
        box-shadow: none;
        margin: 0;
        page-break-after: always;
        width: 100%;
        min-height: 100vh
    }

    .offer-page {
        padding: 0;
        background: #fff
    }
}

/* ===== V5 jobs/blogs/dashboard/content polish ===== */
.brand-logo-only {
    min-width: 96px;
    gap: 0
}

.brand-logo-only .logo-box {
    padding: 3px 6px
}

.brand-logo-only img {
    width: 86px;
    height: 46px
}

.footer-logo {
    padding: 8px 10px
}

.footer-logo img {
    width: 92px;
    height: 48px
}

.admin-brand {
    text-align: center
}

.admin-brand img {
    width: 105px;
    margin: 0 auto 8px
}

.job-desc {
    font-size: 13px;
    color: #4d6077;
    margin: 0 0 12px;
    line-height: 1.55
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 18px
}

.blog-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: 0 8px 22px rgba(0,87,184,.055);
    overflow: hidden;
    transition: .22s
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow)
}

.blog-image img {
    width: 100%;
    height: 170px;
    object-fit: cover
}

.blog-content {
    padding: 18px
}

.blog-category {
    display: inline-flex;
    background: #e5f8ee;
    color: #008b42;
    border-radius: 999px;
    padding: 5px 10px;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase
}

.blog-content h3 {
    font-size: 18px;
    line-height: 1.25;
    color: #064896;
    margin: 10px 0 8px
}

.blog-content p {
    font-size: 13.5px;
    color: #4d6077
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    margin-top: 12px;
    font-size: 12px;
    font-weight: 800;
    color: #60728a
}

.blog-meta a {
    color: var(--blue)
}

.career-filter {
    display: grid;
    grid-template-columns: 1.2fr .8fr auto;
    gap: 12px;
    margin-bottom: 22px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 14px;
    box-shadow: var(--shadow)
}

.detail-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 8px 22px rgba(0,87,184,.055)
}

.detail-card .icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #eef6ff;
    color: var(--blue);
    display: grid;
    place-items: center;
    font-size: 22px;
    margin-bottom: 14px
}

.detail-card h3 {
    color: #064896;
    font-size: 18px;
    margin-bottom: 6px
}

.detail-card p {
    font-size: 13.5px;
    color: #4d6077
}

.blog-img-preview {
    width: 92px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px
}

.data-table a {
    font-weight: 800;
    color: var(--blue)
}

@media(max-width: 1050px) {
    .blog-grid {
        grid-template-columns:repeat(2,1fr)
    }

    .career-filter {
        grid-template-columns: 1fr
    }

    .brand-logo-only img {
        width: 76px
    }
}

@media(max-width: 650px) {
    .blog-grid {
        grid-template-columns:1fr
    }

    .brand-logo-only {
        min-width: auto
    }

    .brand-logo-only img {
        width: 68px;
        height: 42px
    }

    .nav-wrap {
        gap: 8px
    }

    .nav-apply {
        display: none
    }

    .career-filter {
        padding: 12px
    }

    .blog-image img {
        height: 190px
    }
}

.admin-grid {
    grid-template-columns: repeat(auto-fit,minmax(160px,1fr))
}

/* ===== V6 mobile/header responsive fix ===== */
.site-header {
    width: 100%;
}

.nav-wrap {
    justify-content: space-between;
    position: relative;
}

.brand-logo-only {
    display: flex!important;
    align-items: center!important;
    flex: 0 0 auto!important;
    min-width: auto!important;
    z-index: 1002;
}

.brand-logo-only .logo-box {
    display: inline-flex!important;
    visibility: visible!important;
    opacity: 1!important;
    background: #fff!important;
    padding: 4px 6px!important;
    border-radius: 10px!important;
}

.brand-logo-only img {
    display: block!important;
    width: 92px!important;
    height: 48px!important;
    object-fit: contain!important;
}

.nav-actions {
    margin-left: auto;
    flex: 0 0 auto;
}

.nav-toggle {
    align-items: center;
    justify-content: center;
}

@media(max-width: 1180px) {
    .container {
        width:min(100% - 44px,1180px);
    }

    .main-nav {
        gap: 14px;
    }

    .main-nav a {
        font-size: 12px;
    }

    .nav-apply {
        padding: 9px 15px;
    }
}

@media(max-width: 1050px) {
    .container {
        width:min(100% - 40px,1180px);
    }

    .site-header {
        overflow: visible;
    }

    .nav-wrap {
        height: 72px;
        gap: 12px;
    }

    .brand-logo-only img {
        width: 88px!important;
        height: 50px!important;
    }

    .nav-actions {
        display: flex!important;
        margin-left: auto;
        gap: 10px;
    }

    .nav-toggle {
        display: flex!important;
        position: relative;
        z-index: 1002;
    }

    .search-btn {
        display: none!important;
    }

    .lang {
        display: none!important;
    }

    .main-nav {
        position: absolute!important;
        top: 72px!important;
        left: 20px!important;
        right: 20px!important;
        width: auto!important;
        background: #fff!important;
        border: 1px solid var(--line)!important;
        border-radius: 0 0 18px 18px!important;
        box-shadow: 0 22px 42px rgba(0,48,100,.14)!important;
        padding: 14px 18px!important;
        display: none!important;
        flex-direction: column!important;
        align-items: flex-start!important;
        gap: 0!important;
        z-index: 1001!important;
    }

    .main-nav.show {
        display: flex!important;
    }

    .main-nav a {
        display: block;
        width: 100%;
        padding: 10px 0!important;
        font-size: 14px!important;
        line-height: 1.35;
    }

    .main-nav a:after {
        bottom: 4px!important;
        height: 2px!important;
    }

    .hero {
        min-height: auto;
        background-position: center top;
    }

    .hero:before {
        background: linear-gradient(180deg,rgba(255,255,255,.96) 0%,rgba(255,255,255,.90) 50%,rgba(255,255,255,.70) 100%);
    }

    .hero .container {
        grid-template-columns: 1fr!important;
        padding: 66px 0 70px!important;
        gap: 26px!important;
    }

    .hero h1 {
        font-size: clamp(34px,6vw,52px)!important;
        max-width: 760px;
    }

    .lead {
        max-width: 760px;
    }

    .hero-card {
        max-width: 720px;
        margin: auto;
        width: 100%;
    }

    .hero-card img {
        height: 390px!important;
    }
}

@media(max-width: 650px) {
    .container {
        width:calc(100% - 32px)!important;
    }

    .nav-wrap {
        height: 66px!important;
        gap: 8px!important;
    }

    .brand-logo-only .logo-box {
        display: inline-flex!important;
    }

    .brand-logo-only img {
        width: 82px!important;
        height: 48px!important;
    }

    .nav-actions {
        gap: 8px!important;
    }

    .nav-apply {
        display: none!important;
    }

    .nav-toggle {
        display: flex!important;
        width: 42px!important;
        height: 42px!important;
        border-radius: 12px!important;
    }

    .main-nav {
        top: 66px!important;
        left: 16px!important;
        right: 16px!important;
        padding: 16px 18px!important;
    }

    .main-nav a {
        font-size: 14px!important;
        padding: 10px 0!important;
    }

    .hero {
        background-size: cover!important;
        background-position: center top!important;
    }

    .hero .container {
        padding: 76px 0 46px!important;
    }

    .eyebrow,.section-tag {
        font-size: 10.5px!important;
        padding: 7px 12px!important;
        letter-spacing: .02em;
    }

    .hero h1 {
        font-size: 34px!important;
        line-height: 1.08!important;
        letter-spacing: -.045em!important;
        margin: 16px 0 12px!important;
    }

    .lead {
        font-size: 15px!important;
        line-height: 1.55!important;
    }

    .hero-actions {
        gap: 10px!important;
        margin: 20px 0!important;
    }

    .hero-actions .btn {
        padding: 10px 14px!important;
        font-size: 12.5px!important;
    }

    .seo-note {
        font-size: 13px!important;
        padding: 14px 16px!important;
        border-radius: 0 12px 12px 0!important;
    }

    .hero-card {
        border-width: 8px!important;
        border-radius: 22px!important;
    }

    .hero-card img {
        height: 310px!important;
        border-radius: 16px!important;
        object-position: center top;
    }

    section {
        padding: 48px 0!important;
    }

    .stats-strip {
        margin-top: -26px!important;
    }

    .stats-inner {
        border-radius: 16px!important;
    }

    .stat {
        padding: 18px 12px!important;
    }

    .stat b {
        font-size: 26px!important;
    }

    .grid-2 {
        gap: 24px!important;
    }

    .content h2,.section-head h2 {
        font-size: 30px!important;
    }

    .check-grid {
        grid-template-columns: 1fr!important;
    }

    .global-box,.cta {
        padding: 24px!important;
        border-radius: 20px!important;
    }

    .global-box h2,.cta h2 {
        font-size: 28px!important;
    }

    .float-whatsapp {
        right: 16px!important;
        bottom: 16px!important;
        width: 54px!important;
        height: 54px!important;
    }
}

@media(max-width: 380px) {
    .container {
        width:calc(100% - 28px)!important;
    }

    .brand-logo-only img {
        width: 78px!important;
        height: 44px!important;
    }

    .hero h1 {
        font-size: 31px!important;
    }

    .lead {
        font-size: 14px!important;
    }

    .hero-actions {
        flex-direction: column!important;
        align-items: flex-start!important;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 260px;
    }

    .hero-card img {
        height: 270px!important;
    }
}

.inner-hero {
    padding: 90px 0 55px;
    background: linear-gradient(135deg,#eef7ff,#ffffff);
    border-bottom: 1px solid #e3edf7;
}

.inner-hero h1 {
    font-size: 44px;
    color: var(--blue);
    margin: 14px 0 10px;
}

.inner-hero p {
    max-width: 760px;
    font-size: 17px;
    color: #40516b;
}

.content-page {
    max-width: 980px;
    background: #fff;
    border: 1px solid #e3edf7;
    border-radius: 22px;
    padding: 38px;
    box-shadow: 0 12px 35px rgba(0,35,80,.07);
}

.content-page h2 {
    color: var(--blue);
    font-size: 24px;
    margin: 26px 0 10px;
}

.content-page h2:first-child {
    margin-top: 0;
}

.content-page p {
    color: #40516b;
    line-height: 1.8;
    font-size: 16px;
}

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

.sitemap-card {
    background: #fff;
    border: 1px solid #e3edf7;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 10px 28px rgba(0,35,80,.06);
}

.sitemap-card h3 {
    color: var(--blue);
    margin-bottom: 18px;
    font-size: 22px;
}

.sitemap-card a {
    display: block;
    padding: 9px 0;
    color: #14233b;
    font-weight: 700;
    text-decoration: none;
}

.sitemap-card a:hover {
    color: var(--green);
}

@media(max-width: 900px) {
    .sitemap-grid {
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width: 520px) {
    .inner-hero {
        padding:65px 0 40px;
    }

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

    .content-page {
        padding: 24px;
        border-radius: 18px;
    }

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