<!-- start Simple Custom CSS and JS -->
<style type="text/css">
:root {
    --container: 1200px;
    --page-pad: 16px;
    --blue: #109edb;
    --body: #0ea7d8;
    --ink: #fff;
    --ink-dark: #111;
    --ink-mid: #333;
    --accent: #f7a22b;
    --accent-2: #10a7df;
    --line: #10a7df;
}

html,
body {
    overflow-x: clip;
}

.accent-outline,
.kpi-outline {
    --s: 1px;
    --c: #fff;
    text-shadow:
        var(--s) 0 0 var(--c), calc(-1*var(--s)) 0 0 var(--c),
        0 var(--s) 0 var(--c), 0 calc(-1*var(--s)) 0 var(--c),
        var(--s) var(--s) 0 var(--c), calc(-1*var(--s)) calc(-1*var(--s)) 0 var(--c),
        var(--s) calc(-1*var(--s)) 0 var(--c), calc(-1*var(--s)) var(--s) 0 var(--c);
}

.accent-outline {
    color: var(--blue);
}

.btn-ghost,
.btn-ghost.btn-outline,
.btn-outline-orange,
.cta-irm .btn-cta,
.btn-accent {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    text-decoration: none;
    border-radius: 14px;
}

.btn-ghost {
    padding: 14px 22px;
}

.btn-outline-orange,
.btn-ghost.btn-outline,
.cta-irm .btn-cta {
    color: #fff;
    border: 2px solid rgba(255, 255, 255, .55);
    padding: 5px;
    --s: 1px;
    --c: var(--accent);
    text-shadow:
        var(--s) 0 0 var(--c), calc(-1*var(--s)) 0 0 var(--c),
        0 var(--s) 0 var(--c), 0 calc(-1*var(--s)) 0 var(--c),
        var(--s) var(--s) 0 var(--c), calc(-1*var(--s)) calc(-1*var(--s)) 0 var(--c),
        var(--s) calc(-1*var(--s)) 0 var(--c), calc(-1*var(--s)) var(--s) 0 var(--c);
}

.cta-irm .btn-cta:hover {
    background: rgba(255, 255, 255, .08);
    transform: translateY(-1px);
}

.btn-accent {
    height: 48px;
    padding: 0 20px;
    border: none;
    background: var(--accent);
    color: #fff;
    font-weight: 800;
    cursor: pointer;
    white-space: nowrap;
}

.btn-accent:hover {
    filter: brightness(.95);
}

.info-strip {
    --ink: #000;
    --accent: var(--accent-2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 16px;
    border: none;
    border-radius: 0;
    font-family: inherit;
}

.info-items {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 240px;
}

.icon-img {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    object-fit: contain;
    display: block;
}

.info-copy .title {
    margin: 0 0 2px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.1;
}

.info-copy .desc {
    font-size: 14px;
    color: var(--ink-mid);
}

.social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social .social-img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    display: block;
    transition: opacity .2s ease;
}

.social a:hover .social-img {
    opacity: .7;
}

@media (max-width:900px) {
    .info-strip {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .info-items {
        gap: 16px;
    }

    .info-item {
        min-width: unset;
    }

    .icon-img {
        width: 28px;
        height: 28px;
    }

    .info-copy .title {
        font-size: 16px;
    }

    .info-copy .desc {
        font-size: 13px;
    }

    .social {
        justify-content: flex-end;
    }
}

.nav-wrap {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.brand img {
    height: 42px;
    display: block;
    object-fit: contain;
}

.menu {
    margin-left: auto;
}

.menu-list {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-list>li>a,
.has-dropdown summary {
    display: flex;
    align-items: center;
    gap: .25rem;
    font-size: 18px;
    color: #111;
    text-decoration: none;
    cursor: pointer;
}

.menu-list>li>a:hover {
    opacity: .8;
}

.has-dropdown details {
    position: relative;
}

.has-dropdown summary {
    display: flex;
    align-items: center;
    gap: .25rem;
}

.has-dropdown summary::-webkit-details-marker {
    display: none;
}

.has-dropdown summary::after {
    content: "+";
    margin-left: .35rem;
    font-weight: 700;
    color: var(--accent);
}

.has-dropdown details[open]>summary::after {
    content: "–";
}

.submenu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    z-index: 20;
    display: none;
    min-width: 220px;
    padding: 8px 0;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
}

.submenu li {
    list-style: none;
}

.submenu a {
    display: block;
    padding: 10px 14px;
    color: #111;
    text-decoration: none;
    font-size: 16px;
}

.submenu a:hover {
    background: #f7f7f7;
}

.has-dropdown details[open] .submenu {
    display: block;
}

.menu a:focus,
.has-dropdown summary:focus {
    outline: none;
}

.search img {
    width: 22px;
    height: 22px;
    display: block;
}

.nav-toggle {
    display: none;
}

.burger {
    display: none;
    width: 34px;
    height: 28px;
    margin-left: auto;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.burger span {
    height: 3px;
    background: #111;
    display: block;
    border-radius: 2px;
}

@media (max-width:1024px) {
    .brand img {
        height: 40px;
    }

    .menu-list {
        gap: 22px;
    }
}

@media (max-width:900px) {
    .burger {
        display: flex;
    }

    .search {
        display: none;
    }

    .menu {
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        display: none;
        background: #fff;
        border-top: 1px solid #eee;
        box-shadow: 0 10px 24px rgba(0, 0, 0, .06);
    }

    .menu-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 6px 0;
    }

    .menu-list>li>a,
    .has-dropdown summary {
        width: 100%;
        padding: 12px 18px;
        font-size: 16px;
    }

    #nav-toggle:checked~.menu {
        display: block;
    }

    .has-dropdown details {
        width: 100%;
    }

    .submenu {
        position: static;
        display: none;
        border: 0;
        box-shadow: none;
        padding: 0 0 8px 0;
    }

    .has-dropdown details[open] .submenu {
        display: block;
    }

    .submenu a {
        padding: 10px 28px;
    }

    .brand img {
        height: 32px;
    }
}

@media (max-width:480px) {

    .menu-list>li>a,
    .has-dropdown summary {
        padding: 12px 16px;
        font-size: 15px;
    }

    .submenu a {
        padding: 9px 24px;
        font-size: 15px;
    }
}

.hero {
    position: relative;
    min-height: 90vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 1;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(to top, rgba(16, 167, 223, .92) 10%, rgba(16, 167, 223, .55) 45%, rgba(16, 167, 223, 0) 80%);
}

.hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: clamp(24px, 6vw, 80px) 16px;
    display: flex;
    align-items: flex-start;
}

