:root {
    /* --brand-navy: #011344; */
    --brand-black: black;
    --brand-navy-blue: #0B57D0;
    --brand-navy-deep: #020f42;
    --brand-blue: #0c38b8;
    --brand-accent: #9fcb3c;
    --text-main: #102042;
    --text-soft: #000000;
    --text-soft2: #54637f;
    --surface: #ffffff;
    --surface-alt: #eef3ff;
    --border-soft: rgba(3, 27, 104, 0.12);
    --shadow-soft: 0 24px 60px rgba(2, 15, 66, 0.18);
    --hero-image-height: 520px;
    --slider-overlap: 100px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 106%;
}

body {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    color: var(--text-main);
    background: white;
    padding-top: 90px;
    word-spacing: 5px;
}

.azibo-second-title {
    font-size: 30px;
    font-weight: 650;
    padding-bottom: 5px;
    padding-top: 10px;
    text-align:left;

}

.why-azibo {
    font-weight: 650;
    font-size: 24px;
    color: var(--brand-navy-blue);
    padding-top: 10px;
    padding-bottom: 15px;
    
}


/* Global: justify body text throughout */
body p,
body li {
    text-align: justify;
    text-justify: inter-word;
    /* padding-bottom: 4px; */
}

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

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

/* Circle profile image with orange border */
.profile-image {
    border-radius: 50%;
    border: 4px solid #FA9602;
    display: block;
    object-fit: cover;
}

.wrap {
    width: min(1130px, calc(100% - 40px));
    margin: 0 auto;
}

.site-header .wrap {
    width: min(1280px, calc(100% - 72px));
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #ffffff;
    border-bottom: 1px solid #d9d9d9;
    padding: 0;
}

/* Hamburger button ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â hidden on desktop */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: auto;
}

.mobile-nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: #011344;
    transition: transform 0.25s, opacity 0.25s;
}

.mobile-nav-toggle.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-nav-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggle.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.header-shell {
    display: grid;
    grid-template-columns: 285px minmax(0, 1fr);
    align-items: stretch;
    gap: 28px;
    padding: 0;
    margin-bottom: 8px;
}

.brand {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 0;
    padding: 0;
    background: #ffffff;
}

.brand img {
    width: 185px;
    max-width: 100%;
    height: auto;
    margin-top: 0;
}




.header-panel {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 0;
    padding-top: 0;
}

.header-utility-row {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    width: 100%;
}

.utility-bar {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    width: 612px;
    max-width: 100%;
    min-height: 45px;
    margin-left: 0;
    background: #011344;
}

.utility-nav,
.account-nav,
.product-nav {
    display: flex;
    align-items: center;
}

.header-login-wrap {
    flex: 0 0 auto;
    margin-right: 15px;
    text-align: right;
}

.header-login-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 33px;
    padding: 0 18px;
    border-radius: 4px;
    background: #FA9602;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    transition: background 0.2s ease, transform 0.2s ease;
}

.header-login-button:hover {
    background: #F09103;
    transform: translateY(-1px);
}

.utility-nav,
.account-nav {
    gap: 0;
    align-self: stretch;
    align-items: stretch;
}

.utility-nav a,
.account-nav a {
    position: relative;
    padding: 0 12px;
    font-size: 15px;
    line-height: 1;
    color: #ffffff;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.utility-nav a:first-child,
.account-nav a:first-child {
    padding-left: 15px;
}

.utility-nav a:last-child,
.account-nav a:last-child {
    padding-right: 15px;
}

.utility-nav a+a::before,
.account-nav a+a::before {
    content: '|';
    position: absolute;
    left: -2px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.75);
}

.utility-nav a:hover,
.account-nav a:hover {
    color: #dce6ff;
}

.utility-nav a.active {
    box-shadow: inset 0 -3px 0 0 #FA9602;
    color: #FA9602;
}

.product-nav {
    flex-wrap: nowrap;
    gap: 0;
    /*  width: 980px; */
    max-width: 100%;
    margin-left: auto;
    min-height: 37px;
    /* padding: 0 24px; */
    background: #ededed;
    overflow: visible;
    align-items: stretch;
}

.product-item {
    position: relative;
    flex: 0 0 auto;
    display: flex;
    align-items: stretch;
}

.product-item>a {
    flex: 0 0 auto;
    position: relative;
    padding: 0 34px 0 18px;
    font-size: 14px;
    color: #000000;
    display: flex;
    align-items: center;
    font-weight: 600;
}

.product-item+.product-item>a::before {
    content: '|';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #8f8f8f;
}

.product-item>a::after {
    display: none;
}

.product-item>a:hover {
    color: var(--brand-black);
}

.product-item.is-active>a {
    color: #0B57D0;
}


.product-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 210px;
    display: none;
    flex-direction: column;
    background: #ededed;
    border: 1px solid rgba(3, 27, 104, 0.12);
    box-shadow: 0 14px 28px rgba(2, 15, 66, 0.16);
    z-index: 30;
}

.product-submenu a {
    padding: 7px 16px;
    font-size: 14px;
    color: #000000;
    white-space: nowrap;
    border-bottom: 2px solid #ffffff;
    font-weight: 600;
}

.product-submenu a:last-child {
    border-bottom: 0;
}

.product-submenu a:hover {
    background: #d5d5d5;
    color: var(--brand-black);
}

.product-item:hover .product-submenu {
    display: flex;
}

.product-item:focus-within .product-submenu {
    display: flex;
}

.header-actions,
.hero-actions,
.contact-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.solid-button,
.ghost-button,
.link-button,
.back-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 35px;
    padding: 0 20px;
    border-radius: 3px !important;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.solid-button {
    color: #fff;
    background: var(--brand-navy-blue);
    box-shadow: 0 16px 32px rgba(1, 19, 68, 0.28);
}

.ghost-button,
.link-button {
    color: #fff;
    background: #011344;
    border: 1px solid #011344;
    box-shadow: 0 16px 32px rgba(1, 19, 68, 0.28);
}

.back-button {
    color: #fff;
    font-size: 18px;
    background: #FA9602;
    border: 1px solid #FA9602;
    box-shadow: 0 12px 26px rgba(239, 146, 40, 0.32);
}

.solid-button:hover,
.ghost-button:hover,
.link-button:hover,
.back-button:hover {
    transform: translateY(-1px);
}

.back-button:hover {
    /* background: #f5a94d;
    border-color: #f5a94d;
    box-shadow: 0 14px 30px rgba(239, 146, 40, 0.38); */
    background: #FA9602 !important;
    color: #ffffff !important;
    border-color: #FA9602 !important;
    /* box-shadow: 0 14px 30px rgba(240, 133, 11, 0.38); */
}

.esg-intro-card-actions .back-button:hover {
    background:#f5a94d;
    border-color: #f5a94d;
    color: #ffffff;
    box-shadow: 0 14px 30px rgba(186, 101, 4, 0.38);
}

.hero {
    position: relative;
    overflow: visible;
    background: #f1f1f1;
    --hero-banner-image: url('../../img/Home Page.png');
    --hero-banner-position: center top;
    --hero-banner-size: auto;
    --hero-image-height: 456px;
    color: #fff;
    margin-top: 0px;
    margin-bottom: 0;
    min-height: var(--hero-image-height);
    height: auto;
    padding-bottom: 0;
}

.hero-esg {
    position: relative;
    overflow: visible;
    background: #f1f1f1;
    --hero-banner-image: url('../../img/ESG Solutions.png');
    --hero-banner-position: center top;
    --hero-banner-size: auto;
    --hero-image-height: 456px;
    color: #fff;
    margin-top: 0px;
    margin-bottom: 0;
    min-height: var(--hero-image-height);
    height: auto;
    padding-bottom: 0;
}

.hero-eu {
    position: relative;
    overflow: visible;
    background: #f1f1f1;
    --hero-banner-image: url('../../img/EU Compliance Hub.png');
    --hero-banner-position: center top;
    --hero-banner-size: auto;
    --hero-image-height: 455px;
    color: #fff;
    margin-top: 1px;
    margin-bottom: 0;
    min-height: var(--hero-image-height);
    height: auto;
    padding-bottom: 0;
}

.hero-cluster {
    position: relative;
    overflow: visible;
    background: #f1f1f1;
    --hero-banner-image: url('../../img/EU Cluster Solutions.png');
    --hero-banner-position: center top;
    --hero-banner-size: auto;
    --hero-image-height: 455px;
    color: #fff;
    margin-top: 1px;
    margin-bottom: 0;
    min-height: var(--hero-image-height);
    height: auto;
    padding-bottom: 0;
}

.hero-resources {
    position: relative;
    overflow: visible;
    background: #f1f1f1;
    --hero-banner-image: url('../../img/ESG Solutions.png');
    --hero-banner-position: center top;
    --hero-banner-size: auto;
    --hero-image-height: 455px;
    color: #fff;
    margin-top: 1px;
    margin-bottom: 0;
    min-height: var(--hero-image-height);
    height: auto;
    padding-bottom: 0;
}

.hero-erp {
    position: relative;
    overflow: visible;
    background: #f1f1f1;
    --hero-banner-image: url('../images/ERP Software.png');
    --hero-banner-position: center top;
    --hero-banner-size: auto;
    --hero-image-height: 455px;
    color: #fff;
    margin-top: 1px;
    margin-bottom: 0;
    min-height: var(--hero-image-height);
    height: auto;
    padding-bottom: 0;
}

.hero-banner2 {
    min-height: 300px;
    height: auto;
    background: #f1f1f1;
    --hero-banner-image: url('../images/banner2.webp');
    --hero-banner-position: center;
    padding-bottom: 0;
}


.hero-banner3 {
    min-height: 300px;
    height: auto;
    background: #f1f1f1;
    --hero-banner-image: url('../images/banner3.webp');
    --hero-banner-position: center top;
    padding-bottom: 0;
}

.hero-banner4 {
    min-height: 300px;
    height: auto;
    background: #f1f1f1;
    --hero-banner-image: url('../images/banner4.webp');
    --hero-banner-position: center top;
    padding-bottom: 0;
}





.hero-banner2 .hero-banner-title {
    max-width: min(72ch, 95%);
    margin-left: auto;
    margin-right: auto;
    text-wrap: balance;
}

.hero::before,
.hero-esg::before,
.hero-eu::before,
.hero-cluster::before,
.hero-resources::before,
.hero-erp::before,
.hero-banner2::before,
.hero-banner3::before,
.hero-banner4::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: var(--hero-image-height, 320px);
    background:
        linear-gradient(180deg, rgba(2, 10, 48, 0.22), rgba(2, 10, 48, 0.22)),
        var(--hero-banner-image) var(--hero-banner-position, center)/var(--hero-banner-size, cover) no-repeat;
    filter: contrast(1.1) saturate(1.12) brightness(1.04);
    z-index: 0;
}

.hero::before {
    background: var(--hero-banner-image) var(--hero-banner-position, center)/var(--hero-banner-size, cover) no-repeat;
}

.hero-esg::before {
    background: var(--hero-banner-image) var(--hero-banner-position, center)/var(--hero-banner-size, cover) no-repeat;
}

.hero-eu::before {
    background: var(--hero-banner-image) var(--hero-banner-position, center)/var(--hero-banner-size, cover) no-repeat;
}

.hero-cluster::before {
    background: var(--hero-banner-image) var(--hero-banner-position, center)/var(--hero-banner-size, cover) no-repeat;
}

.hero-resources::before {
    background: var(--hero-banner-image) var(--hero-banner-position, center)/var(--hero-banner-size, cover) no-repeat;
}

.hero-erp::before {
    background: var(--hero-banner-image) var(--hero-banner-position, center)/var(--hero-banner-size, cover) no-repeat;
}

.hero-overlay {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: var(--hero-image-height, 320px);
    background: linear-gradient(180deg, rgba(1, 7, 24, 0.08), rgba(1, 7, 24, 0.03));
}

.hero .hero-overlay {
    display: none;
}

.hero-esg .hero-overlay {
    display: none;
}

.hero-eu .hero-overlay {
    display: none;
}

.hero-cluster .hero-overlay {
    display: none;
}

.hero-resources .hero-overlay {
    display: none;
}

.hero-erp .hero-overlay {
    display: none;
}

.hero-esg .hero-banner-copy {
    display: none;
}


.hero-cluster .hero-banner-copy {
    display: none;
}

.hero-resources .hero-banner-copy {
    display: none;
}

.hero-content,
.page-hero .wrap,
.split-layout,
.two-column,
.footer-grid {
    position: relative;
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.35fr 0.9fr;
    gap: 36px;
    padding: 52px 0 44px;
    align-items: end;
}

.hero-slider-wrap {
    position: relative;
    z-index: 1;
    padding-top: 60px;
    padding-bottom: 0;
}

.hero-banner-copy {
    margin: 0 auto 6px;
    max-width: 1030px;
    text-align: center;
    position: relative;
    z-index: 5;
    margin-bottom: calc(var(--slider-overlap, 0px) + 10px);
}

.hero-banner-title {
    margin: 0;
    max-width: none;
    color: #ffffff;
    font-size: 30px;
    line-height: 1.27;

}


.eyebrow {
    margin: 0 0 0;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: var(--brand-navy-blue);
}

.hero h1,
.page-hero h1 {
    margin: 0;
    max-width: 12ch;
    font-size: clamp(2.5rem, 5vw, 5rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.lead {
    margin: 20px 0 0;
    font-size: 15px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.86);
}

.hero-card,
.info-card,
.solution-row {
    border-radius: 0;
    background: var(--surface);
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft);
}

.hero-card {
    padding: 32px;
    color: var(--text-main);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(242, 246, 255, 0.98));
}

.hero-card h2,
.info-card h2,
.solution-row h2,
.section-heading h2 {
    margin: 0 0 14px;
    font-size: 1.4rem;
    line-height: 1.3;
}

.info-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.section {
    padding: 40px 0;
}

.section-soft {
    background: linear-gradient(180deg, rgba(12, 56, 184, 0.06), rgba(3, 27, 104, 0.02));
    padding: 30px 0 30px;
}

.departments-block {
    background: #f1f1f1;
    /* background: linear-gradient(135deg, #d5d5d5 100%, #011344 0%, #0B43D0 100%) */
}

.departments-block .home-coverage-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: start;
    align-content: start;
    max-width: 1130px;
}

.departments-block .home-coverage-pills span,
.departments-block .home-coverage-pills a {
    display: inline-flex;
    width: auto;
    white-space: nowrap;
    flex: 0 0 auto;
}

.departments-block h2 {
    color: #011344;
}

.departments-block .section-copy {
    color: #000;
}

.section-soft .split-layout {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr);
    gap: 42px;
    align-items: center;
}

.section-soft h2 {
    max-width: 560px;
    margin: 0 0 22px;
    font-size: 2rem;
    line-height: 1.28;
}

.section-soft .section-copy {
    max-width: 600px;
    font-size: 1.02rem;
    line-height: 1.9;
}

.coverage-only-block .coverage-stack {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    width: min(1230px, calc(100% - 40px));
}

.coverage-only-block .home-coverage-pills {
    margin-top: 0;
    max-width: 1230px;
}

.section-heading {
    /*  max-width: 780px; */
    margin-bottom: 0px;
}

.section-copy,
.info-card p,
.solution-row p,
.footer-copy,
.contact-note {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.55;
    text-align: left;
}

.footer-copy {
    color: var(--text-soft2) !important;
}

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

.home-intro-section {
    padding-top: 24px;
}

.home-intro-section .section-heading {
    margin-left: 24px;
    margin-right: 24px;
    margin-bottom: 0;
}

.home-intro-section .card-grid,
.home-intro-section .esg-detail-panels {
    margin-left: 24px;
    margin-right: 24px;
    margin-top: 24px;
}

.cluster-page .home-intro-section .card-grid {
    margin-top: 24px;
}

.esg-intro-card-section {
    padding-top: 20px;
}

.esg-erp-section {
    padding-top: 30px;
    padding-bottom: 10px;
}

