:root {
    --blue: #125b9b;
    --blue-deep: #011c35;
    --red: #df284a;
    --gray-bg: #eeeeef;
    --soft-bg: #f7f7f7;
    --text: #011c35;
    --body: #333333;
    --muted: #77767a;
    --line: rgba(1, 28, 53, 0.22);
}

* {
    box-sizing: border-box;
    word-break: break-word;
}

html {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
}

body {
    width: 100%;
    min-width: 320px;
    margin: 0;
    overflow-x: hidden;
    background: #ffffff;
    color: var(--text);
    font-family: "Red Hat Text", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
}

body.is-loading {
    overflow: hidden;
}

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

button {
    font: inherit;
    cursor: pointer;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

.content-shell {
    width: min(calc(100% - clamp(32px, 5vw, 80px)), 1360px);
    margin: 0 auto;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 40;
    color: #ffffff;
    transition: background 240ms ease, box-shadow 240ms ease;
}

.site-header.is-scrolled,
.site-header.nav-open {
    background: var(--red);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

html[dir="rtl"] body {
    direction: rtl;
}

html[dir="rtl"] .top-line,
html[dir="rtl"] .nav-links,
html[dir="rtl"] .hero-nav,
html[dir="rtl"] .service-tab,
html[dir="rtl"] .breadcrumb,
html[dir="rtl"] .share-row {
    flex-direction: row-reverse;
}

html[dir="rtl"] .dropdown > a::after {
    margin-left: 0;
    margin-right: 10px;
}

html[dir="rtl"] .dropdown-panel {
    left: auto;
    right: 0;
    text-align: right;
}

html[dir="rtl"] .hero-copy {
    left: auto;
    right: 40px;
    text-align: right;
}

html[dir="rtl"] .detail-card img {
    float: left;
    margin: 0 47px 17px 0;
}

.header-shell {
    display: grid;
    grid-template-columns: 155px minmax(0, 1fr);
    gap: 20px;
    width: min(calc(100% - clamp(32px, 5vw, 80px)), 1360px);
    margin: 0 auto;
    padding-top: 20px;
}

.brand {
    display: inline-flex;
    align-items: center;
    align-self: start;
    width: 142px;
    min-height: 86px;
    color: #ffffff;
}

.brand-logo {
    width: 142px;
    height: auto;
    object-fit: contain;
}

.brand-logo-mono {
    display: none;
    filter: brightness(0) invert(1);
}

.site-header.is-scrolled .brand-logo-color,
.site-header.nav-open .brand-logo-color {
    display: none;
}

.site-header.is-scrolled .brand-logo-mono,
.site-header.nav-open .brand-logo-mono {
    display: block;
}

.header-content {
    min-width: 0;
}

.top-line {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 13px;
    min-height: 34px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 500;
}

.top-line strong {
    font-weight: 600;
}

.top-action {
    border: 0;
    color: #ffffff;
    background: transparent;
    font-size: 14px;
    font-weight: 500;
    padding: 0;
}

.top-action:hover {
    text-decoration: underline;
}

.contact-icon {
    opacity: 0.88;
}

.language-switch {
    display: inline-flex;
    overflow: hidden;
    margin-left: 18px;
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: 999px;
}

.language-switch button {
    min-width: 30px;
    height: 30px;
    border: 0;
    color: #ffffff;
    background: transparent;
    font-size: 13px;
    font-weight: 700;
}

.language-switch .is-active {
    background: rgba(255, 255, 255, 0.2);
}

.search-modal {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: none;
}

.search-modal.is-open {
    display: block;
}

.search-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.64);
}

.search-dialog {
    position: relative;
    width: min(90vw, 760px);
    margin: 120px auto 0;
    padding: 48px;
    color: var(--text);
    background: #ffffff;
    border-radius: 6px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.search-close {
    position: absolute;
    top: 14px;
    right: 18px;
    width: 38px;
    height: 38px;
    border: 0;
    color: #000000;
    background: transparent;
    font-size: 34px;
    line-height: 1;
}

.search-dialog h2 {
    margin: 0 0 18px;
    font-size: 30px;
    font-weight: 600;
}

.page-loader {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: grid;
    place-items: center;
    background: #fcfcfd;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 180ms ease, visibility 180ms ease;
}

.page-loader.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.page-loader img {
    width: 256px;
    height: 256px;
    object-fit: contain;
    animation: loader-mark 1.8s ease-in-out infinite;
}

@keyframes loader-mark {
    0% {
        opacity: 0;
        transform: translateY(18px) scale(0.96);
    }

    35%,
    70% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    100% {
        opacity: 0;
        transform: translateY(-14px) scale(1.02);
    }
}

.search-dialog label {
    display: block;
    margin-bottom: 10px;
    color: var(--muted);
    font-size: 14px;
}

.search-dialog input {
    width: 100%;
    height: 56px;
    border: 1px solid #d8dce2;
    border-radius: 4px;
    padding: 0 18px;
    color: var(--text);
    font: inherit;
    outline: none;
}

.search-dialog input:focus {
    border-color: var(--blue);
}

.search-results {
    display: grid;
    gap: 10px;
    margin-top: 24px;
    max-height: 320px;
    overflow: auto;
}

.search-result {
    display: block;
    padding: 14px 16px;
    color: var(--text);
    background: #f5f5f5;
    border-radius: 4px;
}

.search-result strong {
    display: block;
    margin-bottom: 4px;
}

.search-result span {
    color: var(--muted);
    font-size: 14px;
}

.search-empty {
    color: var(--muted);
}

.main-nav {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding-top: 13px;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 30px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-links > li {
    position: relative;
}

.nav-links > li > a {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    text-shadow: 0 1px 7px rgba(0, 0, 0, 0.25);
}

.dropdown > a::after {
    content: "";
    width: 8px;
    height: 8px;
    margin-left: 10px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
}

.dropdown-panel {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    z-index: 70;
    display: grid;
    gap: 12px;
    min-width: 300px;
    max-width: min(92vw, 620px);
    padding: 22px 26px 24px;
    color: var(--text);
    background: #ffffff;
    border: 1px solid rgba(1, 28, 53, 0.1);
    border-radius: 5px;
    box-shadow: 0 24px 54px rgba(1, 28, 53, 0.22);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
    transition: 180ms ease;
}

.dropdown-panel::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -18px;
    height: 18px;
}

.dropdown:focus-within .dropdown-panel,
.dropdown.is-open .dropdown-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.dropdown-panel h3 {
    margin: 0 0 4px;
    font-size: 16px;
}

.dropdown-panel a {
    display: block;
    padding: 7px 9px;
    border-radius: 4px;
    color: var(--body);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.35;
    transition: color 160ms ease, background-color 160ms ease;
}

.dropdown-panel a:hover {
    color: var(--blue);
    background: #f2f7fc;
}

.dropdown-panel .dropdown-heading {
    display: inline-block;
    width: fit-content;
    margin-bottom: 3px;
    padding: 0;
    color: var(--text);
    font-size: 17px;
    font-weight: 800;
}

.dropdown-panel .dropdown-heading:hover {
    background: transparent;
}

.dropdown-panel .dropdown-heading::after {
    content: "";
    display: block;
    width: 34px;
    height: 3px;
    margin-top: 8px;
    background: var(--red);
}

.two-col {
    grid-template-columns: 1fr 1fr;
    min-width: 520px;
    gap: 38px;
}

.two-col .dropdown-heading-wide {
    grid-column: 1 / -1;
}

.two-col div {
    display: grid;
    gap: 14px;
}

.sustainability-dropdown .sustainability-menu {
    min-width: 640px;
    max-width: min(92vw, 760px);
    gap: 20px;
}

.sustainability-menu-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.dropdown-panel .sustainability-menu-card {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    min-height: 92px;
    overflow: hidden;
    color: var(--text);
    background: #f5f5f5;
    border: 1px solid rgba(1, 28, 53, 0.08);
    border-radius: 5px;
    font-weight: 700;
}

.sustainability-menu-card img {
    width: 92px;
    height: 92px;
    object-fit: cover;
}

.sustainability-menu-card span {
    display: block;
    padding-right: 14px;
    font-size: 14px;
    line-height: 1.35;
}

.dropdown-panel .sustainability-menu-card:hover {
    color: var(--blue);
    background: #ffffff;
    border-color: rgba(8, 29, 132, 0.22);
    box-shadow: 0 12px 24px rgba(1, 28, 53, 0.08);
}

.search-btn {
    position: relative;
    flex: 0 0 auto;
    width: 32px;
    height: 32px;
    border: 0;
    background: transparent;
}

.search-btn::before {
    content: "";
    position: absolute;
    left: 6px;
    top: 5px;
    width: 14px;
    height: 14px;
    border: 2px solid #ffffff;
    border-radius: 50%;
}

.search-btn::after {
    content: "";
    position: absolute;
    left: 20px;
    top: 20px;
    width: 12px;
    height: 2px;
    background: #ffffff;
    transform: rotate(45deg);
    transform-origin: left center;
}

.menu-toggle {
    display: none;
    position: absolute;
    top: 18px;
    right: 28px;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 6px;
    background: transparent;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    background: #ffffff;
}

.hero {
    position: relative;
    height: clamp(560px, 90vh, 690px);
    height: clamp(560px, 90svh, 690px);
    min-height: min(600px, 100vh);
    min-height: min(600px, 100svh);
    overflow: hidden;
    color: #ffffff;
}

.slides,
.slide {
    position: absolute;
    inset: 0;
}

.slide {
    background-position: center;
    background-size: cover;
    opacity: 0;
    transition: opacity 650ms ease;
}

.slide.is-active {
    opacity: 1;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(1, 28, 53, 0.38), rgba(1, 28, 53, 0.12) 62%, rgba(1, 28, 53, 0.08));
}