.hero h1 {
    margin: 0;
    color: #f7a22b;
    font-weight: 800;
    text-transform: uppercase;
    font-size: clamp(36px, 8vw, 92px);
    line-height: 1.02;
    letter-spacing: .3px;
}

.hero h1 .accent {
    --s: 1px;
    --c: #fff;
    color: var(--blue);
    -webkit-text-stroke: 0;
    text-shadow:
        var(--s) 0 0 var(--c), calc(-1*var(--s)) 0 0 var(--c),
        0 var(--s) 0 var(--c), 0 calc(-1*var(--s)) 0 var(--c),
        var(--s) var(--s) 0 var(--c), calc(-1*var(--s)) calc(-1*var(--s)) 0 var(--c),
        var(--s) calc(-1*var(--s)) 0 var(--c), calc(-1*var(--s)) var(--s) 0 var(--c);
}

@media (max-width:900px) {
    .hero {
        min-height: 60vh;
    }

    .hero h1 {
        font-size: clamp(32px, 9vw, 64px);
        line-height: 1.05;
    }
}

@media (max-width:480px) {
    .hero {
        min-height: 56vh;
    }

    .hero-inner {
        padding: 32px 14px;
    }
}

.about-irm {
    margin: 0;
    color: var(--ink);
    background: #0fa3d6;
    background-image: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, 0));
}

.about-irm__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: clamp(28px, 6vw, 72px) 16px;
    display: grid;
    gap: clamp(20px, 3vw, 40px);
    align-items: start;
    grid-template-columns: 1.05fr 1.05fr .9fr;
    grid-template-areas: "left photo aside";
}

.about-irm__left {
    grid-area: left;
}

.about-irm__photo {
    grid-area: photo;
    margin: 0;
    position: relative;
    align-self: center;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.about-irm__aside {
    grid-area: aside;
}

.about-irm__title {
    margin: 0 0 18px;
    font-weight: 800;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: .4px;
    line-height: 1.03;
    font-size: clamp(36px, 6.6vw, 76px);
}

.about-irm__lead {
    max-width: 34ch;
    margin: 8px 0 22px;
    font-size: clamp(15px, 1.4vw, 18px);
    line-height: 1.6;
    color: #eaf6fb;
}

.about-irm__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-irm__photo::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(to top, rgba(16, 167, 223, .95) 18%, rgba(16, 167, 223, .55) 50%, rgba(16, 167, 223, 0) 78%);
}

.about-irm__subtitle {
    margin: 0 0 12px;
    text-transform: uppercase;
    letter-spacing: .4px;
    font-size: clamp(22px, 2.3vw, 34px);
    line-height: 1.15;
}

.about-irm__desc {
    margin: 0 0 20px;
    color: #eaf6fb;
    font-size: clamp(15px, 1.2vw, 18px);
    line-height: 1.6;
}

.about-irm__kpis {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 26px;
    align-items: start;
}

.kpi {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 8px 12px;
    align-items: center;
}

.kpi-num {
    color: var(--accent);
    font-weight: 800;
    font-size: clamp(34px, 4.5vw, 64px);
    line-height: 1;
}

.kpi-label {
    grid-column: 1 / -1;
    color: #eaf6fb;
    font-size: clamp(14px, 1.1vw, 18px);
    line-height: 1.35;
}

@media (max-width:1024px) {
    .about-irm__inner {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "left left"
            "photo aside";
        gap: 28px;
    }
}

@media (max-width:680px) {
    .about-irm__inner {
        grid-template-columns: 1fr;
        grid-template-areas:
            "left"
            "photo"
            "aside";
        gap: 22px;
    }

    .about-irm__kpis {
        grid-template-columns: 1fr 1fr;
    }

    .btn-ghost {
        padding: 12px 18px;
    }
}

.wp-block-html:has(> .services-irm),
.wp-block-shortcode:has(> .services-irm) {
    margin: 0 !important;
    padding: 0 !important;
}

.hero+.services-irm,
.about-irm+.services-irm {
    margin-top: -1px;
}

.services-irm {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: var(--body);
}

.services-irm::before,
.services-irm::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
}

.services-irm::before {
    background: var(--bg) center/cover no-repeat;
    filter: saturate(.95) contrast(.95);
    opacity: .45;
}

.services-irm::after {
    background: linear-gradient(to bottom, rgba(0, 78, 115, .28), rgba(0, 78, 115, .5) 18%, rgba(0, 78, 115, .7) 60%, rgba(0, 78, 115, .75) 100%);
}

.services-irm__inner {
    position: relative;
    z-index: 1;
    color: var(--ink);
    max-width: 1200px;
    margin: 0 auto;
    padding: clamp(28px, 6vw, 80px) 24px;
}

.services-irm__head {
    max-width: 860px;
    margin-bottom: clamp(18px, 3vw, 32px);
}

.services-irm__head .eyebrow {
    margin-bottom: 6px;
    font-weight: 700;
    font-size: 18px;
    color: #fff;
    opacity: .9;
}