.esg-erp-heading {
    margin: 0 0 45px;
    text-align: center;
    font-size: 2.85rem;
    line-height: 1.2;
    font-weight: 800;
    color: #111111;
}

.esg-erp-cards {
    display: grid;
    gap: 18px;
}

.esg-erp-card {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 20px;
    align-items: center;
    background: #f1f1f1;
    border: 1px solid #efe5d8;
    border-radius: 18px;
    padding: 22px 26px;
}

.esg-erp-card--trigger {
    cursor: pointer;
}

.home-azibo-detail {
    display: none;
}

.home-azibo-detail.is-open {
    display: block;
}

.home-sustain-detail {
    display: none;
}

.home-sustain-detail.is-open {
    display: block;
}

.home-frameworks-detail {
    display: none;
}

.home-frameworks-detail.is-open {
    display: block;
}

body.is-home-detail-open .esg-erp-section,
body.is-home-detail-open .home-intro-section {
    display: none;
}

.esg-erp-card-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #fff7ec;
    border: 1px solid #efe5d8;
    position: relative;
    display: grid;
    place-items: center;
    color: #1c1c1c;
}

.esg-erp-card-icon::after {
    content: '';
    position: absolute;
    inset: 16px;
    border-radius: 8px;
    border: 2px solid #1c1c1c;
}

.esg-erp-icon {
    width: 24px;
    height: 24px;
    color: currentColor;
}

.esg-erp-card-content h3 {
    margin: 0 0 8px;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 750;
    color: #1a1a1a;
}

.esg-erp-card-content p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: #1f1f1f;
}

@media (max-width: 768px) {
    .esg-erp-card {
        grid-template-columns: 56px minmax(0, 1fr);
        padding: 18px 18px;
    }

    .esg-erp-card-icon {
        width: 48px;
        height: 48px;
    }

    .esg-erp-card-icon::after {
        inset: 13px;
    }
}

#esg-intro-card {
    scroll-margin-top: 120px;
}

body.is-esg-detail-open .esg-intro-card-section {
    display: none;
}

.esg-intro-card {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(2, 15, 66, 0.10);
    border: 1px solid rgba(0, 95, 219, 0.10);
    padding: 28px 28px;
    margin: 0 24px 24px;
}

.esg-intro-card.esg-intro-card--no-box {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
}

.esg-intro-card.esg-intro-card--no-box .esg-detail-section-title,
.esg-intro-card.esg-intro-card--no-box .esg-detail-copy {
    background: transparent;
    box-shadow: none;
    border: 0;
    padding: 0;
}

.esg-intro-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 48px;
    align-items: start;
}

.esg-intro-layout.esg-intro-layout--solo {
    grid-template-columns: minmax(0, 1fr);
}

.esg-intro-sidebar {
    top: 110px;
}

.esg-intro-card-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    margin-bottom: 0;
}

.esg-intro-card-actions-left {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.esg-intro-card .esg-detail-panel-title {
    margin-top: 0;
}

.esg-intro-card-list {
    display: grid;
    gap: 0;
    margin-top: 0;
    border-top: 0;
}

.esg-intro-card-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    width: 100%;
    background: transparent;
    border: none;
    text-align: left;
    /* margin-top: -10px; */
    padding: 16px 0 16px;
    border-bottom: 1px solid rgba(1, 19, 68, 0.15);
    color: var(--brand-navy-blue);
    font-weight: 650;
    font-size: 24px;
    cursor: pointer;
}

.esg-intro-card-item--static {
    border-top: 0;
    border-bottom: 0;
}

.esg-intro-card-item--static {
    cursor: default;
}
.esg-intro-card-item[aria-expanded="true"] {
    color: var(--brand-navy-blue);
}

.esg-intro-card-item > span {
    order: 1;
}

.esg-intro-card-item > span:not(.esg-intro-card-arrow),
.esg-intro-card-item--static > span {
    font-size: 24px;
    font-weight: 650;
}

.esg-intro-card-arrow {
    width: 12px;
    height: 12px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    flex-shrink: 0;
    transition: transform 0.2s ease;
    order: 0;
}

.esg-intro-card-item[aria-expanded="true"] .esg-intro-card-arrow {
    transform: rotate(-135deg);
}

.esg-intro-card-detail {
    background: transparent;
    padding: 10px 0 0 34px;
    margin-top: 0;
    color: #000000;
    border-bottom: none;
    margin-bottom: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-6px);
    transition: max-height 0.4s cubic-bezier(0.60, 1, 0.36, 1), opacity 0.28s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

/* First subheading content: no top padding */
.esg-intro-card-list > .esg-intro-card-detail:first-of-type {
    padding-top: 0;
}

.esg-intro-card-detail.is-open {
    max-height: max-content;
    opacity: 1;
    /* margin-top: 6px; */
    padding-bottom: 24px;
    margin-bottom: 0;
    transform: translateY(0);
}

.esg-intro-card-detail[hidden],
.esg-intro-card-detail:not(.is-open) {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

.esg-intro-card-item[aria-expanded="true"] {
    border-bottom: none;
}

.esg-intro-card-item[aria-expanded="true"] + .esg-intro-card-detail {
    border-bottom: 1px solid rgba(1, 19, 68, 0.15);
}

.esg-intro-card-item:not(.esg-intro-card-item--static) + .esg-intro-card-detail.is-open {
    margin-top: 0;
}

.esg-intro-card-detail p {
    margin: 0 0 12px;
    font-size: 15px;
    line-height: 1.45;
}

.esg-intro-card-detail ul {
    margin: 6px 0 12px 10px;
    padding: 0;
    list-style: none;
}

.esg-intro-card-detail ul li {
    position: relative;
    padding-left: 22px;
    margin: 0 0 10px;
    color: #000000;
    font-size: 15px;
    line-height: 1.4;
    word-spacing: 4px;
}

.esg-intro-card-detail ul li:last-child {
    margin-bottom: 0;
}

.esg-intro-card-detail ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, #FA9602, #f5a94e);
    border-radius: 50%;
}

.esg-intro-card-detail ul li::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 10px;
    transform: translateY(-50%);
    width: 2px;
    height: 2px;
    background: #ffffff;
    border-radius: 50%;
}

.home-azibo-partner {
    margin-top: 18px;
}

.esg-detail-cta-copy .home-azibo-partner-title {
    text-align: center !important;
    display: block;
    width: 100%;
    color: #000000;
}

.home-azibo-partner-sub {
    text-align: center;
    color: #000000;
}

.home-azibo-partner-body {
    text-align: left;
    color: #000000;
}

.home-azibo-heading-spaced {
    margin-top: 22px;
}


.home-azibo-subhead {
    margin-bottom: 24px;
}



.home-azibo-divider {
    border: 0;
    border-top: 1px solid #000000;
    margin: 16px auto 18px;
    width: min(720px, 100%);
}

.esg-intro-card-detail p:last-child {
    margin-bottom: 0;
}

.esg-intro-card-detail ul {
    margin: 6px 0 12px 10px;
    padding: 0;
}

.esg-intro-card-detail ul:last-child {
    margin-bottom: 0;
}

.esg-intro-card-detail li {
    margin: 0 0 6px;
    font-size: 15px;
}

/* Match bullet styling for first subheading content */
.esg-intro-card .esg-detail-copy ul {
    margin: 6px 0 12px 10px;
    padding: 0;
    list-style: none;
}

.esg-intro-card .esg-detail-copy ul li {
    position: relative;
    padding-left: 22px;
    margin: 0 0 10px;
    color: #000000;
    font-size: 15px;
    line-height: 1.4;
    word-spacing: 4px;
}

.esg-intro-card .esg-detail-copy ul li:last-child {
    margin-bottom: 0;
}

.esg-intro-card .esg-detail-copy ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, #FA9602, #f5a94e);
    border-radius: 50%;
}

.esg-intro-card .esg-detail-copy ul li::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 10px;
    transform: translateY(-50%);
    width: 2px;
    height: 2px;
    background: #ffffff;
    border-radius: 50%;
}

.info-card,
.info-card-trigger {
    position: relative;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    background-image: url('../images/boxes-image.jfif');
    background-size: 100% 180px;
    background-position: top center;
    background-repeat: no-repeat;
    background-color: #ffffff;
    box-shadow: 0 2px 12px rgba(2, 15, 66, 0.10);
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.info-card-trigger {
    cursor: pointer;
}

.info-card--core-esg,
.info-card--core-esg.info-card-trigger {
    background-image: url('../images/Core ESG Services.png');
}

.info-card--esg-maturity,
.info-card--esg-maturity.info-card-trigger {
    background-image: url('../images/ESG Maturity Model for Apparel Manufacturers.png');
}

.info-card--esg-services,
.info-card--esg-services.info-card-trigger {
    background-image: url('../images/ESG Services for Apparel Manufacturers.png');
}

.info-card--esg-azibo,
.info-card--esg-azibo.info-card-trigger {
    background-image: url('../images/Why Choose Azibo Infotech for ESG Consulting.png');
}

.info-card--eu-frameworks,
.info-card--eu-frameworks.info-card-trigger {
    background-image: url('../images/From Global Frameworks to Practical ESG Implementation.png');
}

.info-card--eu-roadmap,
.info-card--eu-roadmap.info-card-trigger {
    background-image: url('../images/Global Apparel ESG Compliance Roadmap (2025 – 2035).png');
}

.info-card--eu-ecosystem,
.info-card--eu-ecosystem.info-card-trigger {
    background-image: url('../images/Global ESG Framework Ecosystem.png');
}

.info-card--eu-tiruppur,
.info-card--eu-tiruppur.info-card-trigger {
    background-image: url('../images/How Tiruppur Can Become the World’s First ESG-Transparent Apparel Cluster.png');
}

.info-card--cluster-tiruppur,
.info-card--cluster-tiruppur.info-card-trigger {
    background-image: url('../images/Why Tiruppur Can Become the World’s First ESG-Transparent Apparel Cluster.png');
}

.info-card--resource-roadmap,
.info-card--resource-roadmap.info-card-trigger {
    background-image: url('../images/90-Day ESG Implementation Roadmap for Apparel Exporters-7.png');
}

.info-card--resource-emissions,
.info-card--resource-emissions.info-card-trigger {
    background-image: url('../images/Capturing Scope 1, Scope 2, and Scope 3 Emissions Data.png');
}

.info-card--resource-mandatory,
.info-card--resource-mandatory.info-card-trigger {
    background-image: url('../images/Why ESG Is Becoming Mandatory for Apparel Exporters.png');
}

.info-card--resource-carbon-guide,
.info-card--resource-carbon-guide.info-card-trigger {
    background-image: url('../images/Carbon Accounting Guide for Manufacturing Companies.png');
}

.info-card--resource-due-diligence,
.info-card--resource-due-diligence.info-card-trigger {
    background-image: url('../images/ESG Due Diligence Guide for Exporters.png');
}

.info-card--resource-implementation-guide,
.info-card--resource-implementation-guide.info-card-trigger {
    background-image: url('../images/ESG Implementation Guide.png');
}

.info-card--resource-reporting-guide,
.info-card--resource-reporting-guide.info-card-trigger {
    background-image: url('../images/ESG Reporting Framework Guide.png');
}

.info-card--resource-eu-regs-guide,
.info-card--resource-eu-regs-guide.info-card-trigger {
    background-image: url('../images/EU Sustainability Regulations Guide for Asian Manufacturers.png');
}

.info-card--resource-scope3-guide,
.info-card--resource-scope3-guide.info-card-trigger {
    background-image: url('../images/Scope 3 Emissions Guide for Apparel Supply Chains.png');
}

.info-card--case-bangladesh,
.info-card--case-bangladesh.info-card-trigger {
    background-image: url('../images/Bangladesh Knitwear Industry.png');
}

.info-card--case-vietnam,
.info-card--case-vietnam.info-card-trigger {
    background-image: url('../images/Vietnam Knitwear Industry.png');
}

.info-card--case-china,
.info-card--case-china.info-card-trigger {
    background-image: url("../images/China's Knitwear Industry.png");
}



/* No full overlay ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â image shows at top, white content below */
.info-card::before,
.info-card-trigger::before {
    content: none;
}

.info-card {
    padding: 22px;
    padding-top: 196px;
}

.info-card-trigger {
      width: 100%;
      padding: 22px;
      padding-top: 196px;
      text-align: left;
      font: inherit;
      color: inherit;
      cursor: pointer;
      border: none;
      text-decoration: none;
  }

.info-card p {
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.info-card-readmore {
    display: inline-flex;
    align-items: end;
    gap: 8px;
    cursor: pointer;
    margin-top: 12px;
    flex: 1;
    padding: 0;
    border: none;
    outline: none;
    box-shadow: none;
    border-radius: 0;
    background: transparent;
    color: #FA9602;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0;
    transition: color 0.2s ease;
}

.eu-compliance-page .info-card-readmore-toggle {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    text-align: left;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
}

.eu-compliance-page .info-card-readmore-toggle:focus {
    outline: none;
}

.eu-compliance-page .info-card-readmore-toggle:focus .info-card-readmore {
    outline: 2px solid var(--brand-navy);
    outline-offset: 4px;
    border-radius: 3px;
    color: #011344;
}

.info-card-trigger:hover .info-card-readmore {
    color: #0B57D0;
}

.info-card-readmore:focus {
    outline: 2px solid var(--brand-navy);
    outline-offset: 4px;
    border-radius: 3px;
    color: #011344;
}

.info-card-title:focus,
.info-card-title.is-back-focus {
    outline: none;
}

.esg-section-title:focus {
    outline: none;
}

.info-card-readmore-arrow {
    display: inline-block;
    transition: transform 0.2s ease;
}

.info-card-trigger:hover .info-card-readmore-arrow {
    transform: translateX(3px);
}

.info-card-trigger:hover {
    transform: translateY(-2px);
    box-shadow: 0 28px 64px rgba(2, 15, 66, 0.22);
}

.info-card-trigger:hover {
    transform: translateY(-2px);
    box-shadow: 0 28px 64px rgba(2, 15, 66, 0.22);
}

.card-grid[hidden],
.esg-detail-panels[hidden],
.esg-detail-panel[hidden] {
    display: none !important;
}


.esg-detail-panel-title {
    font-size: 36px;
    font-weight: 650;
    margin-bottom: 24px;
    line-height: 1.3;
    margin-top: 10px;
    word-spacing: 2px;
    text-align: left;
    /* color: #011344; */
    color: black;
}


/* ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ TOC Two-Column Layout ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ */
.esg-detail-layout {
    display: flex;
    align-items: flex-start;
    gap: 48px;
    margin-top: 12px;
}

.esg-submenu-sidebar {
    width: 280px;
    flex-shrink: 0;
    position: sticky;
    top: 88px;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(1, 19, 68, 0.18), 0 2px 8px rgba(0, 95, 219, 0.12);
    overflow: hidden;
    max-height: calc(100vh - 150px);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 95, 219, 0.15);
    background: #ffffff;
}

.esg-submenu-title {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 13px 14px;
    background: #011344;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 12px;
}

.esg-submenu-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.28s ease;
}

.esg-submenu-body.is-open {
    max-height: 900px;
}

.esg-submenu-list {
    list-style: none;
    margin: 0;
    padding: 10px;
    display: grid;
    gap: 8px;
}

.esg-submenu-group {
    border-top: 1px solid rgba(1, 19, 68, 0.08);
}

.esg-submenu-group:first-child {
    border-top: none;
}

.esg-submenu-group-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    padding: 10px 12px;
    border: none;
    background: transparent;
    color: #011344;
    font-weight: 700;
    font-size: 14px;
    text-align: left;
    cursor: pointer;
}

.esg-submenu-group .esg-submenu-icon {
    width: 12px;
    height: 12px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
}

.esg-submenu-group-toggle[aria-expanded="true"] .esg-submenu-icon {
    transform: rotate(-135deg);
}

.esg-submenu-group-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.28s ease;
}