.hero-copy {
    position: absolute;
    left: max(40px, calc((100vw - 1360px) / 2));
    bottom: 82px;
    z-index: 2;
    width: min(620px, calc(100% - 80px));
}

.hero-copy h1 {
    margin: 0;
    font-size: 31px;
    font-weight: 700;
    line-height: 42px;
    letter-spacing: 0;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
    transition: opacity 180ms ease, transform 180ms ease;
}

.hero-title-line {
    display: block;
    width: 312px;
    max-width: 100%;
    height: 4px;
    margin-top: 14px;
    background: var(--blue);
}

.primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 158px;
    min-height: 40px;
    margin-top: 22px;
    padding: 0 24px;
    color: #ffffff;
    background: var(--blue);
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
}

.hero-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 30px;
}

.slide-dot {
    border: 0;
    color: #ffffff;
    background: transparent;
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    padding: 0;
    opacity: 0.98;
}

.slide-dot.is-active {
    color: var(--blue);
}

.progress-track {
    position: relative;
    width: 50px;
    height: 3px;
    background: rgba(255, 255, 255, 0.55);
}

.progress-fill {
    position: absolute;
    inset: 0 auto 0 0;
    width: 0;
    background: var(--blue);
}

.products-section {
    background: var(--gray-bg);
    padding: 62px 0 74px;
}

.products-section h2,
.about-section h2,
.news-section h2,
.faq-section h2 {
    margin: 0 0 28px;
    color: var(--text);
    font-size: 30px;
    font-weight: 600;
    line-height: 40px;
    letter-spacing: 0;
}

.service-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 14px;
    margin-bottom: 44px;
}