.services-irm__head .title {
    margin: 0;
    font-weight: 800;
    line-height: 1.06;
    font-size: clamp(32px, 5.5vw, 56px);
}

.services-irm__head .title .accent-outline {
    color: var(--blue);
}

.services-irm__head .title {
    color: var(--accent);
}

.services-irm__head .lead {
    max-width: 70ch;
    margin-top: 10px;
    color: #eaf6fb;
    line-height: 1.6;
}

.services-irm__grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(4, 1fr);
    align-items: stretch;
}

.service-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 18px 18px 14px;
    color: #fff;
    background: rgba(20, 156, 188, .95);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
}

.service-card h3 {
    margin: 0 0 6px;
    font-size: 20px;
    line-height: 1.25;
}

.service-card p {
    margin: 0;
    color: #e6f7fc;
    line-height: 1.55;
}

.service-card__arrow {
    margin-top: auto;
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
}

.service-card--big {
    grid-column: 1 / span 1;
    grid-row: 1 / span 2;
    padding: 22px;
    background: rgba(21, 168, 211, .98);
}

.service-card--big h3 {
    margin: 0 0 12px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 28px;
    line-height: 1.15;
}

@media (max-width:1100px) {
    .services-irm__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .service-card--big {
        grid-row: auto;
        grid-column: 1 / -1;
    }
}

@media (max-width:720px) {
    .services-irm__grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 16px;
    }

    .service-card--big h3 {
        font-size: 24px;
    }
}

.wp-block-html:has(> .cta-irm),
.wp-block-shortcode:has(> .cta-irm),
.wp-block-group:has(> .cta-irm) {
    margin: 0 !important;
    padding: 0 !important;
}

.wp-block-columns {
    flex-wrap: wrap;
}

.wp-block-column:has(> .cta-irm) {
    flex-basis: 100% !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.services-irm+.cta-irm,
.about-irm+.cta-irm,
.hero+.cta-irm {
    margin-top: 0;
}

.cta-irm {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    width: 100%;
    margin: 0;
    background: var(--body);
    border-top: 0;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .25);
}

.cta-irm::before,
.cta-irm::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
}

.cta-irm::before {
    background: var(--bg) center/cover no-repeat;
    filter: saturate(.95) contrast(.95);
    opacity: .42;
}

.cta-irm::after {
    background: linear-gradient(to bottom,
            rgba(16, 167, 223, .92) 0%,
            rgba(16, 167, 223, .92) 10%,
            rgba(16, 167, 223, .55) 45%,
            rgba(16, 167, 223, 0) 80%);
}

.cta-irm__inner {
    position: relative;
    z-index: 1;
    color: var(--ink);
    max-width: var(--container);
    margin: 0 auto;
    text-align: center;
    padding: clamp(28px, 6vw, 64px) var(--page-pad);
}

.cta-irm__title {
    margin: 0 0 18px;
    font-weight: 800;
    letter-spacing: .5px;
    text-transform: uppercase;
    line-height: 1.15;
    font-size: clamp(22px, 4.6vw, 44px);
}

.wp-block-group:has(> .process-irm),
.wp-block-cover:has(> .process-irm),
.wp-block-html:has(> .process-irm),
.wp-block-shortcode:has(> .process-irm) {
    margin: 0 !important;
    padding: 0 !important;
}

.process-irm {
    margin: 0;
    background: var(--body);
    color: var(--ink);
}

.process-irm__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: clamp(26px, 5.5vw, 64px) var(--page-pad);
    display: grid;
    align-items: start;
    column-gap: 32px;
    row-gap: 28px;
    grid-template-columns: 1.05fr 1.05fr 1.15fr;
    grid-template-rows: auto auto 1fr;
}

.proc-hero {
    grid-column: 1/2;
    grid-row: 1/2;
}

.proc-leadwrap {
    grid-column: 2/3;
    grid-row: 1/2;
}

.proc-intro {
    grid-column: 3/4;
    grid-row: 1/2;
}

.proc-photo {
    grid-column: 1/2;
    grid-row: 2/4;
    margin: 0;
}

.proc-quote {
    grid-column: 2/3;
    grid-row: 2/4;
    margin: 0;
    color: #fff;
    align-self: end;
}

.proc-steps {
    grid-column: 3/4;
    grid-row: 2/4;
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: proc;
}

.proc-title {
    margin: 0;
    font-weight: 800;
    letter-spacing: .3px;
    text-transform: uppercase;
    line-height: 1.03;
    font-size: clamp(28px, 6.2vw, 56px);
    color: var(--accent);
}

.proc-lead {
    margin: 0 0 16px;
    max-width: 42ch;
    color: #eaf6fb;
    line-height: 1.6;
}

.proc-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
}

.proc-link:hover {
    opacity: .85;
}