.esg-submenu-group.is-open .esg-submenu-group-body {
    max-height: 600px;
}

.esg-submenu-link {
    display: block;
    width: 100%;
    text-align: left;
    padding: 8px 10px;
    border-radius: 8px;
    border: none;
    background: rgba(11, 87, 208, 0.06);
    color: #011344;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.esg-submenu-anchor {
    display: block;
    width: 100%;
    text-align: left;
    padding: 8px 10px;
    border-radius: 8px;
    background: rgba(11, 87, 208, 0.06);
    color: #011344;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.esg-submenu-anchor:hover,
.esg-submenu-anchor:focus-visible {
    background: rgba(11, 87, 208, 0.12);
    color: #0B57D0;
    transform: translateY(-1px);
}

.esg-submenu-anchor.is-active {
    background: #011344;
    color: #ffffff;
}

.esg-submenu-link:hover,
.esg-submenu-link:focus-visible {
    background: rgba(11, 87, 208, 0.12);
    color: #0B57D0;
    transform: translateY(-1px);
}

.esg-submenu-link.is-active {
    background: #011344;
    color: #ffffff;
}

.esg-toc-sidebar {
    width: 280px;
    flex-shrink: 0;
    position: sticky;
    top: 88px;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(1, 19, 68, 0.18), 0 2px 8px rgba(0, 95, 219, 0.12);
    overflow: hidden;
    transition: width 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease;
    max-height: calc(100vh - 150px);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 95, 219, 0.15);
}

.esg-toc-sidebar:not(.is-hidden):hover {
    box-shadow: 0 12px 40px rgba(1, 19, 68, 0.22), 0 4px 12px rgba(0, 95, 219, 0.18);
}

.esg-toc-sidebar.is-hidden {
    width: 0;
    opacity: 0;
    pointer-events: none;
    overflow: hidden;
}

.esg-detail-layout:has(.esg-toc-sidebar.is-hidden) {
    gap: 0;
}

/* Header bar */
.esg-toc-sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 14px;
    background: var(--brand-navy-blue);
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(11, 87, 208, 0.28);
}

.esg-toc-heading {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #ffffff;
    opacity: 0.92;
    flex: 1;
    text-align: center;
}

/* Icon-only collapse button inside header */
.esg-toc-hide-btn {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    padding: 4px;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: background 0.18s ease, border-color 0.18s ease;
    line-height: 1;
}

.esg-toc-hide-btn:hover {
    background: rgba(255, 255, 255, 0.28);
    border-color: rgba(255, 255, 255, 0.55);
}

.esg-toc-hide-btn svg,
.esg-toc-show-btn svg {
    display: block;
}

/* Scrollable TOC body */
.esg-toc {
    padding: 8px 6px;
    overflow-y: auto;
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 100%);
    border-left: 3px solid var(--brand-navy-blue);
    flex: 1;
    text-align: left;
}

.esg-toc-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Level 1 ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â main section titles */
.esg-toc-item.esg-toc-level-1 {
    margin-bottom: 4px;
}

.esg-toc-item.esg-toc-level-1>.esg-toc-link {
    font-size: 14px;
    color: #000000;
    text-decoration: none;
    display: block;
    padding: 5px 8px 5px 8px;
    border-radius: 5px;
    border-left: none;
    transition: background 0.16s ease, color 0.16s ease;
    line-height: 1.4;
}

.esg-toc-item.esg-toc-level-1>.esg-toc-link:hover {
    background: rgba(11, 87, 208, 0.12);
    color: var(--brand-navy-blue);
    border-left: none;
}

.esg-toc-item.esg-toc-level-1>.esg-toc-link.is-active {
    background: rgba(11, 87, 208, 0.16);
    color: var(--brand-navy-blue);
    border-left: none;
    font-weight: 600;
}

/* Level 2 ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â sub-section (numbered/alpha style) */
.esg-toc-item.esg-toc-level-2 {
    margin-bottom: 3px;
}

.esg-toc-item.esg-toc-level-2>.esg-toc-link {
    font-size: 14px;
    color: #000000;
    text-decoration: none;
    display: block;
    padding: 4px 8px 4px 20px;
    border-radius: 4px;
    border-left: none;
    transition: background 0.16s ease, color 0.16s ease;
    line-height: 1.35;
}

.esg-toc-item.esg-toc-level-2>.esg-toc-link:hover {
    background: rgba(11, 87, 208, 0.12);
    color: var(--brand-navy-blue);
}

.esg-toc-item.esg-toc-level-2>.esg-toc-link.is-active {
    background: rgba(11, 87, 208, 0.16);
    color: var(--brand-navy-blue);
    font-weight: 600;
}

/* Level 3 ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â sub-sub (sm style) */
.esg-toc-item.esg-toc-level-3 {
    margin-bottom: 2px;
}

.esg-toc-item.esg-toc-level-3>.esg-toc-link {
    font-size: 13px;
    font-weight: 400;
    color: #333333;
    text-decoration: none;
    display: block;
    padding: 3px 8px 3px 32px;
    border-radius: 4px;
    transition: background 0.16s ease, color 0.16s ease;
    line-height: 1.35;
}

.esg-toc-item.esg-toc-level-3>.esg-toc-link:hover {
    background: rgba(11, 87, 208, 0.12);
    color: var(--brand-navy-blue);
}

.esg-toc-item.esg-toc-level-3>.esg-toc-link.is-active {
    background: rgba(11, 87, 208, 0.16);
    color: var(--brand-navy-blue);
    font-weight: 600;
}

/* Sidebar menu: disable justified text */
.esg-toc-list,
.esg-toc-link {
    text-align: left;
    text-justify: auto;
}

/* Content area */
.esg-detail-main {
    flex: 1;
    min-width: 0;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 24px rgba(1, 19, 68, 0.08), 0 1px 4px rgba(0, 95, 219, 0.06);
    border: 1px solid rgba(0, 95, 219, 0.10);
    padding: 24px 32px;
}

/* Icon-only expand button shown when sidebar is collapsed */
.esg-toc-show-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    padding: 6px 7px;
    background: var(--brand-navy-blue);
    color: #fff;
    border: none;
    border-radius: 7px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(1, 19, 68, 0.22);
    transition: background 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
    line-height: 1;
}

.esg-toc-show-btn:hover {
    background: linear-gradient(135deg, #FA9602 0%, #f5a94d 100%);
    box-shadow: 0 4px 14px rgba(239, 146, 40, 0.30);
    transform: translateY(-1px);
}

.esg-detail-phase[id] {
    scroll-margin-top: 25px;
}

.esg-detail-panel {
    position: relative;
    border-radius: 0;
    overflow: visible;
    background: transparent;
    box-shadow: none;
    border: none;
    padding: 0;
}

.esg-detail-copy {
    display: grid;
    gap: 0px;
    text-align: left;
    margin-bottom: 11px;
    margin-left: 16px;
    text-align: justify;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.esg-detail-copy h3 {
    margin: 0;
}

.esg-detail-copy p {
    margin: 1px 0 4px;
    color: #000000;
    font-size: 15px;
    line-height: 1.4;
    word-spacing: 5px;
}

.esg-detail-image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 12px 0 16px;
}

.esg-detail-link {
    color: #0B57D0;
}

.esg-detail-link-underline {
    text-decoration: underline;
    text-decoration-color: #0B57D0;
}

.esg-inline-link {
    color: #0B57D0;
    text-decoration: underline;
}

body.is-esg-detail-open .resources-subsection-back {
    display: none;
}

.esg-detail-main {
    min-width: 0;
}

.esg-detail-table {
    width: 100% !important;
    table-layout: fixed;
}

.esg-detail-table th,
.esg-detail-table td {
    word-break: break-word;
}

.esg-detail-copy p:last-child {
    margin-bottom: 0;
}

.esg-detail-result-body p+p {
    margin-top: 8px;
}

.esg-detail-divider {
    border: 0;
    border-top: 1px solid #1c1c1c;
    margin: 16px 0 8px;
}

.esg-detail-section-title {
    font-size: 24px;
    word-spacing: 2px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--brand-navy-blue);
    margin-bottom: 24px;
    text-align: justify;
}



.esg-detail-section-title-num {
    margin: 0;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.4;
    padding-bottom: 10px;
    color: var(--brand-navy-blue);
}

.esg-detail-section-title-alpha {
    margin: 0;
    font-size: 16px;
    font-weight: 650;
    word-spacing: 2px;
    line-height: 1.4;
    padding-bottom: 9px;
    color: var(--brand-navy-blue);
}

.esg-detail-section-title-sm {
    margin-bottom: 18px;
    font-size: 20px;
    font-weight: 650;
    line-height: 1.4;
    color: var(--brand-navy-blue);
}

.esg-detail-result-title {
    margin: 0;
    font-size: 23px;
    font-weight: 650;
    line-height: 1.3;
    word-spacing: 2px;
    color: var(--brand-navy-blue);
    text-align: center;
    padding-top: 18px;
    margin-top: 24px;
    border-top: 1px solid #000000;
    margin-bottom: 15px;
}

.esg-detail-result-title-plain {
    margin-top: 13px;
    margin-bottom: 15px;
    font-size: 23px;
    font-weight: 650;
    line-height: 1.3;
    color: var(--brand-navy-blue);
    scroll-margin-top: 8px;
}

.esg-detail-phase {
    display: grid;
    gap: 2px;
    padding-top: 12px;
}

.esg-detail-phase-indent {
    margin-left: 30px;
}


.esg-detail-label {
    color: var(--brand-black);
}

.esg-detail-copy p.esg-detail-label {
    margin-bottom: 8px;
    font-size: 17px;
    font-weight: 600;
    color: var(--brand-navy-blue);
}

.esg-detail-labeled-item {
    margin: 0 0 10px;
    line-height: 1.4;
}

.esg-detail-labeled-item strong {
    color: var(--brand-navy-blue);
}

.esg-detail-label+.esg-detail-list,
.esg-detail-label+ul,
.esg-detail-label+ol {
    margin-top: 2px;
}

.esg-detail-list {
    margin: 2px 0 0 20px;
    padding: 0;
    list-style: none;
}

.esg-detail-list li {
    margin: 0 0 8px;
    color: #000000;
    font-size: 15px;
    line-height: 1.4;
    word-spacing: 3px;
    padding-left: 22px;
    position: relative;
    transition: color 0.2s ease;
}

.esg-detail-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, #FA9602, #f5a94e);
    border-radius: 50%;
    box-shadow: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.esg-detail-list li::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 10px;
    transform: translateY(-50%);
    width: 2px;
    height: 2px;
    background: #ffffff;
    border-radius: 50%;
}

.esg-detail-list li:hover::before {
    transform: translateY(-50%);
    background: linear-gradient(135deg, #d97d10, #FA9602);
    box-shadow: none;
}

.esg-detail-list li:last-child {
    margin-bottom: 0;
}

.esg-detail-list+p {
    margin-top: 8px;
}

ol.esg-detail-list>li::before,
ol.esg-detail-list>li::after {
    display: none;
}

ol.esg-detail-list>li {
    padding-left: 6px;
}

.esg-detail-list-ordered {
    list-style-type: decimal;
    padding-left: 20px;
}

.esg-detail-list-ordered>li {
    padding-left: 6px;
}

.esg-detail-list-ordered>li::before,
.esg-detail-list-ordered>li::after {
    display: none;
}

.esg-detail-list-ordered+p {
    margin-top: 8px;
}

.esg-detail-list-roman {
    list-style-type: lower-roman;
    padding-left: 20px;
}

.esg-detail-list-roman>li {
    padding-left: 6px;
}

.esg-detail-list-roman>li::before,
.esg-detail-list-roman>li::after {
    display: none;
}

.esg-detail-sublist {
    list-style: none;
    margin: 8px 0 4px 20px;
    padding: 0;
}

.esg-detail-sublist li {
    margin: 0 0 6px;
    font-size: 15px;
    color: #000000;
    line-height: 1.4;
    padding-left: 22px;
    position: relative;
    transition: color 0.2s ease;
}

.esg-detail-sublist li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, #FA9602, #f5a94e);
    border-radius: 50%;
    box-shadow: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.esg-detail-sublist li::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 2px;
    background: #ffffff;
    border-radius: 50%;
}

.esg-detail-sublist li:hover::before {
    transform: translateY(-50%);
    background: linear-gradient(135deg, #d97d10, #FA9602);
    box-shadow: none;
}

.esg-detail-group-heading {
    font-size: 15px;
    font-weight: 600;
    color: var(--brand-navy-blue);
    margin: 3px 0 10px;
}

.esg-detail-sublist-group {
    margin-top: 0;
    margin-left: 50px;
}

.esg-detail-formula {
    font-size: 15px;
    font-style: italic;
    color: #000000;
    background: #f4f6f9;
    border-left: 3px solid var(--brand-black);
    padding: 6px 12px;
    margin: 6px 0 12px;
    line-height: 1.4;
}

.esg-detail-table {
    width: 100%;
    border-collapse: collapse;
    margin: 10px 0 14px;
    font-size: 15px;
}

.esg-detail-table th,
.esg-detail-table td {
    border: 1px solid #c8cdd5;
    padding: 7px 12px;
    text-align: left;
    color: #000000;
    line-height: 1.4;
}

.esg-detail-table thead th {
    background: #f0f3f7;
    font-weight: 600;
    color: var(--brand-navy-blue);
}

.esg-detail-table tbody tr:nth-child(even) {
    background: #f8f9fb;
}

.esg-detail-cta-copy {
    display: grid;
    gap: 0;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid #000000;
}

.esg-detail-cta-copy+.esg-detail-list {
    margin-top: 16px;
}

.esg-detail-cta-title {
    margin: 0;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--brand-black);
    margin-bottom: 24px;
}

.esg-detail-list li:last-child {
    margin-bottom: 0;
}

.esg-detail-list+p {
    margin-top: 8px;
}



.home-intro-section [data-esg-section-heading][hidden] {
    display: none !important;
}

.esg-detail-section-cta {
    display: flex;
    justify-content: flex-end;
    margin-top: 12px;
}

.esg-detail-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #011344;
    text-decoration: none;
    border: 1px solid #011344;
    padding: 6px 18px;
    border-radius: 3px;
    transition: background 0.2s ease, color 0.2s ease;
}

.esg-detail-learn-more:hover {
    background: #011344;
    color: #ffffff;
}

.esg-detail-actions {
    display: flex;
    margin-top: 28px;
    gap: 14px;
    margin-bottom: 10px;
}

.esg-detail-actions .request-form-submit,
.esg-detail-actions .request-form-cancel {
    background: #ebecec;
    color: #022B61;
    border: none;
    border-radius: 3px !important;
    box-shadow: none;
    min-height: 35px;
    padding: 0 20px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.esg-detail-actions .request-form-submit:hover,
.esg-detail-actions .request-form-cancel:hover {
    background: #011344;
    color: #ffffff;
}

.esg-detail-actions .request-form-submit {
    margin-left: auto;
}


.split-layout,
.two-column {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    align-items: start;
}

.pill-grid {
    /* display: flex;
    flex-wrap: wrap; */
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    align-content: center;
    max-width: 640px;
}

.esg-solutions-page .pill-grid {
    grid-template-columns: repeat(auto-fit, minmax(min-content, max-content));
    justify-content: start;
    max-width: none;
}

.esg-solutions-page .coverage-only-block .home-coverage-pills {
    max-width: 1230px;
}

.pill-grid span,
.esg-pill-link {
    display: inline-flex;
    align-items: center;
    min-height: 56px;
    padding: 9px;
    border-radius: 3px;
    color: var(--brand-black);
    background: #fff;
    border: 1px solid rgba(3, 27, 104, 0.12);
    box-shadow: 0 4px 14px rgba(3, 27, 104, 0.06);
    line-height: 1.4;
}

.esg-pill-link {
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

button.esg-pill-link {
    font-family: inherit;
    font-size: inherit;
    text-align: center;
}

.esg-pill-link:hover {
    background: #e3e3e4;
    color: black;
    border-color: #e3e3e4;
    box-shadow: 0 4px 14px rgba(11, 87, 208, 0.2);
}

.check-list {
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 28px;
    margin-top: 8px;
    color: var(--text-soft);
    line-height: 1.7;
}

.check-list li::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-accent), #d4ef81);
    box-shadow: 0 0 0 4px rgba(159, 203, 60, 0.18);
}