.service-tab {
    --tab-icon-size: 62px;
    --tab-icon-scale: 1;
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
    min-height: 88px;
    overflow: hidden;
    border: 1px solid rgba(1, 28, 53, 0.08);
    border-bottom: 4px solid transparent;
    border-radius: 6px 6px 0 0;
    padding: 10px 16px;
    color: var(--text);
    background: rgba(255, 255, 255, 0.62);
    text-align: left;
    transition: background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.service-tab.is-active {
    border-bottom-color: var(--blue);
    background: #ffffff;
    box-shadow: 0 12px 26px rgba(1, 28, 53, 0.06);
}

.service-tab strong {
    min-width: 0;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.25;
}

.tab-icon {
    position: relative;
    flex: 0 0 var(--tab-icon-size);
    display: grid;
    place-items: center;
    width: var(--tab-icon-size);
    height: var(--tab-icon-size);
    overflow: hidden;
    background: var(--blue);
    border-radius: 5px;
}

.tab-icon svg {
    width: calc(var(--tab-icon-size) * 0.9);
    height: calc(var(--tab-icon-size) * 0.9);
    fill: none;
    stroke: #ffffff;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.product-tab-svg {
    stroke-width: 4.8;
}

.service-tab-svg {
    stroke-width: 6;
}

.service-tab:not(.is-active) .tab-icon {
    background: var(--blue-deep);
}

.tab-icon::before {
    content: "";
    position: absolute;
}

.fuel-icon::before {
    left: 17px;
    top: 15px;
    width: 24px;
    height: 37px;
    border: 4px solid #ffffff;
    border-radius: 6px 6px 4px 4px;
    transform: scale(var(--tab-icon-scale));
    transform-origin: center;
}

.fuel-icon::after {
    content: "";
    position: absolute;
    left: 24px;
    top: 22px;
    width: 10px;
    height: 8px;
    background: #ffffff;
    border-radius: 2px;
    box-shadow:
        17px 6px 0 -2px #ffffff,
        23px 11px 0 -3px #ffffff,
        23px 18px 0 -3px #ffffff;
    transform: scale(var(--tab-icon-scale));
    transform-origin: left top;
}

.tools-icon::before {
    left: 28px;
    top: 16px;
    width: 11px;
    height: 38px;
    background: #ffffff;
    border-radius: 7px;
    transform: rotate(42deg) scale(var(--tab-icon-scale));
    transform-origin: center;
}

.tools-icon::after {
    content: "";
    position: absolute;
    left: 35px;
    top: 11px;
    width: 18px;
    height: 18px;
    border: 5px solid #ffffff;
    border-left-color: transparent;
    border-bottom-color: transparent;
    border-radius: 50%;
    transform: rotate(17deg) scale(var(--tab-icon-scale));
    transform-origin: center;
}

.service-panel {
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.service-panel.is-active {
    display: grid;
}

.service-card h3 {
    margin: 0 0 18px;
    color: var(--text);
    font-size: 23px;
    font-weight: 600;
    line-height: 32px;
}

.service-card img {
    width: 100%;
    height: 330px;
    border-radius: 6px 6px 0 0;
}

.service-card p {
    min-height: 92px;
    margin: 0;
    padding: 22px 24px;
    color: #111111;
    background: #ffffff;
    font-size: 18px;
    line-height: 28px;
}

.card-readmore {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    color: #ffffff;
    background: var(--blue);
    border-radius: 0 0 3px 3px;
    font-size: 16px;
    font-weight: 700;
}

.card-readmore:hover {
    background: var(--blue-deep);
}

.service-card {
    position: relative;
    display: grid;
    grid-template-rows: auto auto 1fr auto;
    min-width: 0;
    min-height: 100%;
    cursor: pointer;
}

.service-card::before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 50px;
    right: 18px;
    width: 50px;
    height: 50px;
    background: var(--blue);
    border-radius: 5px;
    box-shadow: 0 10px 22px rgba(1, 28, 53, 0.22);
}

.service-card::after {
    content: "";
    position: absolute;
    z-index: 2;
    top: 63px;
    right: 33px;
    width: 22px;
    height: 26px;
    border: 4px solid #ffffff;
    border-radius: 6px 6px 4px 4px;
}

.product-card::before {
    background: var(--red);
}

.gasoline-card::after {
    height: 24px;
    border-radius: 50% 50% 6px 6px;
}

.jet-card::after {
    width: 31px;
    height: 22px;
    right: 28px;
    top: 66px;
    border: 0;
    border-radius: 0;
    background:
        linear-gradient(90deg, transparent 0 8px, #ffffff 8px 13px, transparent 13px),
        linear-gradient(135deg, transparent 0 12px, #ffffff 12px 18px, transparent 18px),
        linear-gradient(#ffffff, #ffffff);
    background-size: 31px 22px, 31px 22px, 29px 5px;
    background-position: center;
    background-repeat: no-repeat;
    transform: skewX(-12deg);
}

.operation-card::before {
    background: var(--blue-deep);
}

.refuel-card::after {
    width: 30px;
    height: 24px;
    right: 28px;
    top: 65px;
    border: 0;
    border-radius: 0;
    background:
        linear-gradient(#ffffff, #ffffff) 0 11px / 30px 5px no-repeat,
        linear-gradient(#ffffff, #ffffff) 18px 0 / 5px 24px no-repeat,
        linear-gradient(#ffffff, #ffffff) 6px 3px / 5px 18px no-repeat;
}

.storage-card::after {
    width: 30px;
    height: 26px;
    right: 28px;
    top: 64px;
    border: 4px solid #ffffff;
    border-top-width: 7px;
    border-radius: 4px;
}

.compliance-card::after {
    width: 28px;
    height: 31px;
    right: 29px;
    top: 62px;
    border: 4px solid #ffffff;
    border-radius: 4px;
    transform: rotate(45deg);
}

.service-card:hover img {
    filter: brightness(0.94);
}

.about-section {
    padding: 68px 0 88px;
    background: #ffffff;
}

.about-intro {
    max-width: 760px;
    margin-bottom: 52px;
}

.about-intro h2 {
    margin-bottom: 14px;
}

.about-intro p {
    margin: 0;
    color: var(--body);
    font-size: 20px;
    line-height: 32px;
}

.value-row {
    display: grid;
    grid-template-columns: 260px 1fr 260px 1fr 260px;
    gap: 0;
    align-items: start;
    margin: 0;
    padding: 20px 0 0;
    list-style: none;
}

.value-row li:not(.value-line) {
    text-align: center;
}

.value-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 84px;
    height: 84px;
    margin: 0 auto;
    border-radius: 5px;
}

.value-icon::before {
    content: "";
}

.chart-mark {
    position: relative;
    width: 56px;
    height: 48px;
}

.chart-mark::before,
.chart-mark::after {
    content: "";
    position: absolute;
    border-radius: 4px;
    background: #ffffff;
}

.chart-mark::before {
    left: 4px;
    bottom: 5px;
    width: 14px;
    height: 30px;
    box-shadow: 19px -9px 0 #ffffff, 38px -19px 0 #ffffff;
}

.chart-mark::after {
    left: 12px;
    top: 6px;
    width: 38px;
    height: 4px;
    transform: rotate(-27deg);
    transform-origin: left center;
}

.mission-icon .chart-mark,
.values-icon .chart-mark {
    width: 54px;
    height: 54px;
}

.mission-icon .chart-mark::before {
    left: 8px;
    top: 8px;
    width: 38px;
    height: 38px;
    background: transparent;
    border: 4px solid #ffffff;
    border-radius: 50%;
    box-shadow: none;
}

.mission-icon .chart-mark::after {
    left: 22px;
    top: 22px;
    width: 10px;
    height: 10px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 18px -18px 0 -2px #ffffff;
    transform: none;
}

.values-icon .chart-mark::before {
    left: 13px;
    top: 8px;
    width: 28px;
    height: 34px;
    background: transparent;
    border: 4px solid #ffffff;
    border-radius: 4px 4px 16px 16px;
    box-shadow: none;
}

.values-icon .chart-mark::after {
    left: 21px;
    top: 20px;
    width: 14px;
    height: 8px;
    background: transparent;
    border-left: 4px solid #ffffff;
    border-bottom: 4px solid #ffffff;
    border-radius: 0;
    transform: rotate(-45deg);
}

.value-icon.blue {
    background: var(--blue);
}

.value-icon.red {
    background: var(--red);
}

.value-icon.navy {
    background: var(--blue-deep);
}

.value-row h3 {
    margin: 38px 0 12px;
    color: #000000;
    font-size: 20px;
    font-weight: 600;
    line-height: 42px;
}

.value-row p {
    margin: 0;
    color: var(--body);
    font-size: 14px;
    line-height: 26px;
}

.value-line {
    position: relative;
    height: 96px;
    margin-top: 45px;
    border-top: 3px dashed rgba(112, 112, 112, 0.35);
}

.value-line::before,
.value-line::after {
    content: "";
    position: absolute;
    top: -7px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
}

.value-line::before {
    left: 0;
    background: var(--red);
}

.value-line::after {
    right: 0;
    background: #009d57;
}

.news-section {
    padding: 64px 0 72px;
    background: #ffffff;
}

.section-heading-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 32px;
}

.section-heading-row h2 {
    margin: 0;
}

.section-heading-row > a {
    color: var(--blue);
    font-weight: 700;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.news-card {
    display: grid;
    grid-template-columns: 82px 1fr;
    gap: 22px;
    min-height: 210px;
    padding: 26px;
    background: var(--soft-bg);
    border-radius: 4px;
}

.news-date {
    display: grid;
    place-items: center;
    align-content: center;
    width: 72px;
    height: 88px;
    color: #ffffff;
    background: var(--blue);
    border-radius: 4px;
    text-align: center;
}

.news-date strong {
    display: block;
    font-size: 30px;
    line-height: 1;
}

.news-date span {
    margin-top: 7px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
}

.news-card h3 {
    margin: 0 0 10px;
    color: var(--text);
    font-size: 22px;
    line-height: 31px;
}

.news-card p {
    margin: 0 0 18px;
    color: var(--body);
    line-height: 26px;
}

.news-card a {
    color: var(--blue);
    font-weight: 800;
}

.faq-section {
    padding: 44px 0 64px;
    background: var(--soft-bg);
}

.faq-original-section {
    padding-top: 58px;
    background: #ffffff;
}

.faq-original-header {
    display: grid;
    grid-template-columns: minmax(260px, 420px) minmax(0, 1fr);
    gap: 48px;
    align-items: center;
    margin-bottom: 42px;
}

.faq-original-header img {
    width: 100%;
    height: 300px;
    border-radius: 6px;
    object-fit: cover;
}

.faq-eyebrow {
    margin: 0 0 14px;
    color: var(--blue);
    font-size: 16px;
    font-weight: 700;
}

.faq-original-header h2 {
    margin: 0 0 24px;
    color: var(--text);
    font-size: 40px;
    line-height: 1.1;
}

.faq-search-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 132px;
    gap: 12px;
    max-width: 590px;
}

.faq-search-row input {
    min-height: 50px;
    padding: 0 17px;
    border: 1px solid #d3d7df;
    border-radius: 5px;
    color: var(--text);
    font: inherit;
}

.faq-search-row input:focus {
    border-color: var(--blue);
    outline: none;
}

.faq-search-button {
    min-height: 50px;
    color: #ffffff;
    background: var(--blue);
    border: 0;
    border-radius: 5px;
    font-weight: 700;
}

.faq-filter-panel {
    display: grid;
    gap: 16px;
    margin-bottom: 28px;
}

.faq-filter-panel p {
    margin: 0;
    color: var(--text);
    font-size: 18px;
    font-weight: 700;
}

.faq-filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.faq-filter-chips button {
    min-height: 40px;
    padding: 0 18px;
    color: var(--blue);
    background: #f5f5f5;
    border: 1px solid #ebeef7;
    border-radius: 5px;
    font-weight: 700;
}

.faq-filter-chips button.is-active {
    color: #ffffff;
    background: var(--blue);
    border-color: var(--blue);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 44px;
}

.faq-item {
    border-radius: 6px;
    overflow: hidden;
}

.faq-item button {
    display: flex;
    align-items: center;
    gap: 29px;
    width: 100%;
    min-height: 63px;
    padding: 17px 16px;
    border: 0;
    color: var(--blue);
    background: #ffffff;
    font-size: 18px;
    line-height: 21px;
    text-align: left;
}

.faq-item button::before {
    content: "+";
    display: grid;
    place-items: center;
    width: 31px;
    height: 31px;
    color: #ffffff;
    background: var(--blue);
    border-radius: 5px;
    font-size: 26px;
    line-height: 1;
    flex: 0 0 auto;
}

.faq-item.is-open button::before {
    content: "-";
    background: var(--red);
}

.faq-answer {
    display: none;
    padding: 28px 34px 26px;
    color: var(--text);
    font-size: 16px;
    font-weight: 600;
    line-height: 35px;
}

.faq-item.is-open .faq-answer {
    display: block;
}

.faq-answer p {
    margin: 0;
}

.faq-answer a {
    color: var(--blue);
    font-weight: 800;
}

.site-footer {
    color: var(--text);
    background: var(--gray-bg);
}

.footer-shell {
    display: grid;
    grid-template-columns: 180px 160px 1fr;
    gap: 42px;
    padding: 64px 0 44px;
}

.footer-logo {
    text-align: center;
}

.footer-brand-logo {
    width: 150px;
    height: auto;
    margin: 0 auto 12px;
    object-fit: contain;
}

.footer-logo p {
    margin: 14px 0 0;
    color: var(--text);
    font-size: 14px;
}

.footer-connect {
    display: grid;
    align-content: start;
    justify-items: center;
    gap: 18px;
    padding-top: 8px;
}

.footer-apps {
    display: grid;
    gap: 12px;
}

.footer-apps img {
    width: 143px;
    height: 44px;
    object-fit: contain;
}

.footer-social {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
}

.footer-social a {
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
}

.footer-social img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.footer-certifications {
    display: grid;
    grid-template-columns: repeat(2, 48px);
    gap: 14px;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding-top: 4px;
}

.footer-certifications a {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
}

.footer-certifications img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.footer-menu {
    display: grid;
    grid-template-columns: repeat(5, minmax(130px, 1fr));
    gap: 24px 34px;
    align-content: start;
}

.footer-menu a {
    color: var(--text);
    font-size: 14px;
    line-height: 22px;
}

.footer-group {
    display: grid;
    align-content: start;
    gap: 12px;
}

.footer-menu .footer-heading {
    margin-bottom: 4px;
    color: var(--text);
    font-size: 17px;
    font-weight: 600;
}

.footer-bottom {
    padding-bottom: 24px;
}

.footer-bottom .content-shell {
    display: flex;
    justify-content: space-between;
    gap: 32px;
    padding-top: 24px;
    border-top: 2px solid rgba(1, 28, 53, 0.3);
}

.footer-bottom p,
.footer-bottom a {
    color: var(--text);
    font-size: 14px;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom div div {
    display: flex;
    gap: 26px;
    flex-wrap: wrap;
}

.whatsapp-float {
    position: fixed;
    right: 24px;
    top: 50%;
    bottom: auto;
    z-index: 1200;
    display: grid;
    place-items: center;
    width: 62px;
    height: 62px;
    background: #ffffff;
    border-radius: 19px;
    box-shadow: 0 14px 30px rgba(1, 28, 53, 0.22);
    overflow: hidden;
    transform: translateY(-50%);
    opacity: 1;
    transition: transform 260ms ease, opacity 260ms ease, box-shadow 180ms ease;
}

.whatsapp-float:hover {
    box-shadow: 0 18px 36px rgba(1, 28, 53, 0.28);
    transform: translateY(-50%) translateX(-4px);
}

body.is-loading .whatsapp-float {
    pointer-events: none;
    opacity: 0;
    transform: translateY(-50%) translateX(28px) scale(0.88);
}

.whatsapp-float img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1180px) {
    .header-shell {
        grid-template-columns: 120px 1fr;
        align-items: start;
        width: calc(100% - 48px);
        min-height: 84px;
        padding-top: 12px;
    }

    .header-content {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 8px;
        padding-top: 8px;
    }

    .content-shell {
        width: calc(100% - 48px);
    }

    .top-line {
        position: static;
        display: flex;
        flex: 0 0 auto;
        min-height: 32px;
        padding: 0;
        border: 0;
    }

    .top-line > a,
    .top-line > span,
    .top-line > .top-action {
        display: none;
    }

    .language-switch {
        margin-left: 0;
    }

    .main-nav {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        flex: 0 0 auto;
        gap: 8px;
        padding-top: 0;
    }

    .menu-toggle {
        display: block;
        position: relative;
        top: auto;
        right: auto;
        flex: 0 0 auto;
    }

    .nav-links {
        position: absolute;
        left: 0;
        right: 0;
        top: 84px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        max-height: calc(100vh - 84px);
        max-height: calc(100svh - 84px);
        overflow-y: auto;
        overscroll-behavior: contain;
        padding: 24px;
        background: var(--red);
    }

    .site-header.nav-open .nav-links {
        display: flex;
    }

    .nav-links > li > a {
        min-height: 44px;
        width: 100%;
        justify-content: space-between;
        gap: 14px;
        line-height: 1.35;
    }

    .dropdown-panel,
    .two-col {
        position: static;
        display: none;
        grid-template-columns: 1fr;
        min-width: 0;
        padding: 10px 0 18px 20px;
        color: #ffffff;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
    }

    .sustainability-dropdown .sustainability-menu {
        min-width: 0;
        max-width: none;
    }

    .sustainability-menu-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .dropdown-panel .sustainability-menu-card {
        grid-template-columns: 76px minmax(0, 1fr);
        min-height: 76px;
        color: #ffffff;
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.18);
    }

    .sustainability-menu-card img {
        width: 76px;
        height: 76px;
    }

    .sustainability-menu-card span {
        padding-right: 12px;
    }

    .dropdown.is-open .dropdown-panel {
        display: grid;
    }

    .dropdown-panel a,
    .dropdown-panel h3,
    .dropdown-panel .dropdown-heading {
        color: #ffffff;
    }

    .dropdown-panel .dropdown-heading::after {
        background: #ffffff;
    }

    .search-btn {
        position: relative;
        top: auto;
        right: auto;
        flex: 0 0 auto;
        margin-right: 0;
    }

    .brand {
        width: 118px;
        min-height: 76px;
    }

    .brand-logo {
        width: 118px;
    }
}

@media (max-width: 900px) {
    .hero {
        height: clamp(560px, 88vh, 640px);
        height: clamp(560px, 88svh, 640px);
        min-height: min(580px, 100vh);
        min-height: min(580px, 100svh);
    }

    .service-panel,
    .faq-grid,
    .news-grid,
    .cert-logo-grid,
    .csr-link-grid,
    .csr-article,
    .employee-support-grid,
    .vmv-focus-grid,
    .vmv-values-grid,
    .footer-shell {
        grid-template-columns: 1fr;
    }

    .detail-card .cert-logo,
    html[dir="rtl"] .detail-card .cert-logo {
        float: none;
        width: min(100%, 320px);
        max-width: 100%;
        margin: 0 auto 24px;
    }

    .csr-feature {
        position: static;
    }

    .csr-feature img {
        height: 240px;
    }

    .detail-card .employee-wellbeing-chart {
        float: none;
        width: 100%;
        max-width: none;
        margin: 0 0 24px;
    }

    .vmv-focus-grid article {
        grid-template-columns: 1fr;
    }

    .vmv-focus-grid ul {
        grid-column: auto;
    }

    .footer-connect {
        padding-top: 0;
    }

    .footer-apps {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .value-row {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .value-line {
        display: none;
    }

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

    .footer-bottom .content-shell {
        flex-direction: column;
    }

    .products-section,
    .about-section,
    .news-section,
    .faq-section,
    .detail-section {
        padding-top: 48px;
        padding-bottom: 56px;
    }
}

@media (max-width: 560px) {
    .header-shell,
    .content-shell {
        width: calc(100% - 32px);
    }

    .brand {
        width: 104px;
        min-height: 66px;
    }

    .brand-logo {
        width: 104px;
    }

    .header-content {
        gap: 6px;
        padding-top: 4px;
    }

    .language-switch button {
        min-width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .menu-toggle {
        width: 40px;
        height: 40px;
    }

    .search-btn {
        width: 30px;
        height: 30px;
    }

    .hero-copy {
        left: 16px;
        bottom: 44px;
        width: calc(100% - 32px);
    }

    .hero {
        height: 100vh;
        height: 100svh;
        min-height: 520px;
        max-height: 720px;
    }

    .hero-copy h1 {
        font-size: 26px;
        line-height: 34px;
    }

    .hero-nav {
        gap: 12px;
        flex-wrap: wrap;
        max-width: 100%;
    }

    .products-section {
        padding-top: 46px;
    }

    .products-section h2,
    .about-section h2,
    .news-section h2,
    .faq-section h2 {
        font-size: 27px;
        line-height: 36px;
    }

    .section-heading-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .news-card {
        grid-template-columns: 1fr;
    }

    .service-card img {
        height: auto;
        aspect-ratio: 16 / 10;
    }

    .service-tab {
        --tab-icon-size: 56px;
        --tab-icon-scale: 0.9;
        align-items: center;
        gap: 12px;
        min-height: 84px;
        padding: 10px 12px;
    }

    .service-tab strong {
        font-size: 18px;
    }

    .tools-icon::before {
        left: 25px;
    }

    .tools-icon::after {
        left: 30px;
    }

    .service-card p {
        font-size: 17px;
        line-height: 26px;
    }

    .search-dialog {
        width: calc(100% - 32px);
        margin-top: 86px;
        padding: 34px 22px 24px;
    }
}

@media (max-width: 420px) {
    .header-shell,
    .content-shell {
        width: calc(100% - 24px);
    }

    .header-shell {
        grid-template-columns: 96px 1fr;
        min-height: 76px;
        padding-top: 10px;
    }

    .brand {
        width: 96px;
        min-height: 58px;
    }

    .brand-logo {
        width: 96px;
    }

    .header-content {
        gap: 5px;
    }

    .language-switch button {
        min-width: 26px;
        height: 26px;
    }

    .menu-toggle {
        width: 38px;
        height: 38px;
    }

    .search-btn {
        width: 28px;
        height: 28px;
    }

    .search-btn::before {
        left: 5px;
        top: 4px;
    }

    .search-btn::after {
        left: 19px;
        top: 19px;
        width: 10px;
    }

    .nav-links {
        top: 76px;
        max-height: calc(100vh - 76px);
        max-height: calc(100svh - 76px);
        padding: 18px 12px 24px;
    }

    .hero-copy {
        left: 12px;
        width: calc(100% - 24px);
    }

    .primary-button {
        width: 100%;
    }

    .service-tabs {
        gap: 10px;
    }

    .service-tab {
        --tab-icon-size: 50px;
        --tab-icon-scale: 0.78;
        min-height: 78px;
        gap: 9px;
        padding: 9px;
    }

    .service-tab strong {
        font-size: 16px;
        line-height: 1.2;
    }

    .fuel-icon::before {
        left: 15px;
    }

    .fuel-icon::after {
        left: 21px;
    }

    .tools-icon::before {
        left: 21px;
    }

    .tools-icon::after {
        left: 25px;
        top: 12px;
    }

    .news-card,
    .contact-form,
    .info-panel,
    .page-link-card,
    .media-item {
        padding: 22px;
    }
}

.inner-hero {
    position: relative;
    min-height: 544px;
    display: flex;
    align-items: end;
    padding: 170px 40px 61px;
    color: #ffffff;
    background-position: center;
    background-size: cover;
}

.inner-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.04));
}

.inner-hero .content-shell {
    position: relative;
    z-index: 1;
}

.inner-hero h1 {
    margin: 0 0 18px;
    color: #ffffff;
    font-size: 26px;
    font-weight: 600;
    line-height: 36px;
    text-transform: uppercase;
}

.inner-hero p {
    max-width: 760px;
    margin: 0;
    color: #ffffff;
    font-size: 16px;
}

.breadcrumb-strip {
    background: #ffffff;
}

.breadcrumb-strip .content-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 20px;
    padding-bottom: 20px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 13px;
    line-height: 24px;
}

.breadcrumb li:not(:last-child)::after {
    content: ">";
    margin-left: 10px;
    color: #3f5aa6;
}

.breadcrumb a {
    color: #000000;
}

.breadcrumb li:last-child a {
    color: #3f5aa6;
    pointer-events: none;
}

.share-row {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #000000;
    font-size: 16px;
    white-space: nowrap;
}

.share-row a {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
}

.share-row img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.detail-section {
    background: #f5f5f5;
    padding: 72px 0 56px;
}

.detail-card {
    min-height: 339px;
    color: var(--text);
    font-size: 16px;
    line-height: 1.75;
}

.detail-card img {
    float: right;
    width: 422px;
    max-width: 42%;
    max-height: 320px;
    margin: 0 0 17px 47px;
    border-radius: 5px;
}

.detail-card h2 {
    margin: 0 0 16px;
    color: rgb(8, 29, 132);
    font-size: 20px;
    font-weight: 700;
}

.detail-card p {
    margin: 0 0 20px;
}

.detail-card ul {
    margin: 0 0 22px 20px;
    padding: 0;
}

.detail-card li {
    margin-bottom: 10px;
}

.csr-overview {
    display: grid;
    gap: 18px;
}

.csr-lead {
    color: var(--text);
    font-size: 20px;
    line-height: 1.65;
}

.csr-link-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 18px;
}

.csr-link-card {
    display: grid;
    align-content: start;
    min-height: 100%;
    overflow: hidden;
    color: var(--body);
    background: #ffffff;
    border: 1px solid rgba(1, 28, 53, 0.08);
    border-radius: 6px;
    box-shadow: 0 16px 32px rgba(1, 28, 53, 0.06);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.csr-link-card:hover {
    color: var(--body);
    border-color: rgba(8, 29, 132, 0.25);
    box-shadow: 0 22px 42px rgba(1, 28, 53, 0.12);
    transform: translateY(-4px);
}

.csr-link-card img {
    float: none;
    width: 100%;
    max-width: none;
    height: 176px;
    max-height: none;
    margin: 0;
    border-radius: 0;
    object-fit: cover;
}

.csr-link-card-body {
    display: grid;
    gap: 12px;
    padding: 24px 22px 26px;
}

.csr-link-card h2 {
    margin: 0;
    font-size: 19px;
    line-height: 1.35;
}

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

.csr-read-more {
    display: inline-flex;
    width: fit-content;
    margin-top: 6px;
    color: var(--red);
    font-size: 13px;
    font-weight: 800;
}

.csr-article {
    display: grid;
    grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
    gap: 44px;
    align-items: start;
}

.csr-feature {
    position: sticky;
    top: 124px;
    margin: 0;
    overflow: hidden;
    background: #ffffff;
    border-radius: 6px;
    box-shadow: 0 18px 38px rgba(1, 28, 53, 0.09);
}

.csr-feature img {
    float: none;
    display: block;
    width: 100%;
    max-width: none;
    height: 310px;
    max-height: none;
    margin: 0;
    border-radius: 0;
    object-fit: cover;
}

.csr-feature figcaption {
    padding: 16px 20px;
    color: var(--muted);
    font-size: 13px;
}

.csr-copy {
    min-width: 0;
}

.csr-content-block {
    margin-bottom: 26px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(1, 28, 53, 0.1);
}

.csr-content-block:last-of-type {
    border-bottom: 0;
}

.sustainability-original-page {
    display: grid;
    gap: 28px;
    color: var(--text);
}

.sustainability-original-page section {
    overflow: hidden;
}

.sustainability-original-page h2 {
    margin: 0 0 15px;
    color: rgb(8, 29, 132);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.35;
}

.sustainability-original-page h3 {
    margin: 0 0 10px;
    color: rgb(8, 29, 132);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.45;
}

.sustainability-original-page p {
    margin: 0 0 18px;
}

.sustainability-overview img {
    float: left;
    width: 420px;
    max-width: 42%;
    max-height: none;
    margin: 0 36px 18px 0;
    border-radius: 20px;
}

.sustainability-highlight-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 24px;
}

.sustainability-highlight-card {
    display: grid;
    align-content: start;
    min-height: 100%;
    overflow: hidden;
    color: var(--body);
    background: #ffffff;
    border: 1px solid rgba(1, 28, 53, 0.08);
    border-radius: 5px;
    box-shadow: 0 14px 30px rgba(1, 28, 53, 0.06);
}

.sustainability-highlight-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    transition: transform 220ms ease;
}

.sustainability-highlight-card div {
    display: grid;
    align-content: start;
    min-height: 100%;
    padding: 24px;
}

.sustainability-highlight-card p {
    margin-bottom: 18px;
    color: var(--body);
}

.sustainability-highlight-card span {
    align-self: end;
    color: var(--blue);
    font-size: 13px;
    font-weight: 800;
}

.sustainability-highlight-card:hover h3,
.sustainability-highlight-card:hover span,
.sustainability-report-list a:hover,
.sustainability-2024 a:hover {
    color: var(--red);
}

.sustainability-highlight-card:hover img {
    transform: scale(1.04);
}

.sustainability-report-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px 24px;
}