.proc-intro {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.proc-intro .hash {
    color: var(--accent);
    font-size: 40px;
    line-height: 1;
    font-weight: 800;
}

.proc-subtitle {
    margin: 0;
    font-size: clamp(18px, 2.2vw, 22px);
    line-height: 1.25;
}

.proc-photo img {
    width: 100%;
    height: clamp(380px, 48vw, 560px);
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

.proc-quote p {
    position: relative;
    margin: 0 0 12px;
    font-weight: 800;
    line-height: 1.35;
    font-size: clamp(16px, 2.1vw, 20px);
}

.proc-quote p::before {
    content: "“";
    position: absolute;
    left: -14px;
    top: -6px;
    color: #fbd4a4;
    font-size: 26px;
    opacity: .95;
}

.proc-quote cite {
    display: block;
    font-style: normal;
    opacity: .85;
    font-size: 14px;
}

.proc-steps li {
    counter-increment: proc;
}

.proc-steps li+li {
    margin-top: 28px;
}

.proc-steps li h4 {
    margin: 0 0 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: clamp(16px, 2.1vw, 20px);
}

.proc-steps li h4::before {
    content: "[" counter(proc) "]";
    color: var(--accent);
    font-weight: 800;
    letter-spacing: .5px;
}

.proc-steps li p {
    margin: 0;
    color: #eaf6fb;
    line-height: 1.6;
}

@media (max-width:1180px) {
    .process-irm__inner {
        column-gap: 24px;
    }
}

@media (max-width:1080px),
(max-width:720px) {
    .process-irm__inner {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        row-gap: 22px;
    }

    .proc-hero,
    .proc-leadwrap,
    .proc-intro,
    .proc-photo,
    .proc-quote,
    .proc-steps {
        grid-column: auto;
        grid-row: auto !important;
    }

    .proc-photo {
        aspect-ratio: 16/10;
    }

    .proc-photo img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
}

.resources-irm {
    margin: 0;
}

.resources-irm__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: clamp(24px, 5vw, 56px) 16px;
    display: grid;
    gap: 28px;
    align-items: start;
    grid-template-columns: 1fr minmax(480px, 1.2fr);
}

.resources-title {
    margin: 0 0 10px;
    color: var(--accent);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.05;
    font-size: clamp(28px, 6vw, 56px);
}

.resources-lead {
    margin: 6px 0 0;
    color: var(--ink-mid);
    line-height: 1.6;
}

.acc {
    padding: 0;
    border-bottom: 1px solid #ccc;
}

.acc+.acc {
    margin-top: 14px;
}

.acc summary {
    list-style: none;
    cursor: pointer;
    margin: 0;
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 700;
    color: var(--ink-dark);
    font-size: 18px;
    border-bottom: 2px solid #222;
}

.acc summary::-webkit-details-marker {
    display: none;
}

.acc summary::after {
    content: "+";
    font-weight: 800;
    color: var(--accent);
    margin-left: 18px;
    line-height: 1;
}

.acc[open] summary::after {
    content: "–";
}

.acc-panel {
    padding: 12px 0 16px;
    color: var(--ink-mid);
    line-height: 1.6;
    animation: acc-in .18s ease;
}

@media (max-width:900px) {
    .resources-irm__inner {
        grid-template-columns: 1fr;
    }
}

.project-irm {
    background: var(--body);
}

.project-irm__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: clamp(24px, 5vw, 56px) 16px;
    text-align: center;
    color: #fff;
}

.proj-head .eyebrow {
    font-weight: 700;
    opacity: .9;
    margin-bottom: 6px;
}

.proj-head .title {
    margin: 0;
    font-weight: 800;
    line-height: 1.06;
    font-size: clamp(28px, 6vw, 56px);
    color: var(--accent);
}

.proj-head .title .accent-outline {
    color: var(--blue);
}

.proj-head .lead {
    max-width: 70ch;
    margin: 10px auto 22px;
    color: #eaf6fb;
    line-height: 1.6;
}

.proj-cards {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
}

.proj-card {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    background: #0b6b84;
    transform: translateZ(0);
    cursor: pointer;
    transition: box-shadow .25s ease, transform .25s ease;
}

.proj-card img {
    width: 100%;
    height: min(52vw, 420px);
    object-fit: cover;
    display: block;
    transition: transform .35s ease, filter .35s ease;
}

.proj-card figcaption {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px 16px;
    padding: 12px 14px;
    border-radius: 12px;
    color: #fff;
    background: linear-gradient(to top, rgba(16, 167, 223, .92), rgba(16, 167, 223, .55) 70%, rgba(16, 167, 223, .25) 100%);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
}

.proj-card .caption {
    margin: 0;
    font-weight: 700;
    font-size: clamp(14px, 2.2vw, 20px);
}

.proj-card:hover,
.proj-card.is-active {
    box-shadow: 0 14px 36px rgba(0, 0, 0, .25);
    transform: translateY(-4px);
}

.proj-card:hover img,
.proj-card.is-active img {
    transform: scale(1.06);
    filter: saturate(1.05) contrast(1.05);
}

.proj-card:hover figcaption,
.proj-card.is-active figcaption {
    opacity: 1;
    visibility: visible;
    transform: none;
}

@media (max-width:900px) {
    .proj-cards {
        grid-template-columns: 1fr;
    }

    .proj-card img {
        height: 56vw;
    }
}

.testi-irm {
    background: var(--body);
    color: var(--ink);
    border-top: 1px solid rgba(255, 255, 255, .15);
    margin-top: -1px;
}

.testi-irm__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: clamp(22px, 4vw, 56px) var(--page-pad);
    display: grid;
    gap: clamp(18px, 3vw, 28px);
    align-items: stretch;
    grid-template-columns: 1.05fr 1.25fr;
}

.testi-irm__head {
    grid-column: 1 / -1;
}

.testi-irm__head .eyebrow {
    font-weight: 700;
    font-size: 18px;
    opacity: .9;
    margin-bottom: 6px;
}

.testi-irm__head .title {
    color: var(--accent);
    margin: 0;
    font-weight: 800;
    letter-spacing: .2px;
    text-transform: uppercase;
    line-height: 1.05;
    font-size: clamp(28px, 6vw, 56px);
}

.testi-irm__photo {
    --H: clamp(240px, 36vw, 520px);
    margin: 0;
    min-height: var(--H);
    display: flex;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, .18);
}

.testi-irm__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.testi-irm__slider {
    position: relative;
    min-height: var(--H);
    padding-bottom: 14px;
    overflow-x: auto;
    overflow-y: visible;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    min-width: 0;
    min-inline-size: 0;
    touch-action: auto;
    overscroll-behavior-inline: auto;
    background: transparent;
    border: 0;
    box-shadow: none;
    border-radius: 0;
}

.testi-irm__slider::-webkit-scrollbar {
    display: none;
}