.inner-page {
    min-height: 60vh;
}

body.page-erp-software .inner-page {
    margin-top: -109px;
}

.page-hero {
    position: relative;
    overflow: hidden;
    background-color: #ffffff;
    color: #fff;
    background:
        linear-gradient(180deg, rgba(2, 10, 48, 0.5), rgba(2, 10, 48, 0.5)),
        url('../images/azibo-banner.png') center/cover no-repeat;
    margin-top: 1px;
    padding: 46px 0 211px;
}

.page-hero-eu {
    background: url('../../img/EU Compliance Hub.png') center top/auto no-repeat;
    filter: contrast(1.1) saturate(1.12) brightness(1.04);
    padding: 72px 0 384px;
}

.page-hero-eu .wrap {
    width: min(1180px, calc(100% - 40px));
}

.page-hero-eu .hero-banner-title {
    margin: 0 0 12px;
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.35;
    color: var(--brand-navy-deep);
}

.page-hero-eu h1 {
    font-size: 40px;
    max-width: none;
}

.page-hero-eu .lead {
    max-width: none;
}

.page-hero-copy-stack {
    margin-top: 12px;
    max-width: none;
}

.page-hero-copy-stack .lead {
    margin: 0 0 14px;
}

.page-hero-copy-stack .lead:last-child {
    margin-bottom: 0;
}

.eu-compliance-page {
    background:
        radial-gradient(circle at top right, rgba(12, 56, 184, 0.08), transparent 28%),
        linear-gradient(180deg, #f7f9ff 0%, #eef3ff 100%);
}

.cluster-intro-section {
    padding-top: 20px;
}

.compliance-section-shell {
    padding-top: 0;
}

.compliance-layout {
    display: grid;
    gap: 28px;
}

.compliance-intro-card {
    padding: 24px 28px;
    border-radius: 26px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(237, 243, 255, 0.96));
    border: 1px solid rgba(3, 27, 104, 0.12);
    box-shadow: 0 18px 40px rgba(2, 15, 66, 0.12);
}

.cluster-intro-card {
    padding: 24px 28px;
    border-radius: 26px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(237, 243, 255, 0.96));
    border: 1px solid rgba(3, 27, 104, 0.12);
    box-shadow: 0 18px 40px rgba(2, 15, 66, 0.12);
}

.compliance-intro-card p {
    margin: 0 0 14px;
    color: var(--text-main);
    font-size: 1.04rem;
    line-height: 1.42;
}

.cluster-intro-card p {
    margin: 0 0 14px;
    color: var(--text-main);
    font-size: 1.04rem;
    line-height: 1.42;
}

.compliance-intro-card p:last-child {
    margin-bottom: 0;
}

.cluster-intro-card p:last-child {
    margin-bottom: 0;
}

.eu-compliance-page .home-intro-section .card-grid {
    margin-top: 24px;
}

.eu-compliance-page > .section:not(.page-hero):not(.compliance-section-shell) {
    padding: 24px 0;
}

.cluster-page > .section:not(.page-hero):not(.cluster-section-shell) {
    padding: 24px 0;
}

.esg-solutions-page .resources-section-shell {
    padding-top: 24px;
    padding-bottom: 24px;
}

.esg-solutions-page .resources-link-grid {
    margin-top: 24px;
    margin-bottom: 24px;
}

.esg-solutions-page .home-intro-section {
    padding-top: 24px;
}

.esg-solutions-page .home-intro-section .card-grid {
    margin-top: 24px;
}

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

.compliance-quicklink {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    align-items: center;
    gap: 30px;
    padding: 22px 24px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(241, 246, 255, 0.96));
    border: 1px solid rgba(3, 27, 104, 0.12);
    box-shadow: 0 18px 36px rgba(2, 15, 66, 0.1);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.compliance-quicklink:hover,
.compliance-quicklink:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(12, 56, 184, 0.28);
    box-shadow: 0 24px 40px rgba(2, 15, 66, 0.14);
    outline: none;
}

.compliance-quicklink-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    border-radius: 22px;
    color: #011344;
    background: linear-gradient(145deg, rgba(159, 203, 60, 0.18), rgba(255, 255, 255, 0.95));
    border: 1px solid rgba(159, 203, 60, 0.35);
}

.compliance-quicklink-icon svg {
    width: 30px;
    height: 30px;
    display: block;
}

.compliance-quicklink-copy {
    display: grid;
    gap: 6px;
}

.compliance-quicklink-copy strong {
    color: var(--text-main);
    font-size: 1.02rem;
    line-height: 1.4;
}

.compliance-quicklink-copy span {
    color: var(--text-soft);
    line-height: 1.7;
}

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

.compliance-grid-single {
    grid-template-columns: 1fr;
}

.compliance-panel {
    border-radius: 0;
    overflow: hidden;
    border: 1px solid rgba(3, 27, 104, 0.12);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 22px 48px rgba(2, 15, 66, 0.12);
}

.compliance-panel-head {
    padding: 22px 26px 16px;
    background: linear-gradient(135deg, rgba(1, 19, 68, 0.98), rgba(12, 56, 184, 0.9));
    color: #fff;
}

.compliance-kicker {
    display: inline-block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.75rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.compliance-panel-head h2 {
    margin: 0;
    font-size: 1.55rem;
    line-height: 1.26;
    color: #fff;
}

.compliance-panel-plain {
    border-radius: 22px;
}

.compliance-panel-head-plain {
    padding: 26px 26px 12px;
    background: transparent;
    border-bottom: 1px solid rgba(3, 27, 104, 0.1);
    color: inherit;
}

.compliance-panel-head-plain h2 {
    color: #011344;
    font-size: 1.45rem;
}

.page-hero-cluster {
    background: url('../../img/EU Cluster Solutions.png') center top/auto no-repeat;
    filter: contrast(1.1) saturate(1.12) brightness(1.04);
    padding: 58px 0 397px;
}


.page-hero-cluster .eyebrow {
    margin-bottom: 12px;
}

.page-hero-cluster h1 {
    max-width: none;
    font-size: 40px;
    line-height: 1.12;
}

.cluster-page {
    background:
        linear-gradient(180deg, #fbfcff 0%, #eef3ff 100%);
}

.cluster-section-shell {
    padding-top: 0;
}

.cluster-layout {
    display: grid;
    gap: 28px;
}

.cluster-link-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.cluster-link-card {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    align-items: center;
    column-gap: 30px;
    row-gap: 4px;
    padding: 24px 24px 22px;
    border-radius: 26px;
    background: linear-gradient(145deg, #ffffff, #f2f6ff);
    border: 1px solid rgba(3, 27, 104, 0.1);
    box-shadow: 0 18px 44px rgba(2, 15, 66, 0.1);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.cluster-link-card:hover,
.cluster-link-card:focus-visible {
    transform: translateY(-3px);
    box-shadow: 0 24px 48px rgba(2, 15, 66, 0.14);
    border-color: rgba(12, 56, 184, 0.26);
    outline: none;
}

.cluster-link-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    border-radius: 22px;
    margin-bottom: 0;
    grid-row: 1 / span 2;
    color: #011344;
    background: linear-gradient(145deg, rgba(159, 203, 60, 0.18), rgba(255, 255, 255, 0.95));
    border: 1px solid rgba(159, 203, 60, 0.35);
}

.cluster-link-icon svg {
    width: 30px;
    height: 30px;
    display: block;
}

.cluster-link-card strong {
    display: block;
    margin-bottom: 0;
    color: #011344;
    font-size: 1.15rem;
    line-height: 1.4;
}

.cluster-link-card p {
    margin: 0;
    grid-column: 2;
    color: var(--text-soft);
    line-height: 1.42;
}

.cluster-stack {
    display: grid;
    gap: 26px;
}

.cluster-card {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 0;
    overflow: hidden;
    border-radius: 0;
    background: #fff;
    border: 1px solid rgba(3, 27, 104, 0.1);
    box-shadow: 0 20px 48px rgba(2, 15, 66, 0.1);
}

.cluster-card-mark {
    display: flex;
    padding: 0;
    background: #9fcb3c;
    color: #fff;
}

.cluster-card-body {
    padding: 28px 30px 30px;
}

.cluster-card-body h2 {
    margin: 0 0 14px;
    color: #011344;
    font-size: 1.6rem;
    line-height: 1.28;
}

.cluster-card-body p {
    margin: 0 0 14px;
    color: var(--text-main);
    line-height: 1.84;
}

.cluster-list {
    margin: 10px 0 0;
    padding: 0;
    list-style: none;
}

.cluster-list li {
    position: relative;
    margin: 0 0 12px;
    padding-left: 24px;
    color: var(--text-soft);
    line-height: 1.78;
}

.cluster-list li::before {
    content: "";
    position: absolute;
    top: 12px;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 3px;
    background: #9fcb3c;
    box-shadow: 0 0 0 4px rgba(159, 203, 60, 0.16);
}

.cluster-after {
    margin-top: 12px;
}

.cluster-page-submenu .cluster-stack {
    gap: 28px;
}

.cluster-page-submenu .cluster-card {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
    border: 1px solid rgba(3, 27, 104, 0.09);
    box-shadow: 0 24px 54px rgba(2, 15, 66, 0.08);
}

.cluster-page-submenu .cluster-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 10px;
    background: linear-gradient(180deg, #011344 0%, #0c2b76 100%);
}

.cluster-page-submenu .cluster-card-mark {
    display: none;
}

.cluster-page-submenu .cluster-card-body {
    padding: 30px 34px 32px 42px;
}

.cluster-section-head {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    margin-bottom: 18px;
}

.cluster-section-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 20px;
    color: #011344;
    background: linear-gradient(145deg, rgba(159, 203, 60, 0.2), rgba(255, 255, 255, 0.98));
    border: 1px solid rgba(159, 203, 60, 0.34);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.cluster-section-icon svg {
    width: 30px;
    height: 30px;
    display: block;
}

.cluster-section-copy {
    min-width: 0;
}

.cluster-section-tag {
    display: inline-flex;
    align-items: center;
    margin-bottom: 8px;
    padding: 7px 12px;
    border-radius: 3px;
    background: rgba(159, 203, 60, 0.14);
    color: #5f8217;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.cluster-page-submenu .cluster-card-body h2 {
    margin: 0;
    font-size: 1.72rem;
    line-height: 1.22;
}

.cluster-page-submenu .cluster-card-body p {
    color: #243867;
}

.cluster-page-submenu .cluster-list {
    margin-top: 12px;
}

.cluster-page-submenu .cluster-list li {
    color: #4b5f89;
}

.page-hero-resources {
    background: url('../../img/Resources.png') center top/auto no-repeat;
    filter: contrast(1.1) saturate(1.12) brightness(1.04);
    height: 455px;
    padding: 0;
}

.esg-solutions-page .page-hero-resources {
    background: url('../../img/ESG Solutions.png') center top/auto no-repeat;
    filter: contrast(1.1) saturate(1.12) brightness(1.04);
    height: 455px;
    padding: 0;
}

.page-hero-core-services {
    background:
        linear-gradient(135deg, rgba(2, 10, 48, 0.14), rgba(12, 56, 184, 0.08)),
        url('../images/banner2.png') center top/cover no-repeat;
    filter: contrast(1.1) saturate(1.12) brightness(1.04);
    padding: 62px 0 56px;
}

.page-hero-core-services h1 {
    max-width: none;
    font-size: 40px;
    line-height: 1.12;
}

.page-hero-resources h1 {
    max-width: none;
    font-size: 40px;
    line-height: 1.12;
}

.resources-page {
    background:
        linear-gradient(180deg, #f8fbff 0%, #eef2ff 100%);
}

.resources-section-shell {
    padding-top: 42px;
}

.resources-layout {
    display: grid;
    gap: 26px;
}

.resources-link-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.resources-subsection-heading {
    font-size: 36px;
    font-weight: 650;
    color: #000000;
    margin: 0 0 0px;
    text-align: center;
}

body.page-erp-software.is-esg-detail-open .erp-subsection-title {
    display: none;
}

.home-intro-section .resources-link-grid {
    margin-top: 35px;
    margin-bottom: 28px;
}

.resources-link-card {
    display: grid;
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    padding: 24px 24px 22px;
    border-radius: 26px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 255, 0.98));
    border: 1px solid rgba(3, 27, 104, 0.1);
    box-shadow: 0 18px 40px rgba(2, 15, 66, 0.1);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.resources-link-card:hover,
.resources-link-card:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 24px 46px rgba(2, 15, 66, 0.14);
    border-color: rgba(159, 203, 60, 0.38);
    outline: none;
}

.erp-link-card-trigger {
    cursor: pointer;
}

.erp-menu-link {
    width: 100%;
    border: 0;
    background: transparent;
    text-align: left;
    font: inherit;
    cursor: pointer;
}

.erp-result-title-center {
    text-align: center;
}

.erp-result-body-copy,
.erp-result-body-copy p {
    font-size: 15px;
}

body.page-erp-software [data-esg-card-grid][hidden],
body.page-erp-software [data-esg-detail-panels][hidden],
body.page-erp-software [data-esg-detail][hidden],
body.page-erp-software [data-intro-detail][hidden] {
    display: none !important;
}

.resources-link-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    border-radius: 22px;
    color: #011344;
    background: linear-gradient(145deg, rgba(159, 203, 60, 0.18), rgba(255, 255, 255, 0.95));
    border: 1px solid rgba(159, 203, 60, 0.35);
}

.resources-link-icon svg {
    width: 30px;
    height: 30px;
    display: block;
}

.resources-link-copy strong {
    display: block;
    margin-bottom: 8px;
    color: #011344;
    font-size: 1.12rem;
    line-height: 1.4;
}

.resources-link-copy p {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.78;
}

.resources-stack {
    display: grid;
    gap: 24px;
}

.resources-card {
    border-radius: 30px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(3, 27, 104, 0.1);
    box-shadow: 0 20px 46px rgba(2, 15, 66, 0.1);
}

.resources-card-head {
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    padding: 14px 18px 10px;
    border-bottom: 1px solid rgba(3, 27, 104, 0.08);
    background: linear-gradient(180deg, rgba(248, 251, 255, 0.98), rgba(255, 255, 255, 0.98));
}

.resources-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 74px;
    height: 74px;
    border-radius: 20px;
    color: #011344;
    background: linear-gradient(145deg, rgba(159, 203, 60, 0.22), rgba(255, 255, 255, 0.96));
    border: 1px solid rgba(159, 203, 60, 0.34);
}

.resources-card-icon svg {
    width: 32px;
    height: 32px;
    display: block;
}

.resources-kicker {
    display: inline-block;
    margin-bottom: 8px;
    color: #9fcb3c;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.resources-card-title h2 {
    margin: 0;
    color: #011344;
    font-size: 1.55rem;
    line-height: 1.28;
}

.resources-card-body {
    padding: 24px 28px 30px;
}

.resources-card-body p {
    margin: 0 0 14px;
    color: var(--text-main);
    line-height: 1.84;
}

.resources-list {
    margin: 10px 0 0;
    padding: 0;
    list-style: none;
}

.resources-list li {
    position: relative;
    margin: 0 0 12px;
    padding-left: 24px;
    color: var(--text-soft);
    line-height: 1.76;
}

.resources-list li::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, #FA9602, #f5a94e);
    border-radius: 50%;
    box-shadow: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.resources-list li::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 2px;
    background: #ffffff;
    border-radius: 50%;
}