.sustainability-report-list a,
.sustainability-2024 a {
    color: var(--blue);
    font-weight: 700;
}

.sustainability-2024 {
    padding-top: 4px;
}

.sustainability-2024 article {
    margin-top: 20px;
}

.management-original-page {
    min-height: 520px;
    overflow: hidden;
    color: var(--text);
}

.management-original-page h2 {
    margin: 0 0 14px;
    color: rgb(8, 29, 132);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.45;
}

.management-original-page p {
    margin: 0 0 20px;
}

.management-image-stack {
    float: right;
    width: 400px;
    max-width: 44%;
    margin: 0 0 10px 20px;
}

html[dir="rtl"] .management-image-stack {
    float: left;
    margin: 0 20px 10px 0;
}

.management-image-stack img {
    float: none;
    display: block;
    width: 100%;
    max-width: none;
    max-height: none;
    height: auto;
    margin: 0 0 10px;
    background: #ffffff;
    border-radius: 10px;
    object-fit: contain;
}

.technical-original-page {
    position: relative;
    min-height: 360px;
    overflow: hidden;
}

.technical-original-page img {
    float: right;
    width: 400px;
    max-width: 44%;
    max-height: none;
    height: auto;
    margin: 0 0 10px 20px;
    border-radius: 10px;
}