.testi-irm__track {
    display: grid;
    align-items: stretch;
    gap: 16px;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 16px)/2);
}

.testi-irm__item {
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: clamp(14px, 2.4vw, 20px);
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .20);
    border-radius: 14px;
}

.testi-irm__icon {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: .9;
}

.testi-irm__icon svg {
    width: 26px;
    height: 26px;
    color: #fff;
}

.testi-irm__name {
    margin: 0;
    font-weight: 800;
    line-height: 1.2;
    font-size: clamp(16px, 1.9vw, 18px);
}

.testi-irm__meta {
    margin: 0 0 6px;
    color: #eaf6fb;
    opacity: .9;
    font-size: 14px;
    line-height: 1.35;
}

.testi-irm__quote {
    margin: 0;
    color: #fff;
    line-height: 1.6;
    font-size: clamp(15px, 1.8vw, 17px);
}

.testi-irm__dots {
    grid-column: 2;
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
}

.testi-irm__dots .dot {
    width: 8px;
    height: 8px;
    border: none;
    padding: 0;
    cursor: pointer;
    border-radius: 999px;
    background: rgba(255, 255, 255, .38);
    transition: transform .15s ease, background .2s ease;
}

.testi-irm__dots .dot.is-active {
    background: #fff;
    transform: scale(1.15);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, .18) inset;
}

.testi-irm__nav {
    display: none !important;
}

@media (max-width:1100px) {
    .testi-irm__inner {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .testi-irm__head {
        order: 1;
    }

    .testi-irm__photo {
        order: 2;
        width: 100%;
        max-width: 100%;
        margin-inline: auto;
        min-height: auto;
    }

    .testi-irm__photo img {
        height: auto;
        aspect-ratio: 16/11;
        object-fit: cover;
    }

    .testi-irm__slider {
        order: 3;
        width: 100%;
        max-width: 100%;
        margin-inline: auto;
        min-height: auto;
        overflow-x: auto;
        overflow-y: visible;
        -webkit-overflow-scrolling: touch;
        touch-action: auto;
        overscroll-behavior-x: auto;
        padding-bottom: 14px;
    }

    .testi-irm__track {
        grid-auto-columns: 100%;
        gap: 12px;
        padding-right: 12px;
    }

    .testi-irm__dots {
        order: 4;
        grid-column: 1;
        margin-top: 10px;
    }
}

@media (max-width:560px) {
    .testi-irm__track {
        gap: 10px;
        padding-right: 10px;
    }
}

.news-irm {
    background: var(--body);
    color: var(--ink);
    border-top: 1px solid rgba(255, 255, 255, .15);
    margin-top: -1px;
}

.news-irm__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: clamp(28px, 6vw, 64px) var(--page-pad);
}

.news-irm__head {
    text-align: center;
}

.news-irm__head .title {
    color: var(--accent);
    margin: 0;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.06;
    font-size: clamp(32px, 5.5vw, 56px);
}

.news-irm__head .lead {
    max-width: 70ch;
    margin: 10px auto 0;
    color: #eaf6fb;
}

.news-irm__grid {
    display: grid;
    gap: 24px;
    margin-top: clamp(18px, 3vw, 24px);
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width:1024px) {
    .news-irm__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:640px) {
    .news-irm__grid {
        grid-template-columns: 1fr;
    }
}

.news-card {
    overflow: hidden;
    border-radius: 14px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .18);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .12);
}

.news-card__thumb img {
    display: block;
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.news-card__body {
    padding: 16px 18px 18px;
}

.news-card__meta {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: .9;
    margin-bottom: 6px;
}

.news-card__title {
    margin: 0 0 6px;
    font-size: 20px;
    line-height: 1.25;
}

.news-card__title a {
    color: #fff;
    text-decoration: none;
}

.news-card__title a:hover {
    text-decoration: underline;
}

.news-card__excerpt {
    margin: 0 0 12px;
    color: #eaf6fb;
    line-height: 1.55;
}

.news-card__cta {
    display: inline-block;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
}

.news-card__cta:hover {
    text-decoration: underline;
}

.news-irm__empty {
    opacity: .85;
}

.footer-irm {
    background: #fff;
    color: var(--ink-dark);
    border-top: 1px solid rgba(0, 0, 0, .08);
    overflow-x: clip;
}

.footer-irm a {
    color: inherit;
    text-decoration: none;
}

.footer-irm a:hover {
    color: var(--accent);
}

.footer-irm__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: clamp(22px, 4vw, 36px) var(--page-pad) max(clamp(28px, 5vw, 48px), env(safe-area-inset-bottom));
}

.footer-irm__top {
    display: grid;
    align-items: center;
    gap: clamp(18px, 3vw, 28px);
    grid-template-columns: auto 1fr;
    margin-bottom: clamp(18px, 3vw, 28px);
}

.footer-irm__brand img {
    height: 56px;
    width: auto;
    display: block;
}

.footer-irm__form {
    justify-self: end;
}

.footer-irm__hint {
    margin: .5rem 0 0;
    font-weight: 700;
    font-size: clamp(16px, 1.7vw, 20px);
}

.footer-irm__form-field {
    display: flex;
    gap: 10px;
    align-items: center;
    min-width: 0;
}

.footer-irm__form input {
    flex: 1 1 260px;
    min-width: 0;
    height: 48px;
    padding: 0 14px;
    font-size: 16px;
    outline: none;
    border: 1px solid #e3e3e3;
    border-radius: 10px;
}

.footer-irm__form input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(247, 162, 43, .18);
}

.footer-irm__grid {
    display: grid;
    gap: clamp(22px, 3vw, 32px);
    align-items: start;
    grid-template-columns: repeat(4, 1fr);
}