.resources-list li:hover::before {
    transform: translateY(-50%);
    background: linear-gradient(135deg, #d97d10, #FA9602);
    box-shadow: none;
}

.resources-after {
    margin-top: 12px;
}

.resources-subhead {
    margin-bottom: 8px;
    color: #011344;
}

.resources-list-secondary {
    margin-top: 0;
}

.resources-subsection-back {
    display: flex;
    justify-content: flex-end;
    margin-top: 18px;
}

.resources-subsection-back .back-button {
    min-height: 34px;
    font-size: 16px;
    margin-top: 25px;
    background: var(--brand-navy-blue);
    border-color: var(--brand-navy-blue);
    box-shadow: 0 12px 26px rgba(1, 19, 68, 0.32);
}

.resources-subsection-back .back-button:hover {
    background: #0a4dbf !important;
    border-color: #0a4dbf !important;
    color: #ffffff !important;
}

.compliance-panel-body {
    padding: 24px 26px 28px;
}

.compliance-panel-body p {
    margin: 0 0 14px;
    color: var(--text-main);
    line-height: 1.82;
}

.compliance-panel-body p:last-of-type {
    margin-bottom: 0;
}

.compliance-list {
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
}

.compliance-list li {
    position: relative;
    margin: 0 0 12px;
    padding-left: 24px;
    color: var(--text-soft);
    line-height: 1.75;
}

.compliance-list li::before {
    content: "";
    position: absolute;
    top: 12px;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 3px;
    background: #9fcb3c;
    box-shadow: 0 0 0 4px rgba(159, 203, 60, 0.16);
}

.compliance-list li:last-child {
    margin-bottom: 0;
}

.compliance-list+p {
    margin-top: 12px;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(1, 7, 24, 0.18), rgba(1, 7, 24, 0.08));
}

.page-hero-about::before {
    display: none;
}


.banner-slider-section {
    position: relative;
    margin-top: -24px;
    padding-bottom: 16px;
}

.banner-slider-section--below-hero {
    margin-top: 75px;
}

.banner-slider {
    position: relative;
    margin: 0 auto;
    width: min(1560px, calc(100% - 40px));
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 25px;
    padding-bottom: 15px;
    background: #fff;
    border: 1px solid rgba(3, 27, 104, 0.16);
    box-shadow: 0 28px 60px rgba(2, 15, 66, 0.22);
    min-height: 0;
    overflow: hidden;
}

.slider-submenu-title {
    margin: 0 24px 10px;
    font-size: 25px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--brand-black);
}

.hero-banner-slider {
    margin-top: 0;
    transform: none;
    margin-top: calc(25px - var(--slider-overlap, 0px));
    margin-bottom: 0;
}

.hero-slider-actions {
    justify-content: center;
    position: relative;
    z-index: 2;
    padding-bottom: 8px;
}

.banner-slider-track {
    position: relative;
    min-height: 0;
    overflow: hidden;
    transition: height 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ Slide transition engine ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â zoom-fade ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ */
.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: scale(0.92) translateY(18px);
    transition: opacity 0.52s ease,
        transform 0.52s cubic-bezier(0.22, 1, 0.36, 1),
        visibility 0s linear 0.52s;
}

/* Active slide ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â in flow to give track its height */
.banner-slide.is-active {
    position: relative;
    opacity: 0;
    visibility: visible;
    pointer-events: none;
    transform: scale(0.92) translateY(18px);
    transition: none;
}

/* Active + visible ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â zooms into place */
.banner-slide.is-active.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1) translateY(0);
    transition: opacity 0.52s ease,
        transform 0.52s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Incoming from right (Next clicked) ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â small + shifted right */
.banner-slide.is-from-next {
    transform: scale(0.92) translateX(60px);
    opacity: 0;
    visibility: visible;
}

/* Incoming from left (Prev clicked) ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â small + shifted left */
.banner-slide.is-from-prev {
    transform: scale(0.92) translateX(-60px);
    opacity: 0;
    visibility: visible;
}

/* Outgoing to left ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â zooms out + drifts left */
.banner-slide.is-exiting.is-to-prev {
    position: absolute;
    visibility: visible;
    opacity: 0;
    transform: scale(1.04) translateX(-40px);
    transition: opacity 0.40s ease,
        transform 0.40s cubic-bezier(0.4, 0, 1, 1);
}

/* Outgoing to right ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â zooms out + drifts right */
.banner-slide.is-exiting.is-to-next {
    position: absolute;
    visibility: visible;
    opacity: 0;
    transform: scale(1.04) translateX(40px);
    transition: opacity 0.40s ease,
        transform 0.40s cubic-bezier(0.4, 0, 1, 1);
}

.banner-slide-title,
.banner-slide-body {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.38s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}


.banner-slide-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}

.banner-slide-actions .solid-button,
.banner-slide-actions .ghost-button {
    border-radius: 3px !important;
    background: #ebecec;
    color: #000000;
    border: none;
    box-shadow: none;
}

.banner-slide-actions .solid-button:hover,
.banner-slide-actions .ghost-button:hover {
    background: #011344;
    color: #ffffff;
}

.banner-slide.is-active.is-visible .banner-slide-title,
.banner-slide.is-active.is-visible .banner-slide-body {
    opacity: 1;
    transform: translateY(0);
}


.banner-slide-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}

.banner-slide.is-active.is-visible .banner-slide-title {
    transition-delay: 0.08s;
}

.banner-slide.is-active.is-visible .banner-slide-body {
    transition-delay: 0.16s;
}


.banner-slide h2,
.banner-slide-title {
    margin: 0 0 12px;
    color: var(--brand-black);
    font-size: clamp(1.35rem, 1.8vw, 1.75rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.banner-slide-title {
    font-size: 23px;
    line-height: 1.15;
    letter-spacing: 0;
    font-weight: 600;
    margin-right: 24px;
    margin-bottom: 20px;
    color: #0B57D0;
}

.banner-slide-body {
    flex: 0 0 auto;
    height: auto;
    min-height: 280px;
    padding-bottom: 20px;
    background: #f1f1f1;
    margin: 0 24px 24px 24px;
    text-align: justify;
    padding-top: 8px;
    padding-right: 45px;
    padding-left: 45px;
}


.banner-slide-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}

.banner-slide-body p {
    margin: 0 0 15px;
    color: #000000;
    font-size: 15px;
    line-height: 1.45;
    word-spacing: 5px;
}

.banner-slide-body p:last-child {
    margin-bottom: 0;
}

.banner-slide-body ul {
    margin: 6px 0 0 10px;
    padding: 0;
    list-style: none;
}

.banner-slide-body li {
    margin: 0 0 10px;
    color: #000000;
    font-size: 15px;
    line-height: 1.4;
    word-spacing: 5px;
    padding-left: 22px;
    position: relative;
    transition: color 0.2s ease;
}

.banner-slide-body li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, #FA9602, #f5a94e);
    border-radius: 50%;
    box-shadow: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.banner-slide-body li::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 2px;
    background: #ffffff;
    border-radius: 50%;
}

.banner-slide-body li:hover::before {
    transform: translateY(-50%);
    background: linear-gradient(135deg, #d97d10, #FA9602);
    box-shadow: none;
}

.banner-slide-body li:hover {
    color: #1a1a1a;
}

.banner-slide-body li:last-child {
    margin-bottom: 0;
}

.banner-slide-body ul+p {
    margin-top: 8px;
}

.slider-cta-area {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    padding-top: 8px;
    padding-bottom: 18px;
    padding-left: 18px;
    padding-right: 18px;
    background: #ffffff;
}

.slider-cta-area .solid-button,
.slider-cta-area .ghost-button {
    border-radius: 3px !important;
    background: var(--brand-navy-blue);
    color: #022B61;
    border: none;
    box-shadow: none;
    font-size: 15px;
}

.slider-cta-area .solid-button:hover,
.slider-cta-area .ghost-button:hover {
    background: #011344;
    color: #ffffff;
}

.explore-btn,
#explore-btn {
    background: #FA9602 !important;
    color: #ffffff !important;
    border-color: #FA9602 !important;
}

.explore-btn:hover,
#explore-btn:hover {
    background: #F09103 !important;
    border-color: #F09103 !important;
    color: #ffffff !important;
}

.js-request-modal {
    background: var(--brand-navy-blue);
    color: #ffffff !important;
    border-color: #0B57D0 !important;
}

.utility-nav .js-request-modal,
.footer-links .js-request-modal {
    background: transparent !important;
    color: #ffffff !important;
    border-color: transparent !important;
    box-shadow: none !important;
    min-height: auto;
    padding: 0 12px;
}

.utility-nav .js-request-modal.active {
    box-shadow: inset 0 -3px 0 0 #FA9602 !important;
    color: #FA9602 !important;
}

.utility-nav .js-request-modal.is-modal-active {
    box-shadow: inset 0 -3px 0 0 #FA9602 !important;
    color: #FA9602 !important;
}

.utility-nav .js-request-modal.active:hover {
    color: #FA9602 !important;
    background: transparent !important;
    border-color: transparent !important;
}

.utility-nav .js-request-modal.is-modal-active:hover {
    color: #FA9602 !important;
    background: transparent !important;
    border-color: transparent !important;
}

.home-button {
    background: var(--brand-navy-blue);
    color: #ffffff !important;
    border-color: #0B57D0 !important;
}

.utility-nav .js-request-modal:hover {
    background: transparent !important;
    border-color: transparent !important;
    color: #ffffff !important;
}

.footer-links .js-request-modal:hover {
    background: transparent !important;
    border-color: transparent !important;
    color: #dce6ff !important;
}

.utility-nav .js-request-modal.active:hover {
    color: #FA9602 !important;
}

.home-button:hover {
    background: #072a83 !important;
    border-color: #0B43D0 !important;
    color: #ffffff !important;
}

.banner-slider-inner {
    position: relative;
}

.banner-slider-controls {
    position: absolute;
    inset: 45% -4px auto -4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
}

.banner-slider-button {
    width: 56px;
    height: 56px;
    border: 1px solid rgba(255, 255, 255, 0.74);
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(230, 238, 255, 0.84));
    color: #FA9602;
    box-shadow: 0 18px 30px rgba(2, 15, 66, 0.16);
    cursor: pointer;
    pointer-events: auto;
    padding: 0;
    display: none;
    align-items: center;
    justify-content: center;
    position: relative;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.banner-slider-button::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0));
}