html[dir="rtl"] .technical-original-page img {
    float: left;
    margin: 0 20px 10px 0;
}

.detail-card blockquote {
    margin: 28px 0 0;
    padding: 24px 28px;
    color: var(--text);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    background: #ffffff;
    border-left: 4px solid var(--red);
    border-radius: 5px;
}

.employee-original-page {
    color: var(--text);
}

.employee-original-top {
    min-height: 430px;
    overflow: hidden;
}

.detail-card .employee-wellbeing-chart {
    float: right;
    width: 400px;
    max-width: 44%;
    max-height: none;
    margin: 0 0 10px 20px;
    background: #ffffff;
    border-radius: 10px;
    object-fit: contain;
}

.employee-original-top p {
    margin-bottom: 22px;
}

.employee-quote {
    color: var(--text);
    font-size: 19px;
    font-weight: 700;
}

.employee-support-grid {
    clear: both;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 42px;
}

.employee-support-grid article {
    min-height: 100%;
    padding: 26px;
    background: #ffffff;
    border: 1px solid rgba(1, 28, 53, 0.08);
    border-radius: 6px;
    box-shadow: 0 14px 30px rgba(1, 28, 53, 0.06);
}

.employee-support-grid h2 {
    margin-bottom: 12px;
}

.employee-support-grid p {
    margin-bottom: 0;
    color: var(--muted);
}