.footer-col__title {
    margin: 0 0 12px;
    color: #222;
    font-weight: 800;
    font-size: clamp(18px, 1.8vw, 22px);
}

.footer-col__text {
    margin: 0 0 14px;
    color: var(--ink-mid);
    line-height: 1.6;
}

.footer-list {
    display: grid;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-list a {
    opacity: .9;
}

.footer-list a:hover {
    opacity: 1;
}

.footer-addr {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin: 10px 0;
}

.footer-addr .icon {
    color: var(--ink-dark);
    opacity: .8;
    line-height: 0;
}

.footer-socials {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 14px;
    list-style: none;
    padding: 0;
    margin: 12px auto 0;
    width: 100%;
    max-width: 220px;
}

.footer-socials>li {
    margin: 0;
    padding: 0;
}

.footer-socials .social {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

.social:hover {
    color: #fff;
    background: var(--accent);
    border-color: transparent;
}

@media (max-width:560px) {
    .footer-irm__inner {
        padding: 24px var(--page-pad) max(32px, env(safe-area-inset-bottom));
    }

    .footer-irm__top {
        grid-template-columns: 1fr;
        justify-items: center;
        row-gap: 14px;
    }

    .footer-irm__brand {
        justify-self: center;
    }

    .footer-irm__brand img {
        height: 48px;
    }

    .footer-irm__form {
        width: 100%;
        max-width: 480px;
        justify-self: center;
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        column-gap: 10px;
        align-items: center;
    }

    .footer-irm__hint {
        display: none !important;
    }

    .footer-irm__form-field {
        min-width: 0;
    }

    .footer-irm__form input {
        width: 100%;
        min-width: 0;
        height: 44px;
        font-size: 16px;
    }

    .footer-irm__form .btn-accent {
        height: 44px;
        padding-inline: 16px;
        white-space: nowrap;
        flex: 0 0 auto;
    }

    .footer-irm__grid {
        grid-template-columns: 1fr;
        text-align: center;
        row-gap: 24px;
    }

    .footer-irm__grid>* {
        max-width: 36rem;
        margin-inline: auto;
    }

    .footer-col__title {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .footer-col__text {
        font-size: 14px;
        line-height: 1.55;
    }

    .footer-socials {
        justify-content: center;
        gap: 12px;
        flex-wrap: wrap;
        margin-top: 12px;
    }

    .footer-socials .social {
        width: 40px;
        height: 40px;
        border-radius: 12px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width:360px) {
    .btn-accent {
        padding-inline: 12px;
    }
}

@keyframes acc-in {
    from {
        opacity: .2;
        transform: translateY(-4px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.irm-fab {
    position: fixed;
    z-index: 2147483647;
    right: calc(env(safe-area-inset-right, 0px) + clamp(12px, 2vw, 20px));
    bottom: calc(env(safe-area-inset-bottom, 0px) + clamp(12px, 2vw, 20px));
    display: inline-flex;
}

.irm-fab__btn {
    --size: 56px;
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    background: #25D366;
    box-shadow: 0 8px 28px rgba(0, 0, 0, .25);
    text-decoration: none;
    outline: 0;
    border: none;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.irm-fab__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, .28);
}

.irm-fab__btn:active {
    transform: translateY(0);
}

.irm-fab__img {
    width: 60%;
    height: 60%;
    object-fit: contain;
    display: block;
    pointer-events: none;
}

@media (prefers-reduced-motion:reduce) {
    .irm-fab__btn {
        transition: none;
    }
}

@media (prefers-reduced-motion: reduce) {

    :root:not([data-anim="on"]) [data-reveal],
    :root:not([data-anim="on"]) .reveal-left,
    :root:not([data-anim="on"]) .reveal-right,
    :root:not([data-anim="on"]) .reveal-up {
        transform: none !important;
        opacity: 1 !important;
    }
}

.parallax-bg {
    background-image: var(--bg);
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}

html {
    scroll-behavior: smooth;
}

:root {
    --nav-h: 12px;
}

.hero,
.about-irm,
.services-irm,
.project-irm,
.footer-irm {
    scroll-margin-top: var(--nav-h);
}

.menu .lang-switch {
    display: flex;
    gap: .5rem;
    align-items: center;
    margin-left: 1rem;
}

.menu .lang-btn {
    border: 1px solid #ccc;
    background: transparent;
    color: inherit;
    padding: .3rem .6rem;
    border-radius: .4rem;
    cursor: pointer;
    font: inherit;
}

.menu .lang-btn[aria-pressed="true"] {
    border-color: #ff7a18;
    box-shadow: 0 0 0 2px rgba(255, 122, 24, .25) inset;
}

.lang-switch,
.lang-switch * {
    unicode-bidi: plaintext;
}

.lang-switch .notranslate {
    -webkit-user-modify: read-only !important;
}

#gt-container,
#gt-container .goog-te-gadget,
#gt-container .goog-te-combo,
.goog-logo-link,
.goog-te-gadget-icon,
.goog-te-spinner-pos {
    display: none !important;
}

.goog-te-banner-frame.skiptranslate,
.goog-te-banner-frame,
#goog-gt-tt,
.goog-te-balloon-frame,
.VIpgJd-ZVi9od-ORHb-OEVmcd {
    display: none !important;
    visibility: hidden !important;
}

html {
    margin-top: 0 !important;
}

body {
    top: 0 !important;
    position: static !important;
}

#services-grid {
    display: grid;
    grid-auto-flow: row;
    grid-template-columns: minmax(280px, .95fr) repeat(3, minmax(0, 1fr));
    grid-auto-rows: 220px;
    gap: clamp(14px, 2vw, 22px);
    align-items: stretch;
}

#services-grid .service-card--big {
    grid-column: 1 / 2;
    grid-row: 1 / span 2;
    display: block;
    padding: 18px;
    background: rgba(255, 255, 255, .08);
    border: 2px solid rgba(255, 255, 255);
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .12);
}

#services-grid .service-card:not(.service-card--big) {
    box-sizing: border-box;
    padding: 24px;
    border-radius: 14px;
    background: rgba(20, 156, 188, .95);
    border: 1px solid rgba(255, 255, 255);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: background .2s ease, border-color .2s ease,
        box-shadow .25s ease, transform .25s ease;
}

#services-grid .service-card:not(.service-card--big) h3,
#services-grid .service-card:not(.service-card--big) h3 a {
    margin: 0;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: clamp(16px, 1.3vw, 20px);
}

#services-grid .service-card:not(.service-card--big) h3 {
    max-width: 28ch;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

#services-grid .service-card:not(.service-card--big):hover {
    background: rgba(21, 168, 211, 1);
    border-color: rgba(255, 255, 255, .35);
    box-shadow: 0 14px 36px rgba(0, 0, 0, .18);
    transform: translateY(-3px);
}