.banner-slider-button:hover,
.banner-slider-button:focus-visible {
    transform: translateY(-2px) scale(1.03);
    background: linear-gradient(135deg, #ffffff, rgba(239, 146, 40, 0.18));
    border-color: #FA9602;
    box-shadow: 0 24px 34px rgba(2, 15, 66, 0.2);
    outline: none;
}

.banner-slider-button:active {
    transform: translateY(0) scale(0.98);
}

.banner-slider-button-icon {
    width: 13px;
    height: 13px;
    border-top: 2.5px solid currentColor;
    border-right: 2.5px solid currentColor;
    position: relative;
    z-index: 1;
    transition: transform 0.24s ease;
}

.banner-slider-button-prev {
    --arrow-rotation: -135deg;
}

.banner-slider-button-next {
    --arrow-rotation: 45deg;
    margin-left: auto;
}

.banner-slider-button-prev .banner-slider-button-icon,
.banner-slider-button-next .banner-slider-button-icon {
    transform: rotate(var(--arrow-rotation)) translate(-1px, 1px);
}

.banner-slider-button:hover .banner-slider-button-icon,
.banner-slider-button:focus-visible .banner-slider-button-icon {
    transform: rotate(var(--arrow-rotation)) translate(0, 0) scale(1.08);
}

.banner-slider-dots {
    position: absolute;
    left: 50%;
    bottom: -34px;
    display: flex;
    align-items: center;
    gap: 8px;
    transform: translateX(-50%);
    pointer-events: auto;
}

.banner-slider-dot {
    width: 12px;
    height: 12px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(3, 27, 104, 0.18);
    cursor: pointer;
    transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.banner-slider-dot.is-active {
    background: var(--brand-accent);
    transform: scale(1.15);
    box-shadow: 0 0 0 5px rgba(159, 203, 60, 0.14);
}

.home-intro-section {
    margin-top: 0;

}

.stack-grid {
    display: grid;
    gap: 18px;
}

.solution-row {
    padding: 28px;
}

.contact-card {
    background: linear-gradient(180deg, #f9fbff, #eef3ff);
}

.site-footer {
    padding: 22px 0 24px;
    background: #011344;
    color: rgba(255, 255, 255, 0.82);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 14px;
    align-items: start;
}

.footer-brand {
    margin: 0 0 6px;
    color: #fff;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.footer-copy {
    margin: 0;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px 16px;
}

.footer-links a:hover {
    color: #fff;
}

.footer-copyright {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.92rem;
}

@media (max-width: 1180px) {
    .site-header .wrap {
        width: min(100% - 32px, 1120px);
    }

    .header-shell {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .brand {
        min-height: auto;
        justify-content: center;
        align-items: center;
        padding: 6px 12px 14px;
    }

    .header-panel {
        align-items: stretch;
        padding-top: 0;
        padding-bottom: 12px;
    }

    .utility-bar,
    .utility-nav,
    .account-nav,
    .product-nav {
        flex-wrap: wrap;
    }

    .utility-bar {
        gap: 10px 24px;
        width: 100%;
        margin-left: 0;
        padding-top: 8px;
        padding-bottom: 10px;
    }

    .product-nav {
        width: 100%;
        margin-left: 0;
    }
}

@media (max-width: 980px) {

    .hero-content,
    .card-grid,
    .compliance-grid,
    .compliance-quicklinks,
    .cluster-link-grid,
    .resources-link-grid,
    .split-layout,
    .two-column,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .banner-slider {
        padding: 28px 24px 22px;
    }

    .banner-slider-track {
        min-height: 0;
    }

    .hero-slider-wrap {
        padding: 26px 0 24px;
    }

    .hero-banner-copy {
        margin-bottom: 18px;
    }

    .hero-banner2 {
        min-height: calc(var(--hero-image-height) + 120px);
    }



    .hero-banner3,
    .hero-banner4 {
        min-height: calc(var(--hero-image-height) + 120px);
    }





    .page-hero-eu {
        padding: 56px 0 42px;
    }

    .page-hero-cluster {
        padding: 48px 0 40px;
    }

    .page-hero-resources {
        padding: 52px 0 42px;
    }

    .compliance-panel-head,
    .compliance-panel-body,
    .compliance-intro-card,
    .cluster-intro-card {
        padding-left: 22px;
        padding-right: 22px;
    }

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

    .cluster-card-mark {
        flex-direction: row;
        justify-content: flex-start;
        padding: 18px 22px;
    }

    .cluster-page-submenu .cluster-card-body {
        padding: 24px 22px 26px 28px;
    }

    .cluster-section-head {
        grid-template-columns: 1fr;
        gap: 14px;
        align-items: start;
    }

    .resources-card-head {
        grid-template-columns: 1fr;
        padding: 22px 22px 18px;
    }

    .resources-card-body {
        padding: 22px 22px 26px;
    }

    .footer-links {
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    .wrap {
        width: min(100% - 24px, 1120px);
    }

    .brand img {
        width: 150px;
        margin-top: -10px;
    }

    .esg-detail-layout {
        flex-direction: column;
    }

    .esg-toc-sidebar {
        width: 100%;
        position: static;
        max-height: none;
    }



    .utility-bar,
    .product-nav {
        padding-left: 12px;
        padding-right: 12px;
    }

    .utility-nav a,
    .account-nav a,
    .product-item>a,
    .product-submenu a {
        font-size: 14px;
    }

    .product-item>a {
        padding: 9px 28px 9px 12px;
    }

    .banner-slider-section {
        margin-top: 0;
    }

    .hero,
    .hero-banner2,
    .hero-banner3,
    .hero-banner4 {
        --slider-overlap: 0px;
    }

    .hero-slider-wrap {
        padding: 12px 0 0;
    }

    .hero-banner-copy h1 {
        font-size: 1.5rem;
    }

    .hero-banner2 {
        min-height: calc(var(--hero-image-height) + 120px);
    }



    .hero-banner3,
    .hero-banner4 {
        min-height: calc(var(--hero-image-height) + 120px);
    }





    .hero-banner-title {
        font-size: 1.5rem;
    }

    .banner-slide h2 {
        font-size: 1.7rem;
    }

    .banner-slide-body {
        padding: 20px 18px;
    }


    .banner-slide-actions {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
        margin-top: 8px;
    }

    .compliance-section-shell {
        padding-top: 36px;
    }

    .cluster-section-shell {
        padding-top: 32px;
    }

    .resources-section-shell {
        padding-top: 32px;
    }

    .compliance-panel-head h2 {
        font-size: 1.3rem;
    }

    .compliance-panel-body p,
    .compliance-list li,
    .compliance-intro-card p,
    .cluster-intro-card p {
        line-height: 1.42;
    }

    .cluster-card-body {
        padding: 22px 20px 24px;
    }

    .cluster-card-body h2 {
        font-size: 1.35rem;
    }

    .resources-link-card {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .resources-card-title h2 {
        font-size: 1.3rem;
    }

    .banner-slider-controls {
        inset: 42% -4px auto -4px;
    }

    .banner-slider-button {
        width: 44px;
        height: 44px;
    }

    .banner-slider-button-icon {
        width: 11px;
        height: 11px;
        border-top-width: 2px;
        border-right-width: 2px;
    }

    .hero-content,
    .section,
    .page-hero {
        padding-top: 56px;
        padding-bottom: 56px;
    }

    .info-card,
    .solution-row,
    .hero-card {
        padding: 22px;
    }
}

/* ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ Request Consultation Modal ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ */
.request-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(2, 10, 48, 0.55);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.request-modal-overlay.is-open {
    display: flex;
}

.request-modal {
    background: #ffffff;
    width: 100%;
    max-width: 900px;
    overflow: hidden;
    border-radius: 0;
    padding: 0;
    position: relative;
    box-shadow: 0 24px 60px rgba(2, 10, 48, 0.28);
    border-radius: 5px;
}

.request-modal-header {
    background: linear-gradient(135deg, #0B57D0 100%, #011344 0%, #0B43D0 100%);
    padding: 18px 28px 16px;
    position: relative;
}

.request-modal h2 {
    margin: 0 0 6px;
    font-size: 22px;
    color: #ffffff;
}

.request-modal-sub {
    margin: 0;
    font-size: 0.87rem;
    color: rgba(255, 255, 255, 0.88);
}

.request-form {
    padding: 20px 28px 18px;
}

.request-modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.6rem;
    line-height: 1;
    color: #ffffff;
    cursor: pointer;
    padding: 4px 8px;
    opacity: 0.85;
}

.request-modal-close:hover {
    color: #ffffff;
    opacity: 1;
}

.request-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
}

.request-form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 8px;
}

.request-form-group label {
    font-size: 14px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 4px;
    display: inline-block;
}

.request-form-group label span {
    color: #cc0000;
}

.request-form-group input,
.request-form-group select,
.request-form-group textarea {
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    font-family: inherit;
    color: #555555;
    background-color: #ffffff;
    background-image: none;
    border: 1px solid #cccccc;
    border-radius: 4px;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.request-form-group input:focus,
.request-form-group select:focus,
.request-form-group textarea:focus {
    border-color: #66afe9;
    background-color: #ffffff;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}

.request-form-group input::placeholder,
.request-form-group textarea::placeholder {
    color: #999999;
}

.request-form-group textarea {
    height: auto;
    resize: vertical;
}

.rf-field-error {
    display: none;
    font-size: 11px;
    color: #d93025;
    margin-top: 2px;
}

/* ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ Form Submit Loader ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ */
.request-form-submit.is-loading {
    pointer-events: none;
    opacity: 0.85;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.rf-spinner {
    display: none;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top-color: #fff;
    border-radius: 50%;
    animation: rfSpin 0.7s linear infinite;
    flex-shrink: 0;
}

.request-form-submit.is-loading .rf-spinner {
    display: inline-block;
}

@keyframes rfSpin {
    to {
        transform: rotate(360deg);
    }
}

.rf-field-error.is-visible {
    display: block;
}

.request-form-group input.is-invalid {
    border-color: #d93025;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px rgba(217, 48, 37, 0.35);
}

.request-form-actions {
    display: flex;
    gap: 8px;
    margin-top: 2px;
}

.request-form-submit,
.request-form-cancel {
    background: #ebecec;
    color: #022B61;
    border: none;
    border-radius: 3px !important;
    box-shadow: none;
    min-height: 35px;
    padding: 0 20px;
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
}

.request-form-submit:hover,
.request-form-cancel:hover {
    background: #011344;
    color: #ffffff;
}

/* Blue style: Send Message, Schedule ESG Consultation, Home button */
.request-form-submit,
a.request-form-cancel {
    background: #0B57D0 !important;
    color: #ffffff !important;
    border-color: #0B57D0 !important;
}

.request-form-submit:hover,
a.request-form-cancel:hover {
    background: #0B43D0 !important;
    border-color: #0B43D0 !important;
    color: #ffffff !important;
}

/* Orange style: Back button (full content) + Cancel button (form) */
button.request-form-cancel {
    background: #FA9602 !important;
    color: #ffffff !important;
    border-color: #FA9602 !important;
}

button.request-form-cancel:hover {
    background: #F09103 !important;
    border-color: #F09103 !important;
    color: #ffffff !important;
}

/* Orange style: custom CTA button */
.request-form-submit.esg-cta-orange {
    background: #FA9602 !important;
    color: #ffffff !important;
    border-color: #FA9602 !important;
}

.request-form-submit.esg-cta-orange:hover {
    background: #F09103 !important;
    border-color: #F09103 !important;
    color: #ffffff !important;
}

@media (max-width: 540px) {
    .request-form-row {
        grid-template-columns: 1fr;
    }

    .request-modal-header {
        padding: 16px 18px 14px;
    }

    .request-form {
        padding: 18px 18px 16px;
    }
}

/* ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ Mobile Navigation ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ */
@media (max-width: 768px) {
    .site-header {
        padding: 0;
    }

    .header-shell {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 16px;
        flex-wrap: nowrap;
    }

    .brand {
        min-height: auto;
        padding: 0;
        justify-content: flex-start;
    }

    .brand img {
        width: 130px;
    }

    .mobile-nav-toggle {
        display: flex;
    }

    .header-panel {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        border-top: 1px solid #d9d9d9;
        box-shadow: 0 8px 24px rgba(2, 10, 48, 0.14);
        z-index: 999;
        flex-direction: column;
        padding: 0 0 16px;
    }

    .header-panel.is-open {
        display: flex;
    }

    .utility-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        width: 100%;
        margin: 0;
        padding: 0;
        background: #011344;
    }

    .utility-nav,
    .account-nav {
        flex-wrap: wrap;
        gap: 0;
        width: 100%;
        padding: 6px 16px;
    }

    .utility-nav a,
    .account-nav a {
        padding: 8px 10px;
        font-size: 0.9rem;
    }

    .utility-nav a+a::before,
    .account-nav a+a::before {
        display: none;
    }

    .product-nav {
        flex-direction: column;
        width: 100%;
        margin: 0;
        background: #ffffff;
        padding: 0;
    }

    .product-item {
        width: 100%;
        border-bottom: 1px solid #ebebeb;
    }

    .product-item>a {
        display: flex;
        width: 100%;
        padding: 12px 16px;
        font-size: 0.95rem;
        font-weight: 600;
        color: #011344;
        justify-content: space-between;
    }

    .product-item+.product-item>a::before {
        display: none;
    }

    .product-item>a::after {
        display: none;
    }

    .product-submenu {
        position: static;
        display: none;
        flex-direction: column;
        box-shadow: none;
        border-top: 1px solid #ebebeb;
        background: #f7f9ff;
        padding: 4px 0;
        min-width: 0;
        width: 100%;
    }

    .product-item.is-open .product-submenu {
        display: flex;
    }

    .product-submenu a {
        padding: 10px 24px;
        font-size: 0.9rem;
        border-radius: 0;
    }

    /* Hero ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â remove overlap so title & slider don't crash */
    .hero,
    .hero-banner2,
    .hero-banner3,
    .hero-banner4 {
        --slider-overlap: 0px;
        min-height: 0;
        padding-top: 70px;
        padding-bottom: 16px;
    }

    .hero-slider-wrap {
        padding: 12px 0 0;
    }

    .hero-banner-copy {
        margin-bottom: 12px;
    }

    .hero-banner-slider {
        margin-top: 0;
    }

    .banner-slider-section {
        margin-top: 0;
    }

    .hero-banner-title {
        font-size: 1.15rem;
        padding: 0 12px;
        text-align: center;
    }

    /* Banner slider */
    .banner-slider {
        padding: 16px 12px 14px;
    }

    .banner-slide-body {
        margin: 0 8px 12px;
        padding: 18px 16px 24px;
        min-height: 0;
    }

    .banner-slide-title {
        font-size: 1.05rem;
        margin-bottom: 12px;
    }

    .banner-slide-body p {
        font-size: 0.92rem;
        word-spacing: 0;
        line-height: 1.45;
    }

    .banner-slide-body li {
        font-size: 0.9rem;
        word-spacing: 0;
    }

    .banner-slide-body ul {
        margin-left: 20px;
    }

    .slider-submenu-title {
        font-size: 1rem;
        margin: 0 8px 8px;
    }

    .banner-slider-controls {
        inset: 42% -4px auto -4px;
    }

    .banner-slider-button {
        width: 36px;
        height: 36px;
    }

    /* CTA buttons */
    .slider-cta-area {
        padding: 14px 12px;
        gap: 20px;
    }

    .slider-cta-area .solid-button,
    .slider-cta-area .ghost-button {
        font-size: 0.85rem;
        min-height: 38px;
        padding: 0 14px;
    }

    /* Sections */
    .section {
        padding: 28px 0;
    }

    .section-heading h2 {
        font-size: 1.2rem;
    }

    .card-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .home-intro-section .section-heading {
        grid-auto-rows: 1fr;
        margin-left: 24px;
        margin-right: 24px;
    }

    .home-intro-section .card-grid,
    .home-intro-section .esg-detail-panels {
        margin-left: 24px;
        margin-right: 24px;
    }

    .info-card {
        padding: 22px;
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .split-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pill-grid {
        gap: 8px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 24px 0;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 8px;
    }

    /* Modal */
    .request-modal-overlay {
        padding: 12px;
        align-items: flex-end;
    }

    .request-modal {
        max-width: 100%;
    }

    .request-modal-header {
        padding: 14px 16px 12px;
    }

    .request-form {
        padding: 16px 16px 14px;
    }

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
































.esg-section-title {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 4px;
    line-height: 1.3;
    color: #011344;
}

.info-card-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #0B57D0;
}

/* ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ Site Popup Alert ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ */
.site-popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(2, 10, 48, 0.55);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.site-popup-overlay.is-open {
    display: flex;
}

.site-popup {
    background: #fff;
    border-radius: 12px;
    padding: 40px 36px 32px;
    max-width: 400px;
    width: 100%;
    text-align: center;
    box-shadow: 0 24px 60px rgba(2, 10, 48, 0.22);
    animation: popupIn 0.25s ease;
}

@keyframes popupIn {
    from {
        opacity: 0;
        transform: scale(0.92);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.site-popup-icon {
    width: 52px;
    height: 52px;
    display: none;
}

.site-popup-overlay.is-success .site-popup-icon--success,
.site-popup-overlay.is-error .site-popup-icon--error {
    display: inline-block;
}

.site-popup-icon-wrap {
    margin-bottom: 20px;
}

.site-popup-msg {
    margin: 0 0 28px;
    font-size: 15px;
    font-weight: 500;
    color: #011344;
    line-height: 1.4;
}

.site-popup-ok {
    background: #0B57D0;
    color: #ffffff;
    border: 1px solid #0B57D0;
    border-radius: 3px;
    padding: 10px 25px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.site-popup-ok:hover {
    background: #0B43D0;
    border-color: #0B43D0;
    color: #ffffff;
}

/* ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚Â
   RESPONSIVE ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â COMPREHENSIVE MOBILE & TABLET ADDITIONS
   ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚Â */

/* ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ 1024px: Wide tablet ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ */
@media (max-width: 1024px) {
    .esg-detail-layout {
        gap: 24px;
    }

    .esg-toc-sidebar {
        width: 220px;
        min-width: 220px;
    }

    .esg-detail-panel-title {
        font-size: 1.45rem;
    }

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

    .cluster-link-grid,
    .resources-link-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .page-hero .lead {
        font-size: 1rem;
    }
}

/* ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ 768px: Mobile ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â main gaps filled ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ */
@media (max-width: 768px) {

    /* Page hero sections */
    .page-hero {
        padding: 52px 0 36px;
    }

    .page-hero h1 {
        font-size: 1.55rem;
        line-height: 1.25;
    }

    .page-hero .lead {
        font-size: 0.95rem;
        line-height: 1.42;
    }

    .page-hero .eyebrow {
        font-size: 0.75rem;
    }

    .page-hero-eu,
    .page-hero-cluster,
    .page-hero-resources,
    .page-hero-core-services {
        padding: 52px 0 32px;
    }

    /* Compliance */
    .compliance-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .compliance-quicklinks {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .compliance-panel-head {
        padding: 18px 18px 14px;
    }

    .compliance-panel-body {
        padding: 16px 18px 20px;
    }

    .compliance-intro-card,
    .cluster-intro-card {
        padding: 18px;
    }

    .compliance-panel-head h2 {
        font-size: 1.15rem;
    }

    .compliance-panel-head-plain h2 {
        font-size: 1.1rem;
    }

    .compliance-list li {
        font-size: 0.9rem;
    }

    /* Cluster */
    .cluster-link-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .cluster-card-mark {
        padding: 10px 12px;
        gap: 8px;
    }

    .cluster-card-icon {
        width: 42px;
        height: 42px;
    }

    .cluster-card-body h2 {
        font-size: 1.2rem;
    }

    /* Resources */
    .resources-link-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .resources-card-head {
        padding: 14px 14px 10px;
    }

    .resources-card-body {
        padding: 16px 16px 20px;
    }

    .resources-card-title h2 {
        font-size: 1.15rem;
    }

    .resources-link-card {
        padding: 16px;
        gap: 12px;
    }

    /* ESG Detail ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â TOC + content */
    .esg-detail-layout {
        flex-direction: column;
        gap: 0;
    }

    .esg-toc-sidebar {
        width: 100%;
        min-width: 0;
        position: static;
        max-height: none;
        border-right: none;
        border-bottom: 1px solid rgba(1, 19, 68, 0.1);
        padding-bottom: 12px;
        margin-bottom: 16px;
    }

    .esg-toc-sidebar.is-collapsed .esg-toc {
        display: none;
    }

    .esg-detail-main {
        width: 100%;
        min-width: 0;
    }

    .esg-detail-panel-title {
        font-size: 1.3rem;
        line-height: 1.3;
    }

    .esg-detail-section-title {
        font-size: 15px;
    }

    .esg-detail-section-title-num,
    .esg-detail-section-title-alpha,
    .esg-detail-section-title-sm {
        font-size: 15px;
    }

    .esg-detail-copy p {
        font-size: 14px;
        word-spacing: 2px;
    }

    .esg-detail-list {
        margin-left: 14px;
    }

    .esg-detail-list li {
        font-size: 14px;
    }

    .esg-detail-result-title {
        font-size: 1.1rem;
    }

    .esg-detail-cta-title {
        font-size: 15px;
    }

    /* Section headings */
    .esg-section-title {
        font-size: 20px;
    }

    .info-card-title {
        font-size: 15px;
    }

    /* Popup */
    .site-popup {
        padding: 28px 20px 24px;
    }

    .site-popup-msg {
        font-size: 15px;
    }

    /* Form modal improvements */
    .request-modal {
        max-height: 90vh;
        overflow-y: auto;
        border-radius: 10px 10px 0 0;
    }

    .request-form-group label {
        font-size: 13px;
    }

    .request-form-group input,
    .request-form-group textarea {
        font-size: 14px;
        padding: 9px 11px;
    }

    .request-form-submit,
    button.request-form-cancel {
        font-size: 14px;
        padding: 10px 18px;
    }

    /* Two column / split layouts */
    .two-column,
    .split-layout {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* General typography */
    h1 {
        font-size: 1.6rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    h3 {
        font-size: 1.1rem;
    }
}

/* ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ 480px: Small mobile ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ */
@media (max-width: 480px) {

    .wrap {
        width: min(100% - 20px, 1120px);
    }

    /* Page hero */
    .page-hero h1 {
        font-size: 1.35rem;
    }

    .page-hero .lead {
        font-size: 0.9rem;
    }

    .page-hero-eu,
    .page-hero-cluster,
    .page-hero-resources,
    .page-hero-core-services {
        padding: 44px 0 26px;
    }

    /* ESG Detail */
    .esg-detail-panel-title {
        font-size: 1.15rem;
    }

    .esg-detail-section-title {
        font-size: 15px;
    }

    .esg-detail-copy p,
    .esg-detail-list li {
        font-size: 13.5px;
    }

    /* Compliance */
    .compliance-panel-head h2 {
        font-size: 1.05rem;
    }

    .compliance-panel-body p,
    .compliance-list li {
        font-size: 13.5px;
    }

    /* Cards */
    .cluster-card-body h2,
    .resources-card-title h2 {
        font-size: 1.1rem;
    }

    .info-card-title {
        font-size: 15px;
    }

    /* Buttons */
    .solid-button,
    .ghost-button {
        font-size: 0.88rem;
        padding: 0 16px;
        min-height: 40px;
    }

    /* Popup */
    .site-popup {
        padding: 24px 16px 20px;
        border-radius: 10px;
    }

    .site-popup-ok {
        width: 100%;
        padding: 12px;
    }

    /* Form */
    .request-modal-overlay {
        padding: 0;
        align-items: flex-end;
    }

    .request-modal {
        border-radius: 14px 14px 0 0;
        max-height: 95vh;
    }

    .request-form-actions {
        flex-direction: column-reverse;
        gap: 8px;
    }

    .request-form-submit,
    button.request-form-cancel {
        width: 100%;
        justify-content: center;
    }

    /* Section */
    .section {
        padding: 24px 0;
    }

    .section-heading h2 {
        font-size: 1.1rem;
    }
}

/* ── About Page ── */
.page-hero-about {
    background: url('../../img/About Us.png') center top/1536px 455px no-repeat;
    min-height: 455px;
    padding: 0;
    filter: contrast(1.1) saturate(1.12) brightness(1.04);
}

.page-hero-about-title {
    font-size: 30px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 16px;
    line-height: 1.3;
    max-width: none;
}

.page-hero-about .eyebrow {
    color: #9fcb3c;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0 0 10px;
}



.page-hero-about .lead+.lead {
    margin-top: 8px;
}

/* ── About page shared utilities ── */
.about-intro-title,
.about-section-heading,
.about-section-label {
    position: relative;
    display: inline-block;
    width: max-content;
    margin: 0 auto;
}

.about-section-label {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #0B43D0;
    margin: 0 0 8px;
}

.about-section-label--light {
    color: rgba(255, 255, 255, 0.7);
}

.about-section-label::after,
.about-intro-title::after,
.about-section-heading::after {
    content: '';
    position: absolute;
    left: 0;
    transform: none;
    bottom: -10px;
    width: 70px;
    height: 4px;
    border-radius: 999px;
    background: #FA9602;
    box-shadow: none;
}

/* Team section: underline on heading (Our Team), not on caption */
.about-team-section .about-section-heading::after {
    display: block !important;
}

.about-team-section .about-section-heading {
    display: block;
    margin: 0 0 6px;
}

.about-team-section .about-section-label {
    display: block;
    width: 100%;
    margin-top: 25px;
    margin-bottom: 0;
    text-align: left;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #0B43D0;
}

.about-team-section .about-section-label::after {
    display: none !important;
}

.about-section-header {
    text-align: center;
    margin-bottom: 40px;
}

.about-section-header--light {
    text-align: center;
    margin-bottom: 40px;
}

.about-services-section .about-section-header {
    text-align: left;
}

.about-why-section .about-section-header,
.about-team-section .about-section-header {
    text-align: left;
}

.about-section-heading {
    font-size: 36px;
    color: var(--brand-black);
    margin: 0;
    line-height: 1.3;
    font-weight: 650;
    margin-bottom: 12px;
}

.about-section-heading--light {
    color: #ffffff;
}

/* ── Stats Bar ── */
.about-stats-bar {
    background: #ffffff;
    border-bottom: 1px solid #e8edf5;
    padding: 28px 0;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.about-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 12px 20px;
    border-right: 1px solid #e8edf5;
}

.about-stat:last-child {
    border-right: none;
}

.about-stat-num {
    font-size: 2.4rem;
    font-weight: 800;
    color: #011344;
    line-height: 1;
}

.about-stat-num sup {
    font-size: 1.1rem;
    color: #FA9602;
    vertical-align: super;
}

.about-stat-label {
    font-size: 12.5px;
    color: #666;
    text-align: center;
    line-height: 1.4;
}

/* ── Who We Are ── */
.about-intro-section {
    background: #ffffff;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 60px;
    align-items: start;
}

.about-intro-title {
    font-size: 36px;
    font-weight: 650;
    color: var(--brand-black);
    margin: 8px 0 35px;
    line-height: 1.3;
}

.about-intro-copy p {
    color: var(--brand-black);
    font-size: 15px;
    line-height: 1.45;
    margin: 0 0 14px;
}

.about-tagline-strip {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    padding: 12px 16px;
    background: #f4f7ff;
    border-radius: 8px;
    border-left: 3px solid #FA9602;
}

.about-tagline-strip span {
    font-size: 13px;
    font-weight: 700;
    color: #011344;
}

.about-tagline-dot {
    width: 4px;
    height: 4px;
    background: #FA9602;
    border-radius: 50%;
    flex-shrink: 0;
}

.about-pillars {
    display: flex;
    flex-direction: column;
}

.about-pillar {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #f1f1f1;
    border-radius: 10px;
    padding: 14px 18px;
    border-left: 3px solid #FA9602;
    transition: box-shadow 0.2s;
    margin-bottom: 15px;
}

.about-pillar:hover {
    box-shadow: 0 4px 16px rgba(1, 19, 68, 0.08);
}

.about-pillar-icon {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    background: #fff;
    color: #FA9602;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-pillar-icon svg {
    width: 30px;
    height: 30px;
}

.about-pillar strong {
    display: block;
    font-size: 20px;
    color: #0B57D0;
    margin-bottom: 3px;
    font-weight: 650;
}

.about-pillar p {
    margin: 0;
    font-size: 14px;
    color: var(--brand-black);
    line-height: 1.4;
}

/* ── What We Do ── */
.about-services-section {
    background: #f1f1f1;
}

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

.about-service-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 28px 22px 24px;
    box-shadow: 0 2px 12px rgba(1, 19, 68, 0.07);
    border-bottom: 3px solid #FA9602;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.about-service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(1, 19, 68, 0.12);
}

.about-service-icon {
    width: 46px;
    height: 46px;
    background: #eef3ff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-service-icon svg {
    width: 26px;
    height: 26px;
}

.about-service-num {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #FA9602;
}

.about-service-card h3,
.about-service-title {
    font-size: 20px;
    font-weight: 650;
    color: #0B57D0;
    margin: 0;
    line-height: 1.45;
}

.about-service-card p {
    font-size: 15px;
    color: #000000;
    line-height: 1.42;
    margin: 0;
}

/* ── Vision & Mission ── */
.about-vision-section {
    background: #011344;
}

.about-vision-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 0;
    padding-left: 90px;
    padding-right: 100px;
}

.about-vision-card {
    border-radius: 12px;
    padding: 18px;
    transition: background 0.2s;
    display: flex;
    align-items: flex-start;
    gap: 25px;
}

.about-vision-card:hover {
    background: rgba(255, 255, 255, 0.1);
}

.about-vision-icon {
    width: 50px;
    height: 50px;
    background: #f1f1f1;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
}

.about-vision-content {
    flex: 1;
}

.about-vision-card-title {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px;
}

.about-vision-card p,
.about-vision-content ul {
    margin: 0;
}

.about-vision-icon svg {
    width: 32px;
    height: 32px;
}

.about-vision-card h3,
.about-vision-card-title {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 14px;
}

.about-vision-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.75;
    margin: 0;
}

.about-mission-list {
    margin: 6px 0 18px 10px;
    padding: 0;
    list-style: none;
}

.about-mission-list li {
    margin: 0 0 8px;
    color: #000000;
    font-size: 15px;
    line-height: 1.4;
    word-spacing: 5px;
    padding-left: 22px;
    position: relative;
}

.about-mission-list2 li {
    color: #ffffff !important;
}

.about-mission-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, #FA9602, #f5a94e);
    border-radius: 50%;
}

.about-mission-list li::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 10px;
    transform: translateY(-50%);
    width: 2px;
    height: 2px;
    background: #ffffff;
    border-radius: 50%;
}

.about-mission-list li:last-child {
    margin-bottom: 0;
}

/* ── Why Azibo ── */
.about-why-section {
    background: #ffffff;
}

.about-why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    background: white;
    border-radius: 12px;
    padding: 24px 24px;
    border: 1px solid #e8edf5;
    box-shadow: 0 2px 14px rgba(1, 19, 68, 0.08); ;
}

.about-why-card {
    background: transparent;
    border-radius: 0;
    padding: 0;
    border-top: 0;
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 16px;
    row-gap: 0;
    align-items: center;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-shadow: none;
    border-bottom: 0;
}

.about-why-card:last-child {
    border-bottom: 0;
}

.about-why-card-icon {
    grid-row: 1 / span 2;
    align-self: center;
}

.about-why-card-title,
.about-why-card p {
    margin: 0;
}

.about-why-card-icon {
    width: 44px;
    height: 44px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-why-card-icon svg {
    width: 24px;
    height: 28px;
}

.about-why-card h4,
.about-why-card-title {
    font-size: 20px;
    font-weight: 650;
    color: #011344;
    margin: 0;
    line-height: 3.1;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.about-why-card-sep {
    color: #011344;
    font-weight: 600;
}

.about-why-card-desc {
    font-size: 15px;
    font-weight: 400;
    color: var(--brand-black);
    line-height: 1.45;
}

.about-why-card p {
    font-size: 15px;
    color: var(--brand-black);
    line-height: 1.45;
    margin: 0;
}

/* ── Our Commitment ── */
.about-commit-section {
    background: #011344;
}

.about-commit-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 70px;
    align-items: center;
    padding-left: 0px;
    padding-right: 0px;
}

.about-commit-left h2,
.about-commit-title {
    font-size: 36px;
    font-weight: 600;
    color: #ffffff;
    margin: -4px 0 18px;
    line-height: 1.25;
}

.about-commit-left p {
    font-size: 15px;
    color: rgba(255, 255, 255, 255);
    line-height: 1.75;
    text-align: justify;
    word-spacing: 4px;
    margin: 0;
}

.about-commit-sub {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    margin: -36px 0 27px;
}

.about-transform-list {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: stretch;
}

.about-transform-item {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    column-gap: 16px;
    background: #FA9602;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 14px 18px;
    width: fit-content;
   /* max-width: 100%; */
    width: 330px;
    min-height: 64px;
    overflow: visible;
}

.about-transform-from {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    min-width: 0;
    text-align: center;
}

.about-transform-arrow {
    width: 40px;
    height: 14px;
    flex-shrink: 0;
}

.about-transform-to {
    font-size: 19px;
    font-weight: 700;
    color: #fff;
    min-width: 0;
    text-align: center;
    white-space: normal;
    line-height: 1.15;
    text-wrap: balance;
    max-width: 140px;
}

/* ── Team ── */
.about-team-section {
    background: #f1f1f1;
}

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

.team-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 14px rgba(1, 19, 68, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s, transform 0.2s;
}

.team-card:hover {
    box-shadow: 0 8px 32px rgba(1, 19, 68, 0.14);
    transform: translateY(-2px);
}

.team-card-banner {
    height: 70px;
    flex-shrink: 0;
}

.team-card-content {
    padding: 34px 20px 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 0;
    background: #ffffff;
    box-shadow: 0 4px 14px rgba(1, 19, 68, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    flex-shrink: 0;
    overflow: hidden;
}

.team-avatar span {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.12);
    transform-origin: center;
}

.team-card-identity {
    margin-top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
}

.team-expanded-summary {
    display: none;
}

.team-card-identity-top,
.team-card-identity-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0px;
}

.team-qualification,
.team-focus {
    font-size: 14px;
    color: var(--brand-black);
    line-height: 1.45;
    margin: 0;
}

.team-focus {
    padding: 8px 18px;
    border-top: 1px solid var(--brand-black);
    border-bottom: 1px solid var(--brand-black);
    max-width: 320px;
    width: 100%;
}

.team-role {
    margin-bottom: 15px;
}

.team-expanded-credentials,
.team-expanded-role,
.team-expanded-focus {
    margin: 0;
}

.team-card-identity h3,
.team-card-name {
    font-size: 17px;
    font-weight: 700;
    color: var(--brand-black);
    margin: 0 0 7px;
}

.team-role {
    font-size: 15px;
    font-weight: 600;
    color: #0B57D0;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin: 8px 0 20px;
    white-space: normal;
    line-height: 1.25;
}

.team-role-line {
    display: block;
}

.team-focus-line {
    display: block;
}

.team-card:not(.team-profile-modal-card) .team-focus {
    width: 100%;
    text-align: center;
}

.team-card:not(.team-profile-modal-card) .team-role {
    text-align: center;
}

.team-brief {
    font-size: 14px;
    color: #000;
    line-height: 1.55;
    margin: 0;
}

.team-card-full {
    padding: 10px 16px 2px;
    border-top: 1px solid #eef1f8;
    margin: 8px 0 0;
}

.team-card-full p {
    font-size: 14px;
    color: #1f2b46;
    line-height: 1.42;
    margin: 0 0 14px;
}

.team-profile-section-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 0 0 8px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    color: #0B57D0;
}

.team-profile-section-label::before {
    content: '';
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #FA9602;
}

.team-profile-inline-title {
    margin: 14px 0 14px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    color: #0B57D0;
}

.team-profile-name-inline {
    color: #0B57D0;
    font-weight: 700;
    font-size:15px;
}

.team-detail-list {
    margin: 2px 0 7px 20px;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.team-detail-list li {
    margin: 0 0 8px;
    color: #000000;
    font-size: 15px;
    line-height: 1.2;
    word-spacing: 5px;
    padding-left: 22px;
    position: relative;
    text-align: left;
}

.team-detail-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, #FA9602, #f5a94e);
    border-radius: 50%;
    box-shadow: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.team-detail-list li::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 10px;
    transform: translateY(-50%);
    width: 2px;
    height: 2px;
    background: #ffffff;
    border-radius: 50%;
}

.team-profile-closing {
    margin-bottom: 0;
}

.team-profile-close {
    position: absolute;
    top: 2px;
    right: 1px;
    width: 25px;
    height: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 999px;
    background: #eef4ff;
    color: #0B57D0;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    transition: background 0.18s ease, color 0.18s ease;
}

.team-profile-close:hover {
    background: #0B57D0;
    color: #ffffff;
}

.team-card-toggle {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 20px 14px;
    background: #ffffff;
    border: none;
    font-size: 15px;
    font-weight: 600;
    color: #FA9602;
    cursor: pointer;
    transition: background 0.18s;
    padding-bottom: 34px;
}

.team-card-toggle:hover {
    color: #0B43D0;
}

.team-toggle-icon {
    transition: transform 0.25s ease;
}

.team-card-toggle.is-open .team-toggle-icon {
    transform: rotate(180deg);
}

/* Expanded horizontal profile view */
.team-card.is-expanded {
    grid-column: 1 / -1;
    display: grid;
    width: 100%;
    max-width: 930px;
    margin: 0 auto;
    grid-template-columns: minmax(240px, 270px) 1fr;
    grid-template-rows: 1fr auto;
    transform: none;
    border-radius: 10px;
    box-shadow: 0 18px 48px rgba(1, 19, 68, 0.12);
    background: #ffffff;
}

.team-card.is-expanded:hover {
    transform: none;
}

.team-card.is-expanded .team-card-content {
    grid-column: 1;
    grid-row: 1;
    display: grid;
    grid-template-rows: auto auto auto 1fr auto;
    align-content: start;
    justify-items: center;
    border-right: 1px solid rgba(255, 255, 255, 0.16);
    padding: 35px 0 0;
    text-align: center;
    background: #10286A;
    color: #ffffff;
}

.team-card.is-expanded .team-card-identity {
    display: contents;
}

.team-card.is-expanded .team-card-name {
    grid-row: 1;
    max-width: 210px;
    margin: 0 auto 6px;
    padding-top: 0;
    font-size: 17px;
    line-height: 1.3;
    color: #ffffff;
    font-weight: 600;
}

.team-card.is-expanded .team-role {
    display: none;
}

.team-card.is-expanded .team-brief {
    display: none;
}

.team-card.is-expanded .team-expanded-summary {
    display: contents;
}

.team-card.is-expanded .team-expanded-credentials {
    grid-row: 2;
    margin: 0 auto 42px;
    max-width: 195px;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.35;
}

.team-card.is-expanded .team-avatar {
    grid-row: 3;
    width: 150px;
    height: 150px;
    background: #ffffff;
    box-shadow: none;
}

.team-card.is-expanded .team-expanded-role {
    grid-row: 4;
    margin: 0 auto 50px;
    max-width: 180px;
    color: #ffffff;
    font-size: 17px;
    line-height: 1.45;
}

.team-card.is-expanded .team-expanded-focus {
    grid-row: 5;
    align-self: end;
    width: 100%;
    margin-top: -21px;
    transform: translateY(-30px);
    padding: 12px 20px;
    background: #F89B12;
    color: #ffffff;
    font-size: 17px;
    line-height: 1.35;
    box-shadow: none;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Keep inline expanded layout consistent with the main grid card (not modal) */
.team-card.is-expanded:not(.team-profile-modal-card) .team-card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px 0 20px;
    text-align: center;
}

.team-card.is-expanded:not(.team-profile-modal-card) .team-card-identity {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.team-card.is-expanded:not(.team-profile-modal-card) .team-card-identity-top,
.team-card.is-expanded:not(.team-profile-modal-card) .team-card-identity-bottom {
    gap: 6px;
}

.team-card.is-expanded:not(.team-profile-modal-card) .team-role {
    display: block;
    margin: 8px 0 10px;
}

.team-card.is-expanded:not(.team-profile-modal-card) .team-qualification,
.team-card.is-expanded:not(.team-profile-modal-card) .team-role,
.team-card.is-expanded:not(.team-profile-modal-card) .team-focus {
    color: #ffffff;
}

.team-card.is-expanded:not(.team-profile-modal-card) .team-focus {
    border-top-color: rgba(255, 255, 255, 0.55);
    border-bottom-color: rgba(255, 255, 255, 0.55);
    max-width: 220px;
}

.team-card.is-expanded:not(.team-profile-modal-card) .team-expanded-summary {
    display: none;
}

/* Modal (view profile) layout: keep original card structure */
.team-profile-modal-card.team-card.is-expanded .team-card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding: 35px 0 22px;
    text-align: center;
}

.team-profile-modal-card.team-card.is-expanded .team-card-identity {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    width: 100%;
    height: 100%;
}

.team-profile-modal-card.team-card.is-expanded .team-card-identity-top {
    gap: 6px;
}

.team-profile-modal-card.team-card.is-expanded .team-card-identity-bottom {
    align-items: stretch;
    width: 100%;
    height: 100%;
    justify-content: space-between;
}

.team-profile-modal-card.team-card.is-expanded .team-card-name,
.team-profile-modal-card.team-card.is-expanded .team-qualification {
    color: #ffffff;
}

.team-profile-modal-card.team-card.is-expanded .team-role {
    display: block;
    margin: 6px 0 8px;
    color: #ffffff;
    text-align: center;
}

.team-profile-modal-card.team-card.is-expanded .team-focus {
    display: block;
    width: 100%;
    align-self: stretch;
    margin-bottom: 35px;
    padding: 12px 18px;
    background: #F89B12;
    font-size: 17px;
    font-weight: 600;
    color: #ffffff;
    border: 0;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    border-radius: 0;
    box-sizing: border-box;
    text-align: center;
}

.team-profile-modal-card.team-card.is-expanded .team-expanded-summary,
.team-profile-modal-card.team-card.is-expanded .team-expanded-credentials,
.team-profile-modal-card.team-card.is-expanded .team-expanded-role,
.team-profile-modal-card.team-card.is-expanded .team-expanded-focus {
    display: none;
}
.team-card.is-expanded .team-card-full {
    position: relative;
    grid-column: 2;
    grid-row: 1;
    border-top: none;
    border-left: none;
    padding: 35px;
    margin: 0;
    background: #fff;
    text-align: justify;
}

.team-card.is-expanded .team-card-full p {
    font-size: 15px;
    line-height: 1.42;
    color: #000;
    text-align: justify;
}

.team-card.is-expanded .team-card-full p:first-of-type {
    font-size: 15px;
    color: #000;
}



.team-card.is-expanded .team-card-toggle {
    display: none;
}

.team-profile-modal-open {
    overflow: hidden;
}

.team-profile-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(2, 10, 48, 0.6);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.team-profile-modal-overlay.is-open {
    display: flex;
}

.team-profile-modal-shell {
    width: 100%;
    max-width: 980px;
    max-height: calc(100vh - 40px);
    overflow: auto;
}

.team-profile-modal-content {
    width: 100%;
}

.team-profile-modal-card {
    margin: 0 auto;
}

.team-profile-modal-card .team-card-toggle {
    display: none;
}

.team-profile-modal-card .team-profile-close {
    top: 6px;
    right: 6px;
}

/* CTA */
.about-cta-section {
    /*background: linear-gradient(135deg, #d5d5d5 100%, #011344 0%, #0B43D0 100%);*/
    background: white;
    padding: 30px 0;
}

.about-cta-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Left col */
.about-cta-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-cta-eyebrow {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--brand-navy-blue);
    ;
    margin: 0;
}

.about-cta-heading {
    font-size: 36px;
    color: var(--brand-black);
    margin: 0;
    font-weight: 650;
    line-height: 1.2;
}

.about-cta-sub {
    font-size: 1.02rem;
    /* color: #000000; */
    color: var(--brand-black);
    line-height: 1.9;
    margin: 0;
    word-spacing: 5px;
    text-align: justify;
}

.about-cta-btn {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #FA9602 !important;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}

.about-cta-btn svg {
    width: 17px;
    height: 17px;
}

.about-cta-btn:hover {
    background: #F09103 !important;
    color: #ffffff;
}

/* Right col */
.about-cta-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-cta-feature {
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: #f1f1f1;
    border: 1px solid #f1f1f1;
    border-radius: 10px;
    padding: 10px;
    min-width: 292px;
    min-height: 110px;
}

.about-cta-feature-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.about-cta-feature-icon svg {
    width: 100%;
    height: 100%;
}

.about-cta-feature strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--brand-navy-blue);
    line-height: 1.3;
}

.about-cta-feature p {
    font-size: 14px;
    color: var(--brand-black);
    line-height: 1.55;
    margin-top: 5px;
    text-align: justify;

}

.about-why-card-title {
    color: #0B57D0;
    font-size: 20px;
    font-weight: 650;
}

/* ── About responsive ── */
@media (max-width: 1200px) {
    .about-why-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {

    .about-services-grid,
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .about-stat {
        border-bottom: 1px solid #e8edf5;
    }

    .about-cta-box {
        gap: 36px;
    }

    .about-commit-grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {

    .about-intro-grid,
    .about-commit-grid,
    .about-cta-box {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .about-vision-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .about-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-cta-section {
        padding: 28px 0;
    }

    /* Revert expanded card to vertical on small screens */
    .team-card.is-expanded {
        grid-column: auto;
        display: flex;
        flex-direction: column;
    }

    .team-card.is-expanded .team-card-content {
    grid-column: 1;
    grid-row: 1;
    display: grid;
    grid-template-rows: auto auto auto 1fr auto;
    align-content: start;
    justify-items: center;
    border-right: 1px solid rgba(255, 255, 255, 0.16);
    padding: 35px 0 0;
    text-align: center;
    background: #10286A;
    color: #ffffff;
}

.team-card.is-expanded .team-card-identity {
    display: contents;
}

.team-card.is-expanded .team-card-name {
    grid-row: 1;
    max-width: 210px;
    margin: 0 auto 6px;
    padding-top: 0;
    font-size: 17px;
    line-height: 1.3;
    color: #ffffff;
    font-weight: 600;
}

.team-card.is-expanded .team-role {
    display: none;
}

.team-card.is-expanded .team-brief {
    display: none;
}

.team-card.is-expanded .team-expanded-summary {
    display: contents;
}

.team-card.is-expanded .team-expanded-credentials {
    grid-row: 2;
    margin: 0 auto 42px;
    max-width: 195px;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.35;
}

.team-card.is-expanded .team-avatar {
    grid-row: 3;
    width: 102px;
    height: 102px;
    border: 0;
    background: #ffffff;
    box-shadow: none;
}

.team-card.is-expanded .team-expanded-role {
    grid-row: 4;
    margin: 0 auto 50px;
    max-width: 180px;
    color: #ffffff;
    font-size: 17px;
    line-height: 1.45;
}

.team-card.is-expanded .team-expanded-focus {
    grid-row: 5;
    align-self: end;
    width: 100%;
    margin-top: 0;
    transform: translateY(-30px);
    padding: 12px 14px;
    background: #F89B12;
    color: #ffffff;
    font-size: 17px;
    line-height: 1.35;
    box-shadow: none;
    font-weight: 600;
}
.team-card.is-expanded .team-card-full {
    position: relative;
    grid-column: 2;
    grid-row: 1;
    border-top: none;
    border-left: none;
    padding: 30px;
    margin: 0;
    background: #fff;
    text-align: justify;
}

    .team-card.is-expanded .team-card-full p {
    font-size: 15px;
    line-height: 1.42;
    color: #000;
    text-align: justify;
}

    .team-detail-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 540px) {

    .about-services-grid,
    .team-grid,
    .about-why-grid,
    .about-stats-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header-utility-row {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        width: 100%;
    }

    .header-login-wrap {
        margin-right: 0;
        padding: 0 16px;
        text-align: left;
    }
}


































/* Responsive refinement patch */
@media (max-width: 1200px) {
    .site-header .wrap {
        width: calc(100% - 40px);
    }

    .header-shell {
        grid-template-columns: 220px minmax(0, 1fr);
        gap: 18px;
    }

    .utility-bar {
        width: auto;
    }

    .team-profile-modal-shell {
        max-width: 940px;
    }
}

@media (max-width: 1024px) {
    .site-header .wrap {
        width: calc(100% - 28px);
    }

    .header-shell {
        grid-template-columns: 180px minmax(0, 1fr);
        gap: 12px;
    }

    .brand img {
        width: 150px;
    }

    .utility-bar {
        min-height: auto;
    }

    .product-nav {
        flex-wrap: wrap;
        justify-content: flex-end;
        gap: 6px;
    }

    .slider-cta-area {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .team-profile-modal-shell {
        max-width: 900px;
    }

    .team-profile-modal-card.team-card.is-expanded {
        max-width: 100%;
        grid-template-columns: minmax(220px, 250px) 1fr;
    }
}

@media (max-width: 768px) {
    .site-header .wrap {
        width: calc(100% - 16px);
    }

    .header-panel {
        max-height: calc(100vh - 70px);
        overflow: auto;
    }

    .header-login-wrap {
        width: 100%;
        margin-right: 0;
        padding: 10px 16px 0;
        text-align: left;
    }

    .header-login-button {
        min-width: 120px;
    }

    .team-profile-modal-overlay {
        padding: 10px;
    }

    .team-profile-modal-shell {
        max-width: 100%;
        max-height: calc(100vh - 20px);
    }

    .team-profile-modal-card.team-card.is-expanded {
        display: flex;
        flex-direction: column;
        max-width: 100%;
    }

    .team-profile-modal-card .team-card-content {
        border-right: none;
    }

    .team-profile-modal-card .team-card-full {
        padding: 18px 14px 14px;
    }

    .team-profile-modal-card .team-profile-close {
        top: 8px;
        right: 8px;
    }

    .slider-cta-area .solid-button,
    .slider-cta-area .ghost-button {
        width: 100%;
        text-align: center;
    }

    .banner-slider-controls {
        inset: auto 8px 10px 8px;
        transform: none;
    }

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

@media (max-width: 540px) {
    .site-header .wrap {
        width: calc(100% - 12px);
    }

    .header-shell {
        padding: 8px 10px;
    }

    .brand img {
        width: 115px;
    }

    .utility-nav,
    .account-nav {
        padding: 6px 12px;
    }

    .utility-nav a,
    .account-nav a,
    .product-item > a {
        font-size: 0.88rem;
    }

    .team-profile-modal-overlay {
        padding: 6px;
    }

    .team-profile-modal-card .team-card-full {
        padding: 16px 12px 12px;
    }

    .team-profile-modal-card .team-card-full p,
    .team-profile-modal-card .team-detail-list li {
        font-size: 14px;
    }
}




@media (max-width: 768px) {
    .product-nav {
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: stretch;
        gap: 0;
    }

    .product-item {
        width: 100%;
    }

    .product-item > a {
        width: 100%;
    }

    .product-submenu {
        display: none;
        width: 100%;
    }

    .product-item.is-open .product-submenu {
        display: flex;
    }
}

@media (max-width: 768px) {
    .product-submenu {
        position: static !important;
        display: none !important;
        flex-direction: column !important;
        width: 100% !important;
        padding: 6px 0 !important;
        background: #f7f9ff !important;
        border-top: 1px solid #ebebeb !important;
        min-width: 0 !important;
        box-shadow: none !important;
        overflow: visible !important;
    }

    .product-item.is-open .product-submenu {
        display: flex !important;
    }

    .product-submenu a {
        display: block !important;
        width: 100% !important;
        padding: 10px 24px !important;
        color: #011344 !important;
        font-size: 14px !important;
        font-weight: 600 !important;
        line-height: 1.4 !important;
        white-space: normal !important;
        opacity: 1 !important;
        visibility: visible !important;
        background: transparent !important;
        border-bottom: 1px solid #e5ecff !important;
    }

    .product-submenu a:last-child {
        border-bottom: 0 !important;
    }
}

@media (max-width: 768px) {
    .product-item {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
    }

    .product-item > a {
        display: flex !important;
        width: 100% !important;
        justify-content: space-between !important;
    }

    .product-item.is-open .product-submenu {
        position: static !important;
        order: 2 !important;
        margin-top: 0 !important;
    }
}

@media (max-width: 768px) {
    .info-card,
    .info-card-trigger {
        background-size: 100% 150px;
        background-position: top center;
        padding: 18px;
        padding-top: 166px;
        min-height: 0;
    }

    .info-card p,
    .info-card-trigger p {
        -webkit-line-clamp: 4;
        line-height: 1.5;
    }

    .info-card-readmore {
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .info-card,
    .info-card-trigger {
        background-size: 100% 138px;
        padding: 16px;
        padding-top: 152px;
    }
}