.detail-card table {
    width: 100%;
    margin: 24px 0;
    border-collapse: collapse;
    background: #ffffff;
}

.detail-card td,
.detail-card th {
    border: 1px solid var(--text);
    padding: 14px 18px;
    text-align: left;
}

.detail-card tr:first-child {
    color: #ffffff;
    background: var(--text);
}

.detail-card .cert-logo {
    object-fit: contain;
    background: transparent;
}

.detail-card .cert-logo-iata {
    width: 240px;
    max-width: 28%;
    max-height: 240px;
}

.detail-card .cert-logo-jig {
    width: 360px;
    max-width: 38%;
    max-height: 360px;
}

.cert-logo-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
}

.cert-logo-card {
    display: grid;
    align-content: start;
    justify-items: center;
    min-height: 100%;
    padding: 32px;
    text-align: center;
    background: #ffffff;
    border: 1px solid rgba(1, 28, 53, 0.1);
    border-radius: 6px;
}

.cert-logo-card img {
    float: none;
    width: 220px;
    max-width: 100%;
    height: 220px;
    max-height: none;
    margin: 0 0 24px;
    object-fit: contain;
}

.cert-logo-card h2 {
    margin-bottom: 10px;
}

.cert-logo-card p {
    margin-bottom: 0;
}

.cert-live-page {
    color: var(--text);
}

.cert-live-page::after {
    content: "";
    display: block;
    clear: both;
}

.cert-live-page .cert-intro,
.cert-live-page .cert-lead {
    margin: 0 0 20px;
    color: rgb(8, 29, 132);
    font-size: 19px;
    font-weight: 700;
    line-height: 1.55;
}

.cert-live-page .cert-lead {
    max-width: 920px;
    color: var(--body);
    font-size: 20px;
    font-weight: 500;
}

.cert-live-page h2 {
    margin: 24px 0 8px;
    color: rgb(8, 29, 132);
    font-size: 18px;
    font-weight: 800;
    line-height: 1.45;
}

.cert-live-page p {
    margin: 0 0 18px;
}

.cert-float-stack,
.cert-float-image {
    float: right;
    width: min(400px, 42%);
    margin: 0 0 18px 28px;
}

.cert-float-stack {
    display: grid;
    gap: 10px;
}

.cert-float-stack img,
.cert-float-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    background: #ffffff;
    border-radius: 10px;
}

.cert-inline-image-grid {
    clear: both;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 400px));
    gap: 20px;
    margin: 22px 0 20px;
}

.cert-inline-image-grid img {
    float: none;
    width: 100%;
    max-width: none;
    height: auto;
    margin: 0;
    border-radius: 10px;
    object-fit: contain;
}

.cert-menu-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cert-menu-card {
    display: grid;
    gap: 14px;
}

.cert-menu-card img {
    float: none;
    width: 100%;
    max-width: none;
    height: 220px;
    max-height: none;
    margin: 0;
    object-fit: contain;
}

.cert-menu-card span {
    align-self: end;
    width: fit-content;
    color: var(--blue);
    font-size: 13px;
    font-weight: 800;
}

.ims-split {
    clear: both;
    display: grid;
    grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1fr);
    gap: 42px;
    align-items: center;
    margin: 34px 0 42px;
    background: #ffffff;
}

.ims-image-frame {
    min-height: 100%;
    padding: 0;
    background: #f5f5f5;
    border-radius: 20px;
    box-shadow: 27px 16px 0 #ececec;
    overflow: hidden;
}

.ims-image-frame img,
.ims-history img {
    float: none;
    width: 100%;
    max-width: none;
    max-height: none;
    margin: 0;
    object-fit: cover;
}

.ims-history {
    clear: both;
    margin: 34px 0;
}

.ims-history h2,
.ims-history p {
    padding-left: 20px;
}

.ims-history img {
    width: min(90%, 980px);
    margin: 22px auto 0;
    object-fit: contain;
}

.ims-policy-grid {
    clear: both;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    padding-bottom: 40px;
}

.ims-policy-grid > a {
    display: block;
    min-height: 100%;
}

.ims-policy-grid article {
    display: grid;
    align-content: start;
    min-height: 100%;
    overflow: hidden;
    background: #ffffff;
    border-radius: 3px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.ims-policy-grid a:hover article {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.ims-policy-grid img {
    float: none;
    width: 100%;
    max-width: none;
    height: 586px;
    max-height: none;
    margin: 0;
    object-fit: cover;
    border-radius: 3px 3px 0 0;
}

.ims-policy-grid h2 {
    margin: 0;
    padding: 20px;
    color: #000000;
    font-size: 18px;
    text-align: center;
}

.ims-certificates {
    clear: both;
    padding: 8px 0 36px;
}

.ims-certificates > h2 {
    margin-bottom: 22px;
    font-size: 24px;
}

.ims-certificate-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.ims-certificate-grid a {
    display: grid;
    gap: 12px;
    align-content: start;
    min-height: 100%;
    padding: 16px;
    background: #ffffff;
    border: 1px solid rgba(1, 28, 53, 0.1);
    border-radius: 5px;
    box-shadow: 0 10px 24px rgba(1, 28, 53, 0.08);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.ims-certificate-grid a:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 34px rgba(1, 28, 53, 0.13);
}

.ims-certificate-grid img {
    float: none;
    width: 100%;
    max-width: none;
    height: 260px;
    max-height: none;
    margin: 0;
    object-fit: contain;
    background: #f7f7f8;
    border-radius: 4px;
}

.ims-certificate-grid span {
    color: #000000;
    font-weight: 800;
    text-align: center;
}

.vmv-page {
    display: grid;
    gap: 36px;
}

.vmv-intro {
    max-width: 980px;
}

.vmv-intro h2,
.vmv-values > h2 {
    color: var(--blue);
    font-size: 24px;
}

.vmv-intro p {
    color: var(--body);
    font-size: 18px;
    line-height: 1.8;
}

.vmv-focus-grid,
.vmv-values-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.vmv-focus-grid article,
.vmv-values-grid article {
    min-height: 100%;
    padding: 26px;
    background: #ffffff;
    border: 1px solid rgba(1, 28, 53, 0.1);
    border-radius: 6px;
    box-shadow: 0 14px 34px rgba(1, 28, 53, 0.06);
}

.vmv-focus-grid article {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    column-gap: 18px;
    align-items: start;
}

.vmv-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    background: var(--red);
    border-radius: 5px;
}

.vmv-icon .chart-mark {
    width: 38px;
    height: 34px;
    transform: scale(0.7);
}

.vmv-focus-grid h2 {
    margin-top: 0;
}

.vmv-focus-grid ul {
    grid-column: 2;
    margin-bottom: 0;
}

.vmv-values {
    padding-top: 8px;
}

.vmv-lead {
    color: var(--body);
    font-size: 18px;
    font-weight: 600;
}

.vmv-values-grid h2 {
    margin-top: 0;
    color: var(--blue-deep);
}

.vmv-quote {
    margin-bottom: 0;
    color: var(--red);
    font-weight: 700;
}

.listing-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
    margin-top: 22px;
}

.services-listing-lead {
    max-width: 912px;
    margin: 0 0 30px;
    color: var(--text);
    font-size: 24px;
    font-weight: 600;
    line-height: 1.5;
}

.services-listing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 46px;
    max-width: 912px;
    margin-top: 40px;
}

.listing-card {
    display: block;
    background: #ffffff;
    border-radius: 6px;
    overflow: hidden;
}

.listing-card img {
    width: 100%;
    height: 300px;
}