@media (max-width:1100px) {
    #services-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));

        grid-template-rows: auto;

        grid-auto-rows: clamp(160px, 22vw, 190px);

        gap: clamp(12px, 2.5vw, 18px);
        align-items: stretch;
    }

    #services-grid .service-card--big {
        grid-column: 1 / -1;

        grid-row: 1;

        height: auto;

        min-height: unset;

        z-index: 1;

        overflow: hidden;
    }

    #services-grid .service-card {
        height: 100%;

    }
}

@media (max-width:1100px) {

    .services-irm__grid,
    #services-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));

        grid-auto-rows: auto !important;
        gap: clamp(12px, 2.5vw, 18px);
    }

    .services-irm__grid .service-card--big,
    #services-grid .service-card--big {
        grid-column: 1 / -1;
        grid-row: 1;
        position: static !important;
        z-index: 0 !important;
        height: auto;
        min-height: 0;
        margin: 0;
    }

    .services-irm__grid .service-card:not(.service-card--big),
    #services-grid .service-card:not(.service-card--big) {
        min-height: clamp(150px, 26vw, 190px);
        height: auto;
    }
}

@media (max-width:560px) {

    .services-irm__grid,
    #services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }
}

@media (max-width:360px) {

    .services-irm__grid,
    #services-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto !important;
    }
}

.btn-ghosts {
    display: inline-block;
    background-color: #00AEEF;

    color: #FFA500;

    font-weight: bold;
    font-size: 18px;
    text-decoration: none;
    padding: 8px 20px;
    border: 2px solid #ffffff;

    border-radius: 20px;

    text-shadow:
        -1px -1px 0 #ffffff,
        1px -1px 0 #ffffff,
        -1px 1px 0 #ffffff,
        1px 1px 0 #ffffff;

    transition: all 0.3s ease;
}

.btn-ghosts:hover {
    background-color: #0096d6;

    transform: translateY(-2px);
}

.footer-map iframe {
    width: 100%;
    height: 200px;
    border: 0;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

:root {
    --site-container: 1140px;
    --site-gutter: 16px;
}

.irm-apply {
    max-width: var(--site-container);
    margin: 40px auto;
    padding-inline: var(--site-gutter);
}

.irm-apply__inner {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 22px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, .06);
    overflow: hidden;
}

#irmApplyForm {
    display: grid;
    gap: 12px;
}

.irm-apply input[type="text"],
.irm-apply input[type="email"],
.irm-apply input[type="tel"],
.irm-apply input[type="url"],
.irm-apply input[type="number"],
.irm-apply textarea {
    width: 100% !important;
    max-width: 100%;
    box-sizing: border-box;
    margin: 0 !important;
    padding: 12px 14px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-size: 15px;
}

.irm-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.irm-btn {
    background: #243a73;
    color: #fff;
    border: 0;
    padding: 12px 16px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
}

.irm-btn.ghost {
    background: #eef2ff;
    color: #111827;
}

.irm-note {
    margin-top: 10px;
    padding: 10px 12px;
    border-radius: 10px;
}

.irm-note.ok {
    color: #065f46;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
}

.irm-note.err {
    color: #b91c1c;
    background: #fee2e2;
    border: 1px solid #fecaca;
}