.listing-card div {
    padding: 24px;
}

.services-listing-grid .listing-card {
    display: flex;
    flex-direction: column;
    border-radius: 12px 12px 5px 5px;
}

.services-listing-grid .listing-card img {
    height: 133px;
    border-radius: 12px 12px 0 0;
}

.services-listing-grid .listing-card div {
    flex: 1;
    border: 1px solid rgba(1, 28, 53, 0.08);
    border-top: 0;
    border-radius: 0 0 5px 5px;
}

.listing-card h2 {
    margin: 0 0 10px;
    color: var(--text);
    font-size: 22px;
}

.listing-card p {
    margin: 0;
    color: var(--body);
}

.listing-card span {
    display: inline-flex;
    margin-top: 18px;
    color: var(--blue);
    font-size: 14px;
    font-weight: 800;
}

.listing-card:hover h2,
.listing-card:hover span {
    color: var(--red);
}

.about-original-page {
    display: grid;
    gap: 30px;
}

.about-original-block {
    display: grid;
    grid-template-columns: minmax(260px, 422px) minmax(0, 1fr);
    gap: 34px;
    align-items: center;
}

.about-original-block img {
    float: none;
    width: 100%;
    max-width: none;
    height: 260px;
    max-height: none;
    margin: 0;
    border-radius: 5px;
    object-position: center;
}

.about-original-page h2,
.about-vmv-container h2 {
    margin: 0 0 14px;
}

.about-original-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 126px;
    min-height: 40px;
    margin: 0 0 26px;
    padding: 0 22px;
    color: #ffffff;
    background: var(--blue);
    border-radius: 5px;
    font-size: 14px;
    font-weight: 700;
}

.about-original-button:hover {
    background: var(--blue-deep);
}

.about-vmv-container {
    display: grid;
    gap: 24px;
    margin-top: 10px;
    padding: 30px;
    background: #ffffff;
    border-radius: 5px;
    box-shadow: 0 14px 34px rgba(1, 28, 53, 0.07);
}

.about-vmv-container > img {
    float: none;
    width: 100%;
    max-width: none;
    height: 280px;
    max-height: none;
    margin: 0;
    border-radius: 5px;
    object-position: center;
}

.about-vmv-items {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.about-vmv-items article {
    min-height: 100%;
    padding: 24px;
    background: var(--soft-bg);
    border-radius: 5px;
}

.about-vmv-items p {
    margin-bottom: 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.contact-box {
    padding: 26px;
    background: #ffffff;
    border-radius: 6px;
}

.contact-box h2 {
    margin: 0 0 10px;
    color: var(--blue);
    font-size: 20px;
}

.contact-box p {
    margin: 0;
    color: var(--body);
}

.contact-box p + p {
    margin-top: 12px;
}

.contact-box a {
    color: var(--blue);
    font-weight: 700;
}

.contact-box-wide {
    grid-column: span 2;
}

.contact-form {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 22px;
    padding: 30px;
    background: #ffffff;
    border-radius: 6px;
}

.contact-form h2 {
    grid-column: 1 / -1;
    margin: 0 0 4px;
    color: var(--blue);
    font-size: 22px;
}

.contact-form label {
    display: grid;
    gap: 8px;
    color: var(--body);
    font-size: 14px;
    font-weight: 700;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid #d7dce2;
    border-radius: 4px;
    padding: 13px 14px;
    color: var(--text);
    background: #ffffff;
    font: inherit;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--blue);
    outline: none;
}

.contact-form .form-wide {
    grid-column: 1 / -1;
}

.contact-form button {
    justify-self: start;
    min-width: 142px;
    min-height: 44px;
    border: 0;
    color: #ffffff;
    background: var(--blue);
    border-radius: 5px;
    font-weight: 700;
}

.contact-original-page {
    background: #ffffff;
}

.contact-original-summary {
    padding-top: 58px;
    text-align: center;
}

.contact-original-summary h2 {
    margin: 0 0 16px;
    color: var(--blue);
    font-size: 30px;
    font-weight: 700;
}

.contact-original-summary p {
    max-width: 820px;
    margin: 0 auto;
    color: var(--text);
    font-size: 18px;
    line-height: 30px;
}

.contact-original-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    padding-top: 52px;
    padding-bottom: 64px;
}

.contact-original-intro {
    max-width: 450px;
    margin: 0 auto;
}

.contact-eyebrow {
    margin: 0;
    color: #4a4a4a;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
}

.contact-original-intro h2 {
    margin: 16px 0;
    color: var(--blue);
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
}

.contact-original-intro p:not(.contact-eyebrow) {
    margin: 0;
    color: var(--text);
    font-size: 18px;
    line-height: 27px;
}

.contact-original-form {
    display: grid;
    gap: 16px;
    width: 100%;
    padding: 42px 32px;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 22px 55px rgba(1, 28, 53, 0.18);
}

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

.contact-original-form input,
.contact-original-form select,
.contact-original-form textarea {
    width: 100%;
    border: 1px solid #cccccc;
    border-radius: 5px;
    padding: 18px 19px;
    color: #000000;
    background: #ffffff;
    font: inherit;
}

.contact-original-form textarea {
    resize: vertical;
}

.contact-original-form input:focus,
.contact-original-form select:focus,
.contact-original-form textarea:focus {
    border-color: var(--blue);
    outline: none;
}

.contact-original-form select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, #77767a 50%), linear-gradient(135deg, #77767a 50%, transparent 50%);
    background-position: calc(100% - 21px) 50%, calc(100% - 15px) 50%;
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

.contact-upload {
    display: grid;
    gap: 8px;
    padding: 16px 19px;
    color: #77767a;
    border: 1px dashed #bfc6d2;
    border-radius: 5px;
}

.contact-upload span {
    color: var(--text);
    font-weight: 700;
}

.contact-upload input {
    padding: 0;
    border: 0;
}

.contact-upload small {
    color: #77767a;
    font-size: 12px;
    line-height: 18px;
}

.contact-original-form button {
    justify-self: start;
    min-width: 134px;
    min-height: 48px;
    border: 0;
    color: #ffffff;
    background: var(--blue);
    border-radius: 5px;
    font-weight: 700;
}

.contact-original-form button:disabled {
    cursor: not-allowed;
    opacity: 0.65;
}

.contact-form-status {
    min-height: 24px;
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
}

.contact-form-status.is-success {
    color: #176b3a;
}

.contact-form-status.is-error {
    color: var(--red);
}

.contact-office-list {
    display: grid;
    gap: 0;
}

.contact-office-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 390px;
    background: #ffffff;
}

.contact-office-row.is-reversed .contact-map {
    order: 2;
}

.contact-map {
    display: block;
    min-height: 390px;
    background-image: url("img/qjet-live-contact-map.png");
    background-position: center;
    background-size: cover;
    border-radius: 0;
}

.contact-office-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 52px clamp(32px, 6vw, 96px);
}

.contact-office-copy h2 {
    margin: 0;
    color: var(--text);
    font-size: 24px;
    font-weight: 700;
}

.contact-office-copy ul {
    display: grid;
    gap: 14px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.contact-office-copy a,
.contact-office-copy span {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    color: #2b2b2b;
    line-height: 1.45;
}

.contact-office-copy a {
    width: fit-content;
    max-width: 100%;
    text-decoration: none;
    transition: color 180ms ease;
}

.contact-office-copy a:hover {
    color: var(--blue);
}

.contact-symbol {
    display: inline-grid;
    place-items: center;
    width: 22px;
    min-width: 22px;
    height: 22px;
    color: var(--blue);
}

.contact-icon-svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.info-panel {
    padding: 30px;
    background: #ffffff;
    border: 1px solid rgba(1, 28, 53, 0.1);
    border-radius: 6px;
    box-shadow: 0 14px 34px rgba(1, 28, 53, 0.06);
}

.info-panel + .page-card-grid {
    margin-top: 24px;
}

.page-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    clear: both;
}

.four-card-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.page-link-card {
    display: block;
    min-height: 100%;
    padding: 28px;
    color: var(--text);
    background: #ffffff;
    border: 1px solid rgba(1, 28, 53, 0.1);
    border-radius: 6px;
    box-shadow: 0 14px 34px rgba(1, 28, 53, 0.06);
}

.page-link-card h2 {
    margin: 0 0 12px;
}

.page-link-card p {
    margin: 0;
    color: var(--body);
}

.page-link-card:hover h2,
.media-item a:hover {
    color: var(--red);
}

.media-list {
    display: grid;
    gap: 24px;
}