.irm-apply .g-recaptcha {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.irm-apply .g-recaptcha>div {
    transform-origin: left top;
}

@media (max-width:360px) {
    .irm-apply .g-recaptcha>div {
        transform: scale(.90);
    }
}

@media (max-width:320px) {
    .irm-apply .g-recaptcha>div {
        transform: scale(.80);
    }
}

@media (max-width:480px) {
    .irm-apply__inner {
        padding: 16px;
    }
}

.menu .menu-list .download-profile {
    margin-left: .5rem;
}

.menu .menu-list .download-profile>a {
    --dp-bg: #0a68ff;
    --dp-bg-hover: #0752c7;
    --dp-text: #ffffff;
    --dp-ring: 0 0 0 0 rgba(10, 104, 255, .35);
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .55rem .9rem;
    border-radius: 999px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    background: var(--dp-bg);
    color: var(--dp-text);
    box-shadow: 0 6px 16px rgba(10, 104, 255, .18);
    transition: background .2s ease, box-shadow .2s ease, transform .06s ease, outline-offset .2s ease;
    outline: none;
}

.menu .menu-list .download-profile .dp-icon {
    display: inline-flex;
    opacity: .95;
}

.menu .menu-list .download-profile .dp-badge {
    display: inline-flex;
    font-size: .7rem;
    font-weight: 700;
    padding: .2rem .45rem;
    border-radius: .4rem;
    background: rgba(255, 255, 255, .18);
    border: 1px solid rgba(255, 255, 255, .35);
    letter-spacing: .02em;
}

.menu .menu-list .download-profile>a:hover {
    background: var(--dp-bg-hover);
    box-shadow: 0 8px 20px rgba(7, 82, 199, .25);
}

.menu .menu-list .download-profile>a:active {
    transform: translateY(1px);
}

.menu .menu-list .download-profile>a:focus-visible {
    box-shadow:
        0 0 0 2px #fff,
        0 0 0 4px rgba(10, 104, 255, .65);
}

@media (prefers-color-scheme: dark) {
    .menu .menu-list .download-profile>a {
        --dp-bg: #3b82f6;
        --dp-bg-hover: #2563eb;
        box-shadow: 0 6px 16px rgba(59, 130, 246, .25);
    }
}

@media (max-width: 960px) {
    .menu .menu-list .download-profile {
        margin: .5rem 0 0;
    }

    .menu .menu-list .download-profile>a {
        width: max-content;
    }
}

@media (max-width: 960px) {

    .menu {
        max-height: calc(100vh - 64px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: env(safe-area-inset-bottom);
    }

    .menu .menu-list {
        display: flex;
        flex-direction: column;
        gap: .5rem;
        padding: .75rem 16px 1rem;
        box-sizing: border-box;
    }

    .menu .menu-list>li {
        width: 100%;
    }

    .menu .menu-list .download-profile {
        order: 90;
        margin: .25rem 0 .5rem;
    }

    .menu .menu-list .download-profile>a {
        display: flex;
        justify-content: center;
        width: 100%;
        padding: .8rem 1rem;
        border-radius: 14px;
        box-sizing: border-box;
    }

    .menu .menu-list .lang-switch {
        order: 100;
        display: flex;
        gap: .5rem;
        padding-top: .75rem;
        margin-top: .25rem;
        border-top: 1px solid rgba(0, 0, 0, .08);
    }
}


.mining-section {
    padding: 80px 10%;
    background: #0fa3d6;
}

.mining-section__inner {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

/* ===== LEFT CONTENT ===== */
.about-irm__content {
    flex: 1 1 500px;
}

.mining-section__title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #222;
    line-height: 1.2;
    margin-bottom: 20px;
}

.mining-section__text {
    font-size: 1.1rem;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* ===== IMAGE ===== */
.mining-section__image {
    flex: 1 1 500px;
}

.mining-section__image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

/* ===== BUTTON ===== */
.btn-outline {
    display: inline-block;
    padding: 12px 28px;
    border: 2px solid #e67e22;
    border-radius: 50px;
    color: #e67e22;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: #e67e22;
    color: #fff;
}

/* ===== RESPONSIVE MOBILE ===== */
@media (max-width: 768px) {
    .mining-section {
        padding: 40px 20px;
    }
    
    .mining-section__inner {
        gap: 30px;
        flex-direction: column;
        width: 100%;
    }
    
    .about-irm__content {
        flex: 1 1 100%;
        width: 100%;
    }
    
    .mining-section__title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 20px;
    }
    
    .mining-section__text {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 25px;
    }
    
    .btn-outline {
        padding: 12px 30px;
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    /* Image dengan padding dari kiri-kanan */
    .mining-section__image {
        width: 100%;
        flex: 1 1 100%;
    }
    
    .mining-section__image img {
        width: 100%;
        border-radius: 15px;
        display: block;
    }
}

@media (max-width: 480px) {
    .mining-section {
        padding: 40px 20px;
    }
    
    .mining-section__title {
        font-size: 1.75rem;
    }
    
    .mining-section__text {
        font-size: 0.9rem;
    }
    
    .mining-section__image img {
        border-radius: 12px;
    }
}

#project-section {
  background-color: #00a0d1;
  padding: 60px 20px;
  color: #fff;
}

.project-section__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

.project-section__left {
  flex: 1 1 450px;
  max-width: 550px;
}

.project-section__title {
  font-size: 3rem;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 1rem;
}

.accent-outlines {
  -webkit-text-stroke: 1.5px #fff;
  color: transparent;
  font-weight: 800;
}

.project-section__text {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  color: #e0f7ff;
}

.project-section__photo {
  flex: 1 1 600px;
  max-width: 700px;
}

.project-section__photo img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.btn-ghosts.btn-outline-oranges {
  display: inline-block;
  padding: 10px 22px;
  border: 2px solid #ff8c00;
  color: #ff8c00;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-ghosts.btn-outline-oranges:hover {
  background-color: #ff8c00;
  color: #fff;
}

@media (max-width: 992px) {
  .project-section__inner {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem; 
  }

  .project-section__photo {
    max-width: 90%;
    margin-top: 1rem; 
  }
}

@media (max-width: 600px) {
  #project-section {
    padding: 40px 15px; 
  }

  .project-section__title {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
  }

  .project-section__inner {
    gap: 1rem; 
  }

  .project-section__left {
    max-width: 100%;
  }

  .project-section__photo {
    max-width: 100%;
    margin-top: 0.5rem; 
  }

  .project-section__text {
    font-size: 1rem;
    margin-bottom: 1rem; 
  }
}

@media (max-width: 600px) {
  #project-section {
    padding: 40px 15px 20px; 
  }

  .project-section__inner {
    gap: 0.8rem; 
  }

  .project-section__photo {
    margin-top: 0.5rem;
    margin-bottom: 0; 
  }

  .project-section__photo img {
    display: block;
    margin-bottom: 0; 
  }

  .project-section__left {
    margin-bottom: 0.5rem; 
  }

  #project-section .project-section__inner > *:last-child {
    margin-bottom: 0;
  }
}

@media (max-width: 992px) {
    .project-section__photo {
        max-width: 90%;
        margin-top: 1rem;
        max-height: fit-content;
    }
}

}
@media (max-width: 600px) {
    .project-section__left {
        margin-bottom: 0.5rem;
        max-height: fit-content;
    }
}</style>
<!-- end Simple Custom CSS and JS -->