.media-item {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 22px;
    padding: 28px;
    background: #ffffff;
    border-radius: 6px;
}

.media-item h2 {
    margin-top: 0;
}

.media-item a {
    color: var(--blue);
    font-weight: 800;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.gallery-grid img {
    float: none;
    width: 100%;
    max-width: none;
    height: 320px;
    max-height: none;
    margin: 0;
    object-fit: cover;
    border-radius: 6px;
}

.media-live-page {
    display: grid;
    gap: 28px;
}

.media-lead {
    margin: 0;
    color: var(--text);
    font-size: 20px;
    font-weight: 600;
}

.media-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-bottom: 8px;
}

.media-tabs a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    min-height: 44px;
    padding: 0 18px;
    color: var(--text);
    background: #ffffff;
    border: 1px solid #d8dce2;
    border-radius: 5px;
    font-weight: 700;
}

.media-tabs a.is-active,
.media-tabs a:hover {
    color: #ffffff;
    background: var(--blue);
    border-color: var(--blue);
}

.media-news-intro {
    max-width: 760px;
}

.media-news-intro h2 {
    margin: 0 0 10px;
    color: var(--text);
    font-size: 28px;
    line-height: 1.3;
}

.media-news-intro p {
    margin: 0;
    color: var(--body);
}

.media-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.media-news-card,
.media-event-card {
    display: grid;
    min-height: 100%;
    overflow: hidden;
    color: var(--text);
    background: #ffffff;
    border: 1px solid rgba(1, 28, 53, 0.1);
    border-radius: 6px;
    box-shadow: 0 14px 34px rgba(1, 28, 53, 0.08);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.media-news-card:hover,
.media-event-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 42px rgba(1, 28, 53, 0.14);
}

.media-news-card img,
.media-event-card img {
    float: none;
    width: 100%;
    max-width: none;
    height: 260px;
    max-height: none;
    margin: 0;
    object-fit: cover;
    border-radius: 0;
}

.media-news-card > div,
.media-event-card > div {
    display: grid;
    gap: 12px;
    align-content: start;
    padding: 24px;
}

.media-news-card time {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 10px;
    align-items: center;
    color: var(--blue);
}

.media-news-card time strong {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    color: #ffffff;
    background: var(--blue);
    border-radius: 5px;
    font-size: 24px;
}

.media-news-card time span,
.media-event-card time {
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.media-news-card h2,
.media-event-card h2 {
    margin: 0;
    color: var(--text);
    font-size: 21px;
    line-height: 1.35;
}

.media-news-card p,
.media-event-card p {
    margin: 0;
    color: var(--body);
    line-height: 1.65;
}

.media-read-more,
.media-chip {
    width: fit-content;
    color: var(--blue);
    font-size: 13px;
    font-weight: 800;
}

.media-chip {
    padding: 6px 10px;
    color: #ffffff;
    background: var(--blue);
    border-radius: 999px;
}

.media-gallery-toolbar {
    display: flex;
    justify-content: flex-end;
}

.media-gallery-toolbar label {
    display: grid;
    gap: 7px;
    width: min(100%, 360px);
    color: var(--body);
    font-size: 13px;
    font-weight: 700;
}

.media-gallery-toolbar input {
    width: 100%;
    min-height: 44px;
    border: 1px solid #d8dce2;
    border-radius: 5px;
    padding: 0 14px;
    font: inherit;
}

.media-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.media-gallery-grid a {
    position: relative;
    display: block;
    overflow: hidden;
    min-height: 240px;
    color: #ffffff;
    background: #000000;
    border-radius: 6px;
}

.media-gallery-grid img {
    float: none;
    width: 100%;
    max-width: none;
    height: 280px;
    max-height: none;
    margin: 0;
    object-fit: cover;
    opacity: 0.92;
    transition: transform 220ms ease, opacity 220ms ease;
}

.media-gallery-grid a:hover img {
    opacity: 0.72;
    transform: scale(1.04);
}

.media-gallery-grid span {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 14px;
    z-index: 1;
    font-weight: 800;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}

.media-detail {
    color: var(--text);
}

.media-detail > img {
    float: right;
    width: 420px;
    max-width: 42%;
    max-height: 320px;
    margin: 0 0 22px 34px;
    object-fit: cover;
    border-radius: 8px;
}

.media-detail time {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--blue);
    font-weight: 800;
}

.media-detail p {
    margin: 0 0 18px;
    color: var(--body);
    line-height: 1.75;
}

.media-event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-bottom: 18px;
}

.media-event-meta span,
.media-event-meta a {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    color: #ffffff;
    background: var(--blue);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
}

@media (max-width: 900px) {
    .inner-hero {
        min-height: 420px;
        padding: 120px 24px 44px;
    }

    .breadcrumb-strip .content-shell {
        align-items: flex-start;
        flex-direction: column;
    }

    .detail-card img {
        float: none;
        width: 100%;
        max-width: none;
        margin: 0 0 24px;
    }

    .sustainability-overview img {
        float: none;
        width: 100%;
        max-width: none;
        margin: 0 0 24px;
    }

    .sustainability-highlight-grid,
    .sustainability-report-list {
        grid-template-columns: 1fr;
    }

    .management-image-stack,
    html[dir="rtl"] .management-image-stack {
        float: none;
        width: 100%;
        max-width: none;
        margin: 0 0 24px;
    }

    .technical-original-page img,
    html[dir="rtl"] .technical-original-page img {
        float: none;
        width: 100%;
        max-width: none;
        margin: 0 0 24px;
    }

    .listing-grid,
    .contact-grid,
    .page-card-grid,
    .four-card-grid,
    .about-original-block,
    .about-vmv-items,
    .csr-link-grid,
    .csr-article,
    .employee-support-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .csr-feature {
        position: static;
    }

    .csr-feature img {
        height: 240px;
    }

    .detail-card .employee-wellbeing-chart {
        float: none;
        width: 100%;
        max-width: none;
        margin: 0 0 24px;
    }

    .contact-box-wide {
        grid-column: auto;
    }

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

    .contact-original-top,
    .faq-original-header,
    .contact-office-row,
    .contact-form-row {
        grid-template-columns: 1fr;
    }

    .faq-search-row {
        grid-template-columns: 1fr;
    }

    .contact-office-row.is-reversed .contact-map {
        order: 0;
    }

    .contact-map {
        min-height: 300px;
        background-image: url("img/qjet-live-contact-map-mobile.png");
    }

    .contact-original-form {
        border-radius: 0;
        box-shadow: none;
    }

    .contact-form .form-wide {
        grid-column: auto;
    }

    .media-item {
        grid-template-columns: 1fr;
    }

    .media-card-grid,
    .media-gallery-grid {
        grid-template-columns: 1fr;
    }

    .media-detail > img {
        float: none;
        width: 100%;
        max-width: none;
        max-height: none;
        margin: 0 0 24px;
    }

    .cert-menu-grid,
    .cert-inline-image-grid,
    .ims-split,
    .ims-policy-grid,
    .ims-certificate-grid {
        grid-template-columns: 1fr;
    }

    .cert-float-stack,
    .cert-float-image,
    html[dir="rtl"] .cert-float-stack,
    html[dir="rtl"] .cert-float-image {
        float: none;
        width: 100%;
        margin: 0 0 24px;
    }

    .ims-image-frame {
        box-shadow: 16px 12px 0 #ececec;
    }

    .ims-policy-grid img {
        height: auto;
        aspect-ratio: 210 / 297;
    }
}

@media (max-width: 560px) {
    .inner-hero {
        min-height: 420px;
        padding: 110px 0 40px;
    }

    .detail-section {
        padding: 44px 0 48px;
    }

    .breadcrumb-strip .content-shell,
    .footer-bottom div div,
    .share-row {
        gap: 14px;
    }

    .share-row {
        flex-wrap: wrap;
        white-space: normal;
    }

    .whatsapp-float {
        right: 16px;
        width: 54px;
        height: 54px;
        border-radius: 16px;
    }

    .detail-card table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .listing-card img,
    .about-original-block img,
    .about-vmv-container > img,
    .gallery-grid img {
        height: auto;
        aspect-ratio: 16 / 10;
    }
}

@media (max-width: 420px) {
    .contact-form,
    .info-panel,
    .page-link-card,
    .media-item,
    .about-vmv-container,
    .about-vmv-items article,
    .contact-box,
    .sustainability-highlight-card div,
    .cert-logo-card,
    .vmv-focus-grid article,
    .vmv-values-grid article {
        padding: 22px;
    }

    .footer-shell {
        gap: 28px;
    }
}
