﻿/* ============================================================
   LAURUS LABS — Annual Report Microsite
   style.css — design system + section styles
   ============================================================ */

/* ---------- DESIGN SYSTEM TOKENS ----------
   ⚠️ Palette/fonts are strong defaults — confirm against the
   Laurus print/brand guideline before final sign-off. */
:root {
    /* Brand colours */
    --ll-green:        #3e125b;   /* primary deep green (bar, headings) */
    --ll-green-dark:   #08362a;   /* darker green (hover, sticky shadow) */
    --ll-green-tint:   #e7f0ed;   /* very light green wash (backgrounds) */
    --ll-teal:         #1c8d8d;   /* secondary accent */
    --ll-gold:         #c8a951;   /* accent: CTAs, KPI numerals, underlines */
    --ll-gold-dark:    #a98a36;

    /* Neutrals */
    --ll-ink:          #1a2b2b;   /* body text */
    --ll-grey:         #5a6b6b;   /* muted text */
    --ll-line:         #e2e8e6;   /* hairline borders */
    --ll-bg:           #ffffff;
    --ll-bg-light:     #f5f8f7;   /* light grey-green section bg */

    /* Type */
    --font-head: 'Rubik', 'Segoe UI', sans-serif;
    --font-body: 'Rubik', 'Segoe UI', sans-serif;

    /* Layout */
    --header-h: 78px;
    --radius:   16px;
    --shadow:   0 2px 18px rgba(8, 54, 42, 0.10);
}

/* ---------- BASE ---------- */
* { box-sizing: border-box; }

body {
    padding: 0;
    margin: 0;
    font-size: 16px;
    font-family: var(--font-body);
    color: var(--ll-ink);
    background: var(--ll-bg);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
    font-family: var(--font-head);
    color: var(--ll-green);
    font-weight: 400;
    line-height: 1.2;
}

p {
    margin: 0;
    padding: 0;
    font-size: 16px;
    line-height: 26px;
}

a {
    text-decoration: none !important;
    font-size: 16px;
    color: inherit;
    transition: color .25s ease, background .25s ease, opacity .25s ease;
}

img { max-width: 100%; }

/* main section:not(.page-hero) {
    padding: 0px 0 40px 0 !important;
} */

.business-review-page main section:not(.page-hero) {
    padding-top: 0 !important;
}

/* ============================================================
   SECTION 1: HEADER / NAVIGATION
   (structure mirrors the reference header, re-skinned to theme)
   ============================================================ */
header#header {
    background: transparent;
    height: var(--header-h);
    align-items: center;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
}

/* White bar that floats over the hero */
.header-wrap {
    background: rgba(255, 255, 255, .9);
    box-shadow: var(--shadow);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 26px;
    position: relative;   /* anchor for the dropdown menu panel */
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

/* --- Logo (placeholder wordmark) --- */
.header-left { display: flex; align-items: center; }
.logo-wordmark img {
 width: 100%;
 max-width: 165px; 
}
.logo-mark   { color: var(--ll-green); font-size: 26px; }
.logo-mark-2 { color: var(--ll-gold);  font-size: 26px; }

/* --- Right cluster --- */
.header-right {
    display: flex;
    align-items: center;
    position: relative;
    gap: 18px;
}
/* 20-years logo mark left of the Download button */
.header-badge { height: 38px; width: auto; display: block; }

/* --- 20-year milestone badge --- */
.milestone-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.05;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 14px;
    color: var(--ll-green-dark);
    background: linear-gradient(135deg, #f6e7b8, var(--ll-gold));
    border-radius: 999px;
    padding: 8px 18px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(168, 138, 54, .35);
}
.milestone-badge small { font-size: 9px; font-weight: 500; letter-spacing: .5px; }

/* --- Download CTA --- */
.download-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--ll-green);
    color: #fff;
    font-family: var(--font-head);
    font-weight: 500;
    font-size: 14px;
    padding: 10px 18px;
    border-radius: 999px;
    white-space: nowrap;
}
.download-cta:hover { background: var(--ll-gold); color: var(--ll-green-dark); }
.download-cta .d-icon { display: inline-flex; }

/* --- Hamburger (always visible — opens the overlay menu) --- */
.ham-icon1 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--ll-green);
    cursor: pointer;
    padding: 4px;
}
.ham-icon1:hover { color: var(--ll-gold); }
/* swap bars ↔ × based on open state */
.ham-icon1 .ham-close { display: none; }
body.menu-open .ham-icon1 .ham-open { display: none; }
body.menu-open .ham-icon1 .ham-close { display: inline-flex; }

/* ============================================================
   FULL-SCREEN OVERLAY MENU (CAMS-style)
   ============================================================ */
/* Dropdown panel — aligned to the header bar width, toggled by the hamburger */
.ll-overlay {
    position: absolute;
    top: calc(100% + 12px);   /* sits just below the white bar */
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--ll-green);
    border-radius: var(--radius);
    box-shadow: 0 24px 55px rgba(8, 54, 42, .35);
    max-height: calc(100vh - var(--header-h) - 40px);
    overflow-y: auto;
    /* hidden by default — opacity+visibility so it can transition */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity .3s ease, transform .3s ease, visibility 0s linear .3s;
}
body.menu-open .ll-overlay {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity .3s ease, transform .3s ease;
}

.ovl-inner { padding: 34px 40px; }

/* 3-column grid: groups | links | aside */
.ovl-grid {
    display: grid;
    grid-template-columns: 1.1fr 1.4fr 1fr;
    gap: 44px;
    align-items: start;
    width: 100%;
}

/* LEFT — group tabs */
.ovl-groups { display: flex; flex-direction: column; }
.ovl-group {
    color: rgba(255, 255, 255, .75);
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 17px;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .15);
    position: relative;
    cursor: pointer;
}
.ovl-group::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    height: 2px;
    width: 38px;
    background: var(--ll-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s ease;
}
.ovl-group:hover { color: #fff; }
.ovl-group.is-active { color: #fff; }
.ovl-group.is-active::after { transform: scaleX(1); }

/* MIDDLE — link panels */
.ovl-links { position: relative; }
.ovl-panel { display: none; }
.ovl-panel.is-active { display: block; animation: ovlFade .35s ease; }
.ovl-panel a {
    display: block;
    color: rgba(255, 255, 255, .9);
    font-family: var(--font-head);
    font-weight: 500;
    font-size: 15.5px;
    padding: 11px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    transition: ease all 0.5s;
}
.ovl-panel a:last-child { border-bottom: none; }
.ovl-panel a:hover { color: var(--ll-gold); padding-left: 8px;transition: ease all 0.5s; }

.ovl-num {
    display: inline-block;
    width: 34px;
    margin-right: 14px;
    color: rgba(255, 255, 255, .9);
    font-variant-numeric: tabular-nums;
}

/* statutory / financial panels — download arrow on the right */
.ovl-panel--dl a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.ovl-panel--dl a .site-nav__dl { flex-shrink: 0; }
.ovl-panel--dl a:hover { padding-left: 0; }   /* keep arrow aligned on hover */
@keyframes ovlFade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* RIGHT — report cover + social (divider on the left edge) */
.ovl-aside {
    border-left: 1px solid rgba(255, 255, 255, .18);
    padding-left: 50px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
/* placeholder cover — ⚠️ swap for real cover image */
.ovl-cover {
    display: block;
    width: 150px;
    height: 206px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .08);
    border: 1px dashed rgba(255, 255, 255, .35);
    margin-bottom: 22px;
}
.ovl-cover-ph {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-align: center;
    padding: 14px;
}
.ovl-cover-ph small { color: rgba(255, 255, 255, .75); font-size: 12px; }
.ovl-cover-ph strong { color: #fff; font-family: var(--font-head); font-size: 22px; }
.ovl-cover-ph em { color: var(--ll-gold); font-size: 11px; font-style: normal; }

.ovl-report-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-family: var(--font-head);
    font-weight: 500;
    font-size: 15px;
    margin-bottom: 18px;
}
.ovl-report-link:hover { color: var(--ll-gold); }
.ovl-web { color: rgba(255, 255, 255, .85); font-size: 15px; margin-bottom: 18px; }
.ovl-web:hover { color: var(--ll-gold); }

.ovl-social { display: flex; gap: 14px; }
.ovl-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(255, 255, 255, .12);
    font-size: 18px;
}
.ovl-social a:hover { background: var(--ll-gold); color: var(--ll-green-dark); }

/* ---------- STICKY STATE ---------- */
header#header.sticky {
    position: fixed;
    top: 0;
    animation: slideDown .4s ease;
}
header#header.sticky .header-wrap {
    background-color: #fff;
    box-shadow: 0 4px 20px rgba(8, 54, 42, .16);
}
@keyframes slideDown {
    from { transform: translateY(-100%); }
    to   { transform: translateY(0); }
}

/*-----------Header Css End-------------*/


/* ============================================================
   SECTION 2: HERO / BANNER
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    /* gradient fallback shown until video/banner.mp4 loads */
    background: linear-gradient(120deg, var(--ll-green-dark) 0%, var(--ll-green) 55%, var(--ll-teal) 120%);
}

/* full-bleed background video */
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
/* show desktop video by default, hide the mobile one */
.hero-video--mobile { display: none; }

/* dark wash so the copy stays legible over any footage */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg,
        rgba(8, 54, 42, .88) 0%,
        rgba(8, 54, 42, .60) 45%,
        rgba(8, 54, 42, .15) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: var(--header-h);   /* clear the floating header on short screens */
}

.hero-title {
    color: var(--ll-green);
    font-family: var(--font-head);
    font-size: 36px;
    line-height: 1.28;
    font-weight: 500;
    margin-bottom: 18px;
}
.hero-title span {
    display: block;
    
}

.hero-sub {
     color: var(--ll-green);
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 500;
    letter-spacing: .4px;
}

/* ---------- shared pill button (white fill, purple outline) ---------- */
.ll-btn {
    display: inline-block;
    margin-top: 25px;
    font-family: var(--font-head);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: .1em;
    line-height: 1;
    color: var(--ll-green);
    background: #fff;
    border: 2px solid var(--ll-green);
    border-radius: 999px;
    padding: 14px 30px;
   
    transition: background .25s ease, color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.ll-btn:hover {
    background: var(--ll-green);
    color: #fff;
    transform: translateY(-2px);
   
}
.ll-btn:active { transform: translateY(0); }

/* dark variant kept for compatibility — identical to the base pill */
.ll-btn--dark { color: var(--ll-green); border-color: var(--ll-green); }
.ll-btn--dark:hover { background: var(--ll-green); color: #fff; }

/* Hero CTA group (Read More + Watch Video side by side) */
.hero-cta-group { display: flex; gap: 14px; flex-wrap: wrap; align-items: stretch; margin-top: 25px; }
.hero-cta-group .ll-btn { margin-top: 0; display: inline-flex; align-items: center; justify-content: center; }

/* On mobile, keep both buttons in one row (left aligned, not stacked) */
@media (max-width: 767px) {
    .hero-cta-group { flex-wrap: nowrap; gap: 10px; }
    .hero-cta-group .ll-btn { padding: 12px 20px; font-size: 12px; white-space: nowrap; }
}

/* Watch Video button (a <button>, so reset native styles + add play icon) */
.ll-btn--video { display: inline-flex; align-items: center; gap: 9px; cursor: pointer; }
.ll-btn__play {
    display: inline-flex; align-items: center; justify-content: center;
    width: 20px; height: 20px; border-radius: 50%;
    font-size: 9px; line-height: 1; padding-left: 1px;
    background: var(--ll-green); color: #fff;
    transition: background .25s ease, color .25s ease;
}
.ll-btn--video:hover .ll-btn__play { background: #fff; color: var(--ll-green); }

/* ============================================================
   VIDEO POPUP / MODAL
   ============================================================ */
.video-modal { position: fixed; inset: 0; z-index: 9999; display: none; }
.video-modal.is-open { display: flex; align-items: center; justify-content: center; }
.video-modal__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.82); }
.video-modal__dialog { position: relative; width: 90%; max-width: 920px; }
.video-modal__frame {
    position: relative; width: 100%; padding-top: 56.25%;   /* 16:9 */
    background: #000; border-radius: 8px; overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.video-modal__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-modal__close {
    position: absolute; top: -46px; right: 0;
    width: 38px; height: 38px; border: 0; border-radius: 50%;
    background: #fff; color: #1a1a1a; font-size: 24px; line-height: 1;
    cursor: pointer; transition: transform .2s ease;
}
.video-modal__close:hover { transform: scale(1.08); }
@media (max-width: 600px) {
    .video-modal__close { top: -42px; width: 34px; height: 34px; font-size: 22px; }
}


/* ============================================================
   SECTION 3: ABOUT THE REPORT — scroll-driven image reveal
   (sizes/opacities are scrubbed to scroll by JS in app.js)
   ============================================================ */
.reveal {
    position: relative;
    height: 250vh;            /* scroll distance that drives the reveal */
    background: #fff;
}
.reveal-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* the scaling image box — width/height/border-radius set inline by JS */
.reveal-media {
    position: relative;
    width: 300px;
    height: 400px;
    border-radius: 150px;
    overflow: hidden;
    will-change: width, height, border-radius;
}
.reveal-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* black transparency wash over the (now full-screen) image */
.reveal-dark {
    position: absolute;
    inset: 0;
    background: #000;
    opacity: 0;              /* JS ramps this up */
    pointer-events: none;
    will-change: opacity;
}

/* copy revealed on top */
.reveal-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 24px;
    opacity: 0;             /* JS reveals + slides this up */
    pointer-events: none;
    will-change: opacity, transform;
}
.reveal-content h2 {
    color: #fff;
    font-size: 40px;
    margin-bottom: 13px;
}
.reveal-content p {
    color: rgba(255, 255, 255, .92);
    max-width: 720px;
    margin: 0 auto 10px;
}


/* ============================================================
   SECTION 4: FY 2025-26 HIGHLIGHTS — scroll-driven KPI odometer
   (number scroll + counter/label updates done by JS in app.js)
   ============================================================ */
.highlights {
    position: relative;
    height: calc(var(--hl-count, 6) * 90vh);  /* scroll distance */
    background: #3e125b;
}
.hl-stage {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr auto auto;   /* heading | number | label-with-number */
    align-items: center;
    gap: 30px;
    /* align content to the same container width as the header */
    padding-left: max(15px, calc((100% - 1140px) / 2));
    padding-right: max(15px, calc((100% - 1140px) / 2));
}
/* decorative dot patterns — top-left (faded) + bottom-right */
.hl-stage::before,
.hl-stage::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
    z-index: 0;
}
.hl-stage::before {
    top: 0;
    left: 0;
    background-image: url("../images/dot1.webp");
    background-position: top left;
    opacity: .7;
}
.hl-stage::after {
    bottom: 0;
    right: 0;
    background-image: url("../images/dot2.webp");
    background-position: bottom right;
}
/* keep content above the dots */
.hl-left, .hl-center, .hl-right { position: relative; z-index: 1; }

/* LEFT */
.hl-left { justify-self: start; max-width: 320px; }
.hl-heading {
    color: #fff;
    font-size: 34px;
    line-height: 1.2;
    margin-bottom: 16px;
}
.hl-counter {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 18px;
    letter-spacing: .15em;
    color: rgba(255, 255, 255, .8);
}
.hl-counter .hl-index { color: var(--ll-gold); }

/* CENTER pill */
.hl-center { justify-self: center; }
.hl-pill {
    --pill-h: 220px;
    position: relative;
    width: 380px;
    max-width: 60vw;
    height: var(--pill-h);
    background: #fff;
    border-radius: 999px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, .28);
    /* 3D depth for the picker wheel */
    perspective: 700px;

}
/* 3D drum that holds the numbers */
.hl-numbers {
    position: absolute;
    inset: 0;
    transform-style: preserve-3d;
}
/* each number sits stacked; JS rotates/translates it onto the cylinder */
.hl-number {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #2b2b2b;
    font-family: var(--font-head);
    font-weight: 700;
    line-height: 1;
    backface-visibility: hidden;
    will-change: transform, opacity;
}
.hl-number span { font-size: clamp(38px, 5vw, 62px); letter-spacing: -.02em; }
.hl-number small {
    font-size: 0.32em;          /* relative to the big figure */
    font-weight: 600;
    color: var(--ll-grey);
    margin-left: 5px;
    vertical-align: baseline;   /* sits on the figure's baseline (bottom) */
}

/* RIGHT label (sits right next to the number) */
.hl-right { justify-self: start; width: 220px; }
.hl-desc {
    position: relative;
    width: 100%;
    min-height: 100px;
}
.hl-desc-item {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    color: #fff;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 24px;
    line-height: 1.3;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .4s ease, transform .4s ease;
    pointer-events: none;
}
.hl-desc-item.is-active {
    opacity: 1;
    transform: translateY(0);
}

/* Read More under the counter */
.hl-cta { margin-top: 26px; }


/* ============================================================
   SECTION 5: LAURUS AT A GLANCE
   ============================================================ */
.glance {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
    padding: 90px 0 70px;
}
.glance-eyebrow {
    display: block;
    color: #8ec740;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
/* 2-column: image (50%) | content (50%) */
.glance-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.glance-layout > * { min-width: 0; }   /* let the carousel column shrink (no overflow) */
.glance-body { min-width: 0; overflow: hidden; }
.glance-media { align-self: stretch; }
.glance-media img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    border-radius: 18px;
}

.glance-title {
    text-align: left;
    font-size: 40px;
    color: var(--ll-green);
    margin-bottom: 16px;
}
.glance-intro {
    color: var(--ll-grey);
    font-size: 16px;
    line-height: 26.biz-sub h4px;
}

/* --- KPI slider (Owl Carousel) --- */
.glance-slider { position: relative; }

.glance-card {
    background: #eef3e2;             /* soft green wash (matches reference box) */
    border-radius: 18px;
    padding: 15px;
    min-height: 114px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: transform .3s ease, box-shadow .3s ease;
}
.glance-card:hover {
    transform: translateY(-4px);

}

/* each stat = number line + label line */
.stat-num {
    font-family: var(--font-head);
    font-weight: 500;
    font-size:30px;
    line-height: 1.05;
    color: var(--ll-green);
}
.stat-num sup { font-size: .5em; }
.stat-label {
    margin-top: 8px;
    font-size: 15px;
    line-height: 21px;
    color: var(--ll-grey);
}

/* controls row: button (left), dots (center), arrows (right) */
.glance-controls {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    column-gap: 20px;
    min-height: 52px;
    margin-top: 36px;
}
.glance-explore {
    margin-top: 0;
    justify-self: start;
}
.glance-right {
    display: flex;
    align-items: center;
    justify-self: end;
}
.glance-count {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: .12em;
    color: var(--ll-grey);
}
.glance-count b { color: var(--ll-gold); font-weight: 700; }

/* Owl nav arrows */
.glance-controls .owl-nav {
    display: flex;
    gap: 14px;
    margin: 0;
}
.glance-controls .owl-nav button.owl-prev,
.glance-controls .owl-nav button.owl-next {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1.5px solid var(--ll-green) !important;
    color: var(--ll-green) !important;
    background: transparent !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background .25s ease, color .25s ease;
}
.glance-controls .owl-nav button.owl-prev:hover,
.glance-controls .owl-nav button.owl-next:hover {
    background: var(--ll-green) !important;
    color: #fff !important;
}
.glance-controls .owl-nav button.disabled { opacity: .35; pointer-events: none; }
.glance-controls .owl-arrow svg { width: 18px; height: 18px; display: block; }

/* Owl dots now sit in the center grid column */
.glance-controls .owl-dots {
    position: static;
    transform: none;
    justify-self: center;
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0;
    border: none;
}
.glance-controls .owl-dots .owl-dot { display: flex; align-items: center; }
.glance-controls .owl-dots .owl-dot,
.glance-controls .owl-dots .owl-dot:focus {
    background: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    padding: 0;
}
.glance-controls .owl-dots .owl-dot span {
    width: 9px;
    height: 9px;
    margin: 0;
    background: rgba(14, 77, 60, .25);
    border-radius: 50%;
    display: block;
    transition: background .25s ease, width .25s ease;
}
.glance-controls .owl-dots .owl-dot.active span {
    background: var(--ll-gold);
    width: 24px;
    border-radius: 6px;
}

/* recognition cards */
.stat--award .stat-num { font-size: clamp(24px, 2.4vw, 32px); }
.stat--award .stat-num span { font-size: .5em; font-weight: 600; }


/* ============================================================
   SECTIONS 6 & 7: CHAIRMAN'S STATEMENT / CEO'S MESSAGE
   ============================================================ */
/* Two full-screen "foreword" sections, content vertically centred.
   Chairman: image-left on grey.  CEO: image-right on white. */
.fwd {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 90px 0;
}
.fwd--chairman { background: #f6f8f9; }   /* Chairman — grey */
.fwd--ceo      { background: #fff; }       /* CEO — white */

.fwd-grid {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;   /* image | text */
    gap: 70px;
    align-items: center;
}
.fwd-grid > * { min-width: 0; }

/* CEO: flip so the image sits on the right */
.fwd--ceo .fwd-grid { grid-template-columns: 1.08fr 0.92fr; }
.fwd--ceo .fwd-media { order: 2; }
.fwd--ceo .fwd-body  { order: 1; }

/* portrait in an oval */
.fwd-media { display: flex; justify-content: center; }
.fwd-portrait {
                 /* tall box + 50% = oval */
}
.fwd-portrait img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* text column */
.fwd-body { position: relative; }
/* keep text above any decorative layer */
.fwd-eyebrow,
.fwd-title,
.fwd-quote,
.fwd-by,
.fwd-body .ll-btn { position: relative; z-index: 1; }

/* green circle blob sits BEHIND the quote paragraph */
.fwd-quote::before {
    content: "";
    position: absolute;
    z-index: -1;
        top: -11px;
    left: -14px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #8ec740;
}

.fwd-eyebrow {
    display: block;
    color: #8ec740;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: .1em;
    margin-bottom: 14px;
}
.fwd-title {
    color: var(--ll-green);
    font-family: var(--font-head);
    font-size: 42px;
    font-weight: 700;
    line-height: 1.14;
    margin-bottom: 26px;
}
.fwd-quote {
    font-size: 17px;
    line-height: 28px;
    color: var(--ll-grey);
    margin-bottom: 26px;
    max-width: 560px;
}
.fwd-by { margin-bottom: 15px; font-size: 17px; }
.fwd-by b   { color: var(--ll-green); font-family: var(--font-head); font-weight: 700; }
.fwd-by span { color: var(--ll-grey); }


/* ============================================================
   SECTION 7b: BUSINESS REVIEW — full-screen thumbnail slider
   ============================================================ */
.brv {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    color: #fff;
    display: flex;
    margin-bottom: 60px;          /* gap before the next section */
}

/* crossfading background layers */
.brv-bgs { position: absolute; inset: 0; z-index: 0; }
.brv-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.06);
    transition: opacity 1s ease, transform 6s ease;
}
.brv-bg.is-active { opacity: 1; transform: scale(1); }

/* legibility wash — darker at the bottom + a touch on the left */
.brv-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(to top, rgba(0,0,0,.78) 0%, rgba(0,0,0,.30) 55%, rgba(0,0,0,.30) 100%),
        linear-gradient(to right, rgba(0,0,0,.45) 0%, rgba(0,0,0,0) 55%);
}

.brv-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: calc(var(--header-h) + 60px);
    padding-bottom: 40px;            /* thumbnails sit 40px off the bottom */
}

/* top eyebrow — margin-top:auto balances the thumbnails' margin-top:auto,
   so the text block centres vertically between the header and the thumbnails */
.brv-top { margin-top: auto; margin-bottom: 18px; }
.brv-eyebrow {
    color: #8ec740;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: .14em;
    margin-right: 14px;
}
.brv-sub {
    font-family: var(--font-head);
    font-weight: 500;
    font-size: 18px;
    letter-spacing: .04em;
    color: rgba(255,255,255,.85);
    display: block;
}

/* big heading — same scale as other section headings */
.brv-title {
    color: #fff;
    font-family: var(--font-head);
    font-size: 38px;
    line-height: 1.18;
    margin-bottom: 18px;             /* heading → paragraph gap (matches other sections) */
}

/* intro paragraph + Read More (grouped under the heading) */
.brv-copy { max-width: 560px; }      /* ~3 lines of intro text */
.brv-intro { font-size: 15px; line-height: 1.6; color: rgba(255,255,255,.9); margin-bottom: 20px; }
.brv-cta { margin-top: 0; }

/* numbered thumbnail nav — pinned to the bottom-right */
.brv-thumbs {
    display: flex;
    gap: 22px;
    margin-top: auto;                /* push the row to the bottom */
    align-self: flex-end;            /* right-aligned */
}
.brv-thumb {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    text-align: left;
    width: 130px;
    opacity: .75;
    transition: opacity .3s ease;
}
.brv-thumb.is-active { opacity: 1; }
.brv-thumb:hover { opacity: 1; }
.brv-thumb-no {
    display: block;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 14px;
    color: #fff;
    margin-bottom: 8px;
}
.brv-thumb-img {
    display: block;
    width: 100%;
    height: 78px;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
}
/* progress underline — fills while the slide is active */
.brv-thumb-bar {
    display: block;
    height: 3px;
    margin-top: 8px;
    background: rgba(255,255,255,.3);
    border-radius: 3px;
    overflow: hidden;
}
.brv-thumb-bar i {
    display: block;
    height: 100%;
    width: 0;                 /* width is driven by JS (requestAnimationFrame) */
    background: #8ec740;
}


/* ============================================================
   SECTIONS 8–12: STACKED SCROLL PANELS (Strategic Review)
   Each panel pins; the next slides up over it (rounded top) while
   the previous zooms out + blurs (transforms set by JS in app.js).
   ============================================================ */
.stack { position: relative; }

.stack-panel {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: visible;   /* don't square-clip the scaling card */
}

/* the card that JS scales + blurs — rounded on ALL corners so it
   never looks cut when it zooms out */
.sp-scale {
    position: absolute;
    inset: 0;
    transform-origin: center;
    border-radius: 28px;
    overflow: hidden;
    will-change: transform, filter, opacity;
}

/* placeholder gradient backgrounds — swap background-image for real photos */
.sp-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-color: #3e125b;
}
.sp--operating     .sp-bg { background-image: url("../images/operating-enironment-img.png"); }
.sp--manufacturing .sp-bg { background-image: url("../images/manufacturing-s-img.png"); }
.sp--rd            .sp-bg { background-image: url("../images/rdedge.webp"); }
.sp--quality       .sp-bg { background-image: url("../images/quality-compliance-img.png"); }
.sp--it            .sp-bg { background-image: url("../images/Information-Technology.webp"); }

/* dark wash for text legibility — only at the BOTTOM, behind the title + stats.
   The top of every photo stays fully visible (no full-image black overlay). */
.sp-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
        rgba(0,0,0,.9)  0%,
        rgba(0,0,0,.7)  30%,
        rgba(0,0,0,.35) 55%,
        rgba(0,0,0,0)   80%);
}

/* content is bottom-anchored and held in a .container so it lines up
   with the header / other sections */
.sp-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    padding: clamp(40px, 7vh, 80px) 0;
    color: #fff;
}
.sp-content > .container { width: 100%; }

/* small eyebrow above the panel heading */
.sp-eyebrow {
    display: block;
    color: #8ec740;
    text-transform: uppercase;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: .14em;
    margin-bottom: 12px;
}
.sp-title {
    color: #fff;
    font-size: 36px;
    line-height: 1.15;
    margin-bottom: 14px;
}
.sp-intro {
    max-width: 900px;
    color: rgba(255, 255, 255, .9);
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 24px;
}

/* stat columns separated by thin vertical dividers */
.sp-stats { display: flex; flex-wrap: wrap; align-items: flex-start; margin-bottom: 22px; }
.sp-stat {
    padding: 0 26px;
    border-left: 1px solid rgba(255, 255, 255, .28);
}
.sp-stat:first-child { padding-left: 0; border-left: none; }
.sp-stat-num {
    font-family: var(--font-head);
    font-weight: 500;
    font-size: 30px;
    line-height: 1;
    color: var(--ll-gold);
    white-space: nowrap;
}
.sp-stat-num small { font-size: .45em; font-weight: 600; margin-left: 5px; }
.sp-stat-label {
    margin-top: 6px;
    font-size: 13px;
    color: rgba(255, 255, 255, .85);
}

/* capability chips (site-types / platforms / regulators) */
.sp-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; }
.sp-chips span {
    border: 1px solid rgba(255, 255, 255, .4);
    padding: 6px 14px;
    border-radius: 999px;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 12px;
}

/* Read More — left aligned at the bottom (override the shared margin-top) */
.sp-content .ll-btn { margin-top: 0; }


/* ============================================================
   ANIMATED TESTIMONIALS (HTML/CSS port)
   ============================================================ */
.testimonials { padding: 120px 0; background: var(--ll-bg-light); overflow: hidden; }
.tst-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* left */
.tst-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(14, 77, 60, .1);
    color: var(--ll-green);
    padding: 6px 15px;
    border-radius: 999px;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 20px;
}
.tst-badge i { color: var(--ll-gold); }
.tst-title { font-size: 36px; margin-bottom: 16px; }
.tst-sub { color: var(--ll-grey); font-size: 17px; line-height: 27px; max-width: 520px; margin-bottom: 28px; }
.tst-sub em { color: var(--ll-gold); font-style: normal; font-size: 13px; }
.tst-dots { display: flex; gap: 10px; }
.tst-dot {
    height: 10px; width: 10px;
    padding: 0;
    border: none;
    border-radius: 999px;
    background: rgba(14, 77, 60, .25);
    cursor: pointer;
    transition: width .3s ease, background .3s ease;
}
.tst-dot.is-active { width: 38px; background: var(--ll-green); }

/* right: rotating cards */
.tst-cards { position: relative; min-height: 440px; }
.tst-card {
    position: absolute;
    inset: 0;
    background: #fff;
    border: 1px solid var(--ll-line);
    box-shadow: var(--shadow);
    border-radius: 18px;
    padding: 34px;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateX(60px) scale(.94);
    transition: opacity .5s ease, transform .5s ease;
    pointer-events: none;
}
.tst-card.is-active { opacity: 1; transform: translateX(0) scale(1); pointer-events: auto; z-index: 2; }
.tst-stars { display: flex; gap: 6px; color: var(--ll-gold); font-size: 17px; margin-bottom: 20px; }
.tst-quote-wrap { position: relative; flex: 1; margin-bottom: 18px; }
.tst-quote-wrap .fa-quote-left { position: absolute; top: -8px; left: -4px; font-size: 34px; color: rgba(14, 77, 60, .12); }
.tst-content {
    position: relative;
    z-index: 1;
    font-family: var(--font-head);
    font-weight: 500;
    font-size: 18px;
    line-height: 1.6;
    color: var(--ll-ink);
}
.tst-sep { border: none; border-top: 1px solid var(--ll-line); margin: 16px 0; }
.tst-author { display: flex; align-items: center; gap: 14px; }
.tst-avatar { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 2px solid var(--ll-line); }
.tst-author h3 { font-size: 16px; color: var(--ll-ink); }
.tst-author p { font-size: 13px; color: var(--ll-grey); margin-top: 2px; }

/* decorative blocks */
.tst-deco { position: absolute; width: 90px; height: 90px; border-radius: 18px; z-index: 0; }
.tst-deco-1 { bottom: -22px; left: -22px; background: rgba(14, 77, 60, .06); }
.tst-deco-2 { top: -22px; right: -22px; background: rgba(200, 169, 81, .14); }

/* logo cloud */
.tst-logos { margin-top: 80px; text-align: center; }
.tst-logos h3 { font-size: 13px; color: var(--ll-grey); font-weight: 500; margin-bottom: 26px; }
.tst-logos-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 28px 50px; }
.tst-logos-row span { font-family: var(--font-head); font-weight: 600; font-size: 22px; color: rgba(90, 107, 107, .5); }


/* ---------- Section 13: Strategic Priorities pillar cards ---------- */
.tst-cta { margin-top: 30px; }
.tst-cta .ll-btn { margin-top: 0; }

.pillar-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}
.pillar-icon {
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;

}

.pillar-no {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 36px;
    color: rgba(14, 77, 60, .14);
    line-height: 1;
}
.pillar-name {
    font-size: 26px;
    color: var(--ll-green);
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: 10px;
}
.pillar-obj {
    flex: 1;
    font-family: var(--font-head);
    font-weight: 500;
    font-size: 17px;
    line-height: 1.5;
    color: var(--ll-ink);
}
.pillar-hl small {
    display: block;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--ll-gold-dark);
    margin-bottom: 6px;
}
.pillar-hl p { font-size: 15px; line-height: 23px; color: var(--ll-grey); }

/* Strategic Objectives list inside each pillar card */
.pillar-objs { flex: 1; }
.pillar-objs small {
    display: block;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--ll-gold-dark);
    margin-bottom: 12px;
}
.pillar-objs ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.pillar-objs li {
    position: relative;
    padding-left: 26px;
    font-size: 14px;
    line-height: 1.4;
    color: var(--ll-grey);
}
.pillar-objs li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 1px;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background: #8ec740;
    color: #fff;
    font-size: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* coloured card background per pillar */
.pillar--innovate { background: #3e125b; }   /* Innovate — purple */
.pillar--expand   { background: #7fc349; }   /* Expand  — green  */
.pillar--excel    { background: #3cbbb5; }   /* Excel   — teal   */

/* text turns white/translucent so it stays readable on the colour */
.pillar--innovate, .pillar--expand, .pillar--excel { border-color: transparent; }
.pillar--innovate .pillar-name,
.pillar--expand   .pillar-name,
.pillar--excel    .pillar-name { color: #fff; }
.pillar--innovate .pillar-obj,
.pillar--expand   .pillar-obj,
.pillar--excel    .pillar-obj { color: rgba(255, 255, 255, .92); }
.pillar--innovate .pillar-no,
.pillar--expand   .pillar-no,
.pillar--excel    .pillar-no { color: rgba(255, 255, 255, .28); }
.pillar--innovate .pillar-hl small,
.pillar--expand   .pillar-hl small,
.pillar--excel    .pillar-hl small { color: rgba(255, 255, 255, .85); }
.pillar--innovate .pillar-hl p,
.pillar--expand   .pillar-hl p,
.pillar--excel    .pillar-hl p { color: rgba(255, 255, 255, .8); }
/* objectives list — white on the coloured cards */
.pillar--innovate .pillar-objs small,
.pillar--expand   .pillar-objs small,
.pillar--excel    .pillar-objs small { color: rgba(255, 255, 255, .9); }
.pillar--innovate .pillar-objs li,
.pillar--expand   .pillar-objs li,
.pillar--excel    .pillar-objs li { color: rgba(255, 255, 255, .92); }
/* bullet check: green on purple/teal, white-on-purple on the green card */
.pillar--innovate .pillar-objs li::before,
.pillar--excel    .pillar-objs li::before { background: #8ec740; color: #fff; }
.pillar--expand   .pillar-objs li::before { background: #3e125b; color: #fff; }


/* eyebrow above the Strategic Priorities heading */
.tst-eyebrow {
    display: block;
    color: #3cbbb5;
    text-transform: uppercase;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: .14em;
    margin-bottom: 12px;
}


/* ============================================================
   SECTION 14: MATERIALITY — ESG category columns
   ============================================================ */
.materiality { padding: 90px 0; background: #fff; }
.mat-title { text-align: center; font-size: 36px; margin-bottom: 16px; }
.mat-intro {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 44px;
    color: var(--ll-grey);
    font-size: 17px;
    line-height: 28px;
}

.mat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

/* one card per ESG category — accent set via --cat */
.mat-col {
    background: var(--ll-bg-light);
    border-radius: 16px;
    border-top: 4px solid var(--cat);
    padding: 26px;
    min-height: 284px;
}
.mat-col--env { --cat: var(--ll-green); }
.mat-col--soc { --cat: var(--ll-teal); }
.mat-col--gov { --cat: var(--ll-gold-dark); }

.mat-head {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 18px;
    color: var(--cat);
    margin-bottom: 18px;
}
.mat-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--cat); }

.mat-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.mat-chip {
    display: inline-block;
    background: #fff;
    border: 1px solid var(--ll-line);
    color: var(--ll-ink);
    padding: 8px 15px;
    border-radius: 999px;
    font-family: var(--font-head);
    font-weight: 500;
    font-size: 13px;
    transition: color .25s ease, border-color .25s ease, transform .25s ease;
}
.mat-chip:hover {
    border-color: var(--cat);
    color: var(--cat);
    transform: translateY(-2px);
}

.mat-cta { text-align: center; margin-top: 40px; }
.mat-cta .ll-btn { margin-top: 0; }


/* ============================================================
   SECTION 15: STAKEHOLDER ENGAGEMENT — Buzzvel "Moments"
   (group transforms set by JS in app.js)
   ============================================================ */
.moments { position: relative; height: 360vh; background: var(--ll-green-dark); }
.moments-stage {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    background-image: url("../images/stakeholder-engagement-img.png");
    background-size: cover;
    background-position: center;
}
/* dark wash so the white heading + cards stay legible over the photo */
.moments-stage::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: rgba(8, 54, 42, .72);
}

/* heading (36px) — JS drifts it from centre up to the top of the block */
.moments-title {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: 6;
    text-align: center;
    color: #fff;
    font-size: 36px;
    will-change: transform;
}

/* Read More — positioned by JS just below the settled cards */
.moments-cta {
    position: absolute;
    left: 50%;
    top: 0;
    z-index: 40;
    transform: translateX(-50%);
    opacity: 0;
    will-change: transform, opacity;
}
.moments-cta .ll-btn { margin-top: 0; }

/* card layer */
.moments-deck { position: absolute; inset: 0; z-index: 2; }

/* each card — JS sets width + transform (rise from bottom → deal into row) */
.mcard {
    position: absolute;
    left: 50%;
    top: 0;                /* JS sets the exact top via transform */
    width: 180px;
    min-height: 200px;
    background: #fff;
    border-radius: 14px;
    padding: 22px 18px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .4);
    transform: translate(-50%, 0);
    opacity: 0;
    will-change: transform, opacity;
}
.mcard-no { font-family: var(--font-head); font-weight: 700; font-size: 14px; color: var(--ll-gold); }
.mcard h3 { font-size: 18px; color: var(--ll-green); margin: 10px 0 12px; line-height: 1.25; }
.mcard p { font-size: 13px; color: var(--ll-grey); line-height: 20px; }
.mcard p small {
    display: block;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 10px;
    font-weight: 600;
    color: var(--ll-gold-dark);
    margin-bottom: 5px;
}


/* ============================================================
   SECTION 16: RISK MANAGEMENT — scroll-driven ERM step reveal
   (active steps / track fill / pills set by JS in app.js)
   ============================================================ */
.erm { position: relative; height: 280vh; background: #fff; }
.erm-stage {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.erm-title { text-align: center; font-size: 36px; margin-bottom: 16px; }
.erm-intro {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 56px;
    color: var(--ll-grey);
    font-size: 17px;
    line-height: 28px;
}

/* 5-step flow */
.erm-flow { position: relative; display: flex; }
.erm-track {
    position: absolute;
    top: 9px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: var(--ll-line);
    z-index: 1;
}
.erm-track-fill { position: absolute; left: 0; top: 0; height: 100%; width: 0; background: var(--ll-gold); }

.erm-step {
    flex: 1;
    text-align: center;
    padding: 0 14px;
    opacity: .4;
    transition: opacity .35s ease;
}
.erm-step.is-active { opacity: 1; }
.erm-dot {
    display: block;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    margin: 0 auto 22px;
    background: #fff;
    border: 3px solid #cdd8d4;
    position: relative;
    z-index: 2;
    transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.erm-step.is-active .erm-dot {
    background: var(--ll-green);
    border-color: var(--ll-green);
    box-shadow: 0 0 0 5px rgba(14, 77, 60, .15);
}
.erm-step h3 { font-size: 18px; color: var(--ll-green); margin-bottom: 8px; }
.erm-step p { font-size: 13px; line-height: 20px; color: var(--ll-grey); }

/* risk-category pills */
.erm-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 54px;
    opacity: 0;
    will-change: opacity, transform;
}
.erm-pills span {
    border: 1px solid var(--ll-line);
    color: var(--ll-green);
    background: var(--ll-bg-light);
    padding: 8px 18px;
    border-radius: 999px;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 13px;
}
.erm-cta { text-align: center; margin-top: 34px; opacity: 0; }
.erm-cta .ll-btn { margin-top: 0; }


/* ============================================================
   SECTION 17: ESG APPROACH — gooey tabs
   --esg-color is set per active tab by JS
   ============================================================ */
.esg { position: relative; overflow: hidden; padding: 90px 0; background: #f7fbf3; --esg-color: #7fc34a; }
/* decorative dots — top-left + bottom-right */
.esg::before,
.esg::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 0;
    pointer-events: none;
}
.esg::before { top: -23px; left: 0; background-image: url("../images/esg-dot-1.svg");transform: rotate(91deg);width: 300px;opacity: 0.5;
    height: 344px; }
.esg::after { bottom: 0; right: 0; background-image: url("../images/esg-dot-2.svg");width:250px;height:313px;opacity:0.5; }
.esg .container { position: relative; z-index: 1; }
.esg-goo-filter { position: absolute; width: 0; height: 0; }
.esg-eyebrow {
    display: block;
    text-align: center;
    color: #3cbbb5;
    text-transform: uppercase;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: .14em;
    margin-bottom: 12px;
}
.esg-title { text-align: center; font-size: 36px; margin-bottom: 16px; }
.esg-intro {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 44px;
    color: var(--ll-grey);
    font-size: 17px;
    line-height: 28px;
}

/* ESG image (replaces the old gooey tab panel) */
.esg-media { max-width: 1000px; margin: 0 auto; }
.esg-media img { width: 100%; height: auto; display: block; border-radius: 18px;     max-width: 920px;
    margin: auto;}

.esg-tabs-wrap { position: relative; max-width: 920px; margin: 0 auto; }

/* gooey layer: indicator block + panel block merge via the SVG filter */
.esg-goo { filter: url(#esg-gooey); }
.esg-tabbar { position: relative; height: 56px; }
.esg-ind {
    position: absolute;
    top: 0;
    left: 0;
    width: 33.3333%;
    height: 100%;
    background: var(--esg-color);
    border-radius: 14px 14px 0 0;
    transition: left .45s cubic-bezier(.6, .2, .2, 1), background .45s ease;
}
.esg-panel-bg {
    height: 280px;
    background: var(--esg-color);
    border-radius: 14px;
    transition: background .45s ease;
}

/* tab labels overlay (sharp, clickable) */
.esg-tabs {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 56px;
    display: flex;
    z-index: 3;
}
.esg-tab {
    flex: 1;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 15px;
    color: var(--ll-grey);
    transition: color .3s ease;
}
.esg-tab.is-active { color: #fff; }

/* content panes overlay */
.esg-panes { position: absolute; top: 56px; left: 0; right: 0; height: 280px; z-index: 3; }
.esg-pane {
    position: absolute;
    inset: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 22px 34px;
    padding: 30px 40px;
    opacity: 0;
    transform: translateY(24px);
    filter: blur(8px);
    pointer-events: none;
    transition: opacity .3s ease, transform .3s ease, filter .3s ease;
}
.esg-pane.is-active { opacity: 1; transform: none; filter: none; pointer-events: auto; }
.esg-tile { position: relative; flex: 1 1 180px; max-width: 220px; text-align: center; color: #fff; }
.esg-num { display: block; font-family: var(--font-head); font-weight: 500; font-size: 30px; line-height: 1.05; margin-bottom: 8px; }
/* fixed-height vertical divider centred in the gap between tiles */
.esg-tile:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -17px;                 /* half of the 34px column gap */
    transform: translateY(-50%);
    width: 1px;
    height: 64px;
    background: rgba(255, 255, 255, .35);
}
.esg-lbl { display: block; font-size: 13px; line-height: 19px; color: rgba(255, 255, 255, .9); }

.esg-cta { text-align: center; margin-top: 38px; }
.esg-cta .ll-btn { margin-top: 0; }


/* ============================================================
   SECTION 18: AWARDS & RECOGNITION — 3-up Owl slider
   ============================================================ */
.awards { padding: 90px 0; background: #f7fbf3; }
.awards-title { text-align: center; font-size: 36px; margin-bottom: 44px; }

.award-card {
    background: var(--ll-bg-light);
    border-radius: 18px;
    padding: 28px 26px 32px;
    text-align: center;
    min-height: 410px;          /* equalise card heights across the slider */
    display: flex;
    flex-direction: column;
}
/* alternating card backgrounds: odd = green, even = teal */
.award-card--odd  { background: #e0efd2; }
.award-card--even { background: #deefed; }
.award-img {
    height: 150px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}
.award-img i { font-size: 52px; color: var(--ll-gold); }   /* ⚠️ card 6 still uses a placeholder icon */
.award-img img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; }
.award-badge {
    display: inline-block;
    align-self: center;          /* don't stretch to full card width */
    min-width: 130px;            /* all badges share the same width */
    text-align: center;
    background: #7fc349;
    color: #fff;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 13px;
    padding: 6px 15px;           /* 15px left/right */
    border-radius: 999px;
    margin-bottom: 16px;
}
.award-desc { color: var(--ll-ink); font-size: 16px; line-height: 22px; }
.award-star { display: none; margin-top: auto; padding-top: 16px; color: var(--ll-teal); font-size: 18px; }

/* controls row: dots (left) + arrows (right) */
.awards-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 28px;
}
.awards-controls .owl-nav { display: flex; gap: 14px; margin: 0; }
.awards-controls .owl-nav button.owl-prev,
.awards-controls .owl-nav button.owl-next {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1.5px solid var(--ll-green) !important;
    color: var(--ll-green) !important;
    background: transparent !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background .25s ease, color .25s ease;
}
.awards-controls .owl-nav button:hover { background: var(--ll-green) !important; color: #fff !important; }
.awards-controls .owl-arrow svg { width: 18px; height: 18px; display: block; }
.awards-controls .owl-dots { display: flex; gap: 9px; margin: 0; }
.awards-controls .owl-dots .owl-dot,
.awards-controls .owl-dots .owl-dot:focus {
    background: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    padding: 0;
}
.awards-controls .owl-dots .owl-dot span {
    width: 9px; height: 9px; margin: 0; display: block;
    background: rgba(14, 77, 60, .25); border-radius: 50%;
    transition: background .25s ease, width .25s ease;
}
.awards-controls .owl-dots .owl-dot.active span { background: var(--ll-gold); width: 24px; border-radius: 6px; }


/* ============================================================
   SECTION 19: DOWNLOAD CENTRE + FOOTER
   ============================================================ */
.dlc { padding: 90px 0; }
.dlc-title {
    text-align: center;
    font-size: 36px;
    color: var(--ll-green);
    margin-bottom: 46px;
}

/* 2 columns, filled column-major (left 5, right 5) */
.dlc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(5, auto);
    grid-auto-flow: column;
    column-gap: 56px;
}
.dlc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding: 18px 22px;
    border-bottom: 1px solid var(--ll-line);
    border-radius: 10px;
    color: var(--ll-ink);
    font-family: var(--font-head);
    font-weight: 400;
    font-size: 16px;
    transition: background .3s ease, color .3s ease, border-color .3s ease;
}
.dlc-row .dlc-ic { color: var(--ll-green); display: inline-flex; flex-shrink: 0; transition: color .3s ease; }
.dlc-row:hover {
    background: linear-gradient(90deg, var(--ll-teal), var(--ll-green));
    color: #fff;
    border-color: transparent;
}
.dlc-row:hover .dlc-ic { color: #fff; }

/* footer */
.site-footer {
    background: linear-gradient(90deg, var(--ll-teal), var(--ll-green));
    color: #fff;
    padding: 34px 0;
}
.ftr-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.ftr-links { font-family: var(--font-head); font-weight: 600; font-size: 15px; }
.ftr-links a { color: #fff; }
.ftr-links a:hover { color: var(--ll-gold); }
.ftr-sep { opacity: .5; margin: 0 10px; }
.ftr-copy { font-size: 13px; color: rgba(255, 255, 255, .85); margin-top: 10px; }

.ftr-right { text-align: right; }
.ftr-social { display: flex; align-items: center; justify-content: flex-end; gap: 12px; }
.ftr-social span { font-family: var(--font-head); font-weight: 600; font-size: 14px; }
.ftr-social a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .5);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 15px;
}
.ftr-social a:hover { background: #fff; color: var(--ll-green); }
.ftr-credit { font-size: 12px; color: rgba(255, 255, 255, .8); margin-top: 10px; }
.ftr-credit span { color: rgba(255, 255, 255, .6); }

.ftr-credit a
{
    font-size: 12px;
}
/* ============================================================
   INNER PAGES (about-the-report.html, etc.)
   The header is position:absolute; the page hero carries its own
   top padding to clear the bar, so .inner-main needs no offset.
   ============================================================ */
.inner-page #header { position: absolute; }
.inner-main {
    min-height: 40vh;
    background: #fff;
}

/* ---------- INNER HERO + BREADCRUMB ----------
   Layout mirrors the reference (breadcrumb row, then 2-col hero:
   copy left / square image right). Skinned to the Laurus theme. */
.page-hero {
    min-height: 100vh;
    padding: 0;                     /* inner banners use no top/bottom padding */
    overflow: hidden;
    padding-top: 100px;    
        padding-bottom: 40px;          /* keep the deco circle from causing x-scroll */
}

.page-hero--board {
    min-height: auto;
    height: auto;
}
.page-hero-row {
    align-items: center;
}

/* breadcrumb */
.page-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 24px;
}
.page-breadcrumb a,
.page-breadcrumb span,
.page-breadcrumb strong {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 22px;
    color: var(--ll-grey);
}
.page-breadcrumb a {
    font-weight: 400;
    text-decoration: none;
    transition: color .2s ease;
}
.page-breadcrumb a:hover { color: var(--ll-gold); }
.page-breadcrumb span { color: var(--ll-line); }
.page-breadcrumb strong {
    font-weight: 600;
    color: var(--ll-green);
}

/* glance: business divisions */
.biz-div { padding: 56px 0 64px; background: #eaf4e1; }
.biz-div--plain { background: transparent; }   /* CDMO block — no bg */
.biz-div__title {
    font-family: var(--font-head);
    font-size: 18px;
    line-height: 1.3;
    font-weight: 700;
    color: #7fc349;
    margin-bottom: 26px;
}
/* division name + lead */
.biz-div__name {
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 700;
    color: #00a69e;
    margin-bottom: 14px;
}
.biz-div__lead {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: #5a6b6b;
    margin-bottom: 26px;
}
/* API / FDF sub-blocks */
.biz-div__sub { row-gap: 24px; }
.biz-sub h4 {
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 700;
    color: var(--ll-green);
    margin-bottom: 8px;
}
.biz-sub p {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.55;
    color: #5a6b6b;
    margin-bottom: 12px;
    min-height: 125px;
}
.biz-sub__num {
    font-family: var(--font-head);
    font-size: 24px;
    font-weight: 700;
    color: var(--ll-green);
    line-height: 1.3;
}
.biz-sub__num small { font-size: 16px; }
.biz-sub__lbl {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color:#000;
    margin-top: 4px;
}
/* image (rounded like hero) */
.biz-div__img img { border-radius: 24px; }
@media (max-width: 991px) {
    .biz-div__img { margin-top: 30px; }
}

/* glance: awards and recognitions (grid) */
.awards-sec { padding: 10px 0 80px; }
.awards-sec__title {
    font-family: var(--font-head);
    font-size: 24px;
    font-weight: 700;
    color: #00a69e;
    margin-bottom: 30px;
}
.awards-sec__grid { row-gap: 26px; }
.awards-sec .award-card { min-height: 100%; }

/* glance: our differentiators */
.differentiators { padding: 10px 0 70px; }
.diff-title {
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 700;
    color: var(--ll-green);
    margin-bottom: 30px;
}
.diff-grid { row-gap: 40px; }
.diff-item { position: relative; padding-top: 6px; }
.diff-item__circle {
    position: absolute;
    top: -4px;
    left: -15px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
}
.diff-item__circle img { width: 22px; height: 22px; }
/* alternating circle colours */
.diff-col:nth-child(odd) .diff-item__circle  { background: #8fcbc7; }
.diff-col:nth-child(even) .diff-item__circle { background: #bddda0; }
.diff-item__title {
    position: relative;
    z-index: 1;
    font-family: var(--font-head);
    font-size: 15px;
    line-height: 1.3;
    font-weight: 700;
    color: var(--ll-green);
    margin-bottom: 10px;
}
.diff-item__text {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.55;
    color: #5a6b6b;
    padding-left: 14px;
}

/* glance: at-a-glance stats box */
.glance-stats { padding: 10px 0 70px; }
.glance-stats__box {
    background: #eaf4e1;
    border-radius: 40px;
    padding: 50px 56px;
}
.glance-stats__grid { row-gap: 28px; }
/* vertical dividers between columns (pseudo-element) */
.gcol { position: relative; }
.glance-stats__grid .gcol + .gcol::before {
    content: "";
    position: absolute;
    left: -25%;
    top: 0;
    bottom: 0;
    width: 1px;
    transform: translateX(-50%);
    background:#3e125b;
}
.gstat { margin-bottom: 22px; }
.gstat:last-child { margin-bottom: 0; }
.gstat__num {
    font-family: var(--font-head);
    font-size: 24px;
    font-weight: 700;
    color: var(--ll-green);
    line-height: 1.1;
}
.gstat__num small { font-size: 15px; font-weight: 600; }
.gstat__lbl {
    font-family: var(--font-body);
    font-size: 16px;
    color: #5a6b6b;
    margin-top: 4px;
}
/* awards row */
.glance-stats__awards {
    margin-top: 30px;
    padding-top: 26px;
    border-top: 1px solid #3e125b;
    row-gap: 20px;
}
.gaward { position: relative; }
.glance-stats__awards .gaward + .gaward::before {
    content: "";
    position: absolute;
    left: -15%;
    top: 0;
    bottom: 0;
    width: 1px;
    transform: translateX(-50%);
    background: #3e125b;
}
.gaward__big {
    font-family: var(--font-head);
    font-size: 24px;
    font-weight: 700;
    color:#3e125b;
    line-height: 1.2;
}
.gaward__big sup { font-size: 0.6em; }
.gaward__lbl {
    font-family: var(--font-body);
    font-size: 16px;
    color: #5a6b6b;
    margin-top: 6px;
}
@media (max-width: 767px) {
    .glance-stats__box { padding: 34px 26px; border-radius: 28px; }
    .glance-stats__grid .gcol + .gcol::before,
    .glance-stats__awards .gaward + .gaward::before { display: none; }
}

/* glance: overview narrative (single column) */
.glance-intro { padding: 10px 0 70px; }
.glance-intro__p {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: #5a6b6b;
    margin-bottom: 20px;
}
.glance-intro__p:last-child { margin-bottom: 0; }

/* business model — process tabs (rounded) */
.bmodel { padding: 10px 0 70px; }
.bmodel-mobile-select { display: none; }
.bmodel-tabs { display: flex; align-items: center; }
.bmodel-tab {
    flex: 1 1 0;
    min-height: 48px;
    border: 0;
    border-radius: 999px;
    padding: 12px 18px;
    background: #a4d3d1;           /* non-active */
    color: #3e125b;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 14px;
    line-height: 1.2;
    text-align: center;
    cursor: pointer;
    transition: background .2s ease, color .2s ease;
}
.bmodel-tab.is-active { background: #3e125b; color: #fff; }   /* active */
.bmodel-tab:hover:not(.is-active) { background: #93c7c5; }
/* teal arrow between tabs */
.bmodel-arrow {
    flex: 0 0 auto;
    padding: 0 10px;
    color: #a4d3d1;
    font-size: 20px;
    line-height: 1;
}

/* panes */
.bmodel-panes { margin-top: 34px; }
.bmodel-pane { display: none; }
.bmodel-pane.is-active { display: block; }

/* value creation process (tab 2) */
.vcp-box {
    border: 2px solid #3e125b;       /* border around the section */
    border-radius: 30px;
    overflow: hidden;
}
.vcp-top {
    margin: 0;
    background: #eef6e6;             /* light green wash */
    padding: 30px 24px;
}
.vcp-top .vcp-vm { text-align: center; padding: 6px 24px; }
.vcp-vm h4 {
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 700;
    color: var(--ll-green);
    margin-bottom: 12px;
}
.vcp-vm p {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: #5a6b6b;
}
.vcp-bottom {
    margin: 0;
    background: #fff;
    padding: 28px 24px;
    border-top: 2px solid #7fc349;   /* green divider line */
}
.vcp-half { text-align: center; }
.vcp-half > h4 {
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 700;
    color: var(--ll-green);
    margin-bottom: 22px;
}
.vcp-icons-ph { text-align: center; }
.vcp-icons-ph img { width: 100%; max-width: 355px; height: auto; }

/* stakeholders impacted (below all tabs) */
.stk {
    display: flex;
    align-items: center;
    gap: 36px;
    margin-top: 44px;
}
.stk__head { flex: 0 0 auto; display: flex; align-items: center; gap: 18px; }
.stk__label {
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--ll-green);
}
.stk__arrow {
    width: 0;
    height: 0;
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
    border-left: 32px solid #1c8d8d;
}
.stk__grid {
    flex: 1 1 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 26px;
}
.stk__item { display: flex; align-items: center; gap: 12px; }
.stk__item img { flex: 0 0 auto; width: 44px; height: 44px; }
.stk__item span {
    font-family: var(--font-head);
    font-size: 14px;
    font-weight:700;
    line-height: 1.25;
    color: var(--ll-green);
}
@media (max-width: 767px) {
    .stk { flex-direction: column; align-items: flex-start; gap: 20px; }
    .stk__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .stk__grid { grid-template-columns: 1fr; }
}

/* outcome (tab 4) — gradient boxes (like input), 2 per row */
.oc-grid { row-gap: 24px; }
.oc-box {
    height: 100%;
    border: 2px solid transparent;
    background:
        linear-gradient(to right, #e7f2f1, #fff) padding-box,
        linear-gradient(to right, #3e125b 10%, #fff 60%) border-box;
    border-radius: 100px;
    padding: 26px 36px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 18px;
}
.oc-text {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.4;
    color: #5a6b6b;
    margin: 0;
}
.oc-icons {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}
.oc-ic { height: 48px; width: auto; }
@media (max-width: 575px) {
    .oc-box { border-radius: 28px; padding: 22px 26px; }
}

/* output (tab 3) — 6 separate gradient boxes, 2 per row */
.out-grid { row-gap: 26px; }
.out-box {
    height: 100%;
    border: 2px solid transparent;
    background:
        linear-gradient(to right, #e7f2f1, #fff) padding-box,
        linear-gradient(to right, #3e125b 10%, #fff 60%) border-box;
    border-radius: 30px;
    padding: 28px 32px;
}
.out-list { list-style: none; margin: 0; padding: 0; }
.out-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.45;
    color: #44504f;
}
.out-list li:last-child { margin-bottom: 0; }
.out-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 12px;
    height: 12px;
    background: url('../images/list-marker.svg') no-repeat center / contain;
}
.out-sub { color: #5a6b6b; }
@media (max-width: 767px) {
    .out-grid .col-md-6:first-child { margin-bottom: 26px; }
}

/* business activities + strategy (tab 2) */
.bizact {
    margin-top: 0px;
    background: #eef6e6;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    padding: 28px 34px;
}
.bizact__title {
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 700;
    color: var(--ll-green);
    margin-bottom: 18px;
}
.bizact__list { list-style: none; margin: 0; padding: 0; }
.bizact__list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.45;
    color: #44504f;
}
.bizact__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 12px;
    height: 12px;
    background: url('../images/list-marker.svg') no-repeat center / contain;
}
/* strategy row */
.strategy {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-top: 18px;
    padding-top: 24px;
    border-top: 2px solid #7fc349;
}
.strategy__head { display: flex; align-items: center; gap: 18px; flex: 0 0 auto; }
.strategy__label {
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 700;
    color: var(--ll-green);
}
.strategy__arrow {
    width: 0;
    height: 0;
    border-top: 24px solid transparent;
    border-bottom: 24px solid transparent;
    border-left: 36px solid var(--ll-green);
}
.strategy__icons { flex: 1 1 auto; display: flex; justify-content: space-around; gap: 20px; }
.strategy__icon { text-align: center; }
.strategy__icon img { width: 56px; height: 56px; margin-bottom: 8px; }
.strategy__icon span {
    display: block;
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 600;
    color: #44504f;
}
@media (max-width: 767px) {
    .strategy { flex-wrap: wrap; gap: 18px; }
    .strategy__icons { width: 100%; }
}

/* business division (tab 2) */
.bizdiv {
    margin-top: 30px;
    border: 4px solid #8fcbc7;       /* teal rounded outer box */
    border-radius: 100px;
    padding: 34px 50px 34px;
}
.bizdiv__title {
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 700;
    color: var(--ll-green);
    margin-bottom: 30px;
}
.bizdiv__card {
    position: relative;
    height: 100%;
    background: #eaf4e1;
    border-radius: 50px;
    padding: 38px 36px 28px;
    text-align: left;
}
/* pill centred on the card's top edge */
.bizdiv__pill {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    background: #fff;
    border: 1.5px solid #3e125b;
    border-radius: 999px;
    padding: 10px 32px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 16px;
    color: #7fc349;
}
.bizdiv__pill--green {
    border: 1.5px solid #3e125b;
    color: #7fc349;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .06);
}
.bizdiv__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;       /* items side by side, centred in the box */
    gap: 12px 44px;
}
.bizdiv__list li {
    position: relative;
    padding-left: 26px;
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 600;
    color: #44504f;
}
.bizdiv__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 15px;
    height: 15px;
    background: url('../images/list-marker.svg') no-repeat center / contain;
}
.bizdiv__list--inline { display: flex; gap: 44px; }
.bizdiv__list--inline li { margin-bottom: 0; }
@media (max-width: 767px) {
    .bizdiv { border-radius: 40px; padding: 22px 24px 26px; }
    .bizdiv .col-md-6:first-child .bizdiv__card { margin-bottom: 18px; }
}
@media (max-width: 767px) {
    .vcp-top .vcp-vm:first-child { margin-bottom: 22px; }
    .vcp-half:first-child { margin-bottom: 26px; }
}

/* capital blocks (Input tab) — 2 per row, rounded card box */
.cap-grid { row-gap: 28px; }
.cap-block {
    position: relative;
    height: 100%;
    border: 2px solid transparent;
    background:
        linear-gradient(to right, #e7f2f1, #fff) padding-box,
        linear-gradient(to right, #3e125b 10%, #fff 60%) border-box;
    border-radius: 130px;
    padding: 26px 32px 32px 60px;
}
.cap-head { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
/* green circle icon, to the left of the heading */
.cap-icon {
    flex: 0 0 auto;
    width: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cap-line { display: none; }   /* no divider line in the card */
.cap-desc { margin-bottom: 12px; }
.cap-head h4 {
    flex: 0 0 auto;
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 700;
    color: var(--ll-green);
    margin: 0;
}
.cap-line { flex: 1 1 auto; height: 1px; background: #7fc349; }
.cap-desc p {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.55;
    color: #5a6b6b;
}
.cap-list ul { list-style: none; margin: 0; padding: 0; }
.cap-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.5;
    color: #5a6b6b;
}
.cap-list li:last-child { margin-bottom: 0; }
.cap-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 12px;
    height: 12px;
    background: url('../images/list-marker.svg') no-repeat center / contain;
}
@media (max-width: 991px) {
    .cap-list { margin-top: 12px; }
}

@media (max-width: 767px) {
    .bmodel-tabs { flex-wrap: wrap; justify-content: center; gap: 8px; }
    .bmodel-tab { flex: 0 0 auto; }
    .bmodel-arrow { padding: 0 4px; }
}

/* affordable medicines — API: intro paragraph (16px body copy) */
.ami-section { padding: 6px 0 40px; }
.ami-section__p {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: #5a6b6b;
    margin: 0;
}
.ami-section__title {
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 700;
    color: var(--ll-green);
    margin-bottom: 16px;
}
.ami-section__body p {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: #5a6b6b;
    margin-bottom: 16px;
}
.ami-section__body p:last-child { margin-bottom: 0; }
/* outlook — full-width green rounded box */
.ami-outlook-sec { padding: 0px 0 60px; }
.ami-outlook {
    background: #7fc349;
    border-radius: 40px;
    padding:60px 60px;
    text-align:left;
}
.ami-outlook__title {
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 700;
    color: var(--ll-green);
    margin-bottom: 18px;
}
.ami-outlook p {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: #fff;
    max-width:100%;
    margin: 0 auto 18px;
}
.ami-outlook p:last-child { margin-bottom: 0; }
@media (max-width: 575px) {
    .ami-outlook { padding: 40px 26px; border-radius: 36px; }
}
/* operational highlights — green circle bullet list (same marker as business model) */
.ami-list { list-style: none; margin: 0; padding: 0; }
.ami-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 16px;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.5;
    color: #44504f;
}
.ami-list li:last-child { margin-bottom: 0; }
.ami-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 12px;
    height: 12px;
    background: url('../images/list-marker.svg') no-repeat center / contain;
}
/* financial highlights — 3-column numbers */
.ami-stats { margin-top: 30px; row-gap: 28px; }
.ami-stat__num {
    font-family: var(--font-head);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.1;
    color: #3e125b;
}
.ami-stat__num small { font-size: 18px; font-weight: 700; }
.ami-stat__label {
    font-family: var(--font-body);
    font-size: 16px;
    color: #5a6b6b;
    margin-top: 6px;
}
/* left accent: thin purple line full height + green pill cap at top */
.ami-quote { position: relative; padding-left: 30px; margin-bottom: 24px; }
.ami-quote:last-child { margin-bottom: 0; }
.ami-quote::before {            /* thin purple line, full height */
    content: "";
    position: absolute;
    left: 3px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--ll-green);
}
.ami-quote::after {             /* green rounded pill at the top */
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 8px;
    height: 35px;
    border-radius: 999px;
    background: #7fc349;
}
/* shorter pill for single/short paragraphs so the purple line stays visible */
.ami-quote--sm::after { height: 18px; }
.ami-quote p {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: #5a6b6b;
    margin: 0;
}

/* business review — section separator + mid-page segment */
.ami-separator { border-top: 2px solid var(--ll-line); margin: 30px 0; }
.ami-segment { padding: 30px 0 40px; }

/* affordable medicines — API: two-level hero heading */
.ami-head { position: relative; margin-bottom: 26px; }
.ami-head__dot {
    position: absolute;
    top: -14px;
    left: -20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #7fc349;
    z-index: 0;
    pointer-events: none;
}
.ami-head__row {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 8px;
}
.ami-head__eyebrow {
    flex: 0 0 auto;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 16px;
    color: var(--ll-green);
}
.ami-head__line { flex: 1 1 auto; height: 1px; background: var(--ll-line); }
.ami-head__title {
    position: relative;
    z-index: 1;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 24px;
    line-height: 1.2;
    color: var(--ll-green);
    margin: 0;
}
.ami-bigtitle {
    font-family: var(--font-head);
    font-weight: 400;
    font-size: 36px;
    line-height: 1.15;
    color: var(--ll-green);
    margin-bottom: 22px;
}
.ami-text {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--ll-green);
    margin: 0;
}
@media (max-width: 575px) {
    .ami-bigtitle { font-size: 32px; }
    .ami-head__title { font-size: 20px; }
}

/* operating environment — macro trend blocks (single column) */
.oe-section { padding: 40px 0 60px; }
.oe-block { margin-bottom:80px; }
.oe-block:last-child { margin-bottom: 0; }
.oe-head { position: relative; margin-bottom: 32px; }
.oe-dot {
    position: absolute;
    top: -30px;
    left: -18px;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}
.oe-block:nth-child(odd)  .oe-dot { background: #bddda0; }   /* green */
.oe-block:nth-child(even) .oe-dot { background: #8fcbc7; }   /* blue */
.oe-head h2 {
    position: relative;
    z-index: 1;
    font-family: var(--font-head);
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--ll-green);
    margin: 0;
}
.oe-body p {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: #5a6b6b;
    margin-bottom: 25px;
}
.oe-body h4 {
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 700;
    color: var(--font-body);
    margin: 8px 0 8px;
}
.oe-body p:last-child { margin-bottom: 0; }
@media (max-width: 575px) {
    .oe-head h2 { font-size: 18px; }
    .oe-dot { width: 58px; height: 58px; top: -16px; left: -14px; }
}

/* chairman's statement — highlight statement with green circle dot */
.ch-quote { padding: 50px 0 60px; }
.ch-quote__wrap { position: relative; }
.ch-quote__dot {
    position: absolute;
    top: -24px;
    left: -25px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #7fc349;
    z-index: 0;
    pointer-events: none;
}
.ch-quote p {
    position: relative;
    z-index: 1;
    font-family: var(--font-head);
    font-size: 24px;
    line-height: 1.45;
    font-weight: 700;
    color: var(--ll-green);
    margin: 0;
}
@media (max-width: 575px) {
    .ch-quote p { font-size: 22px; }
    .ch-quote__dot { width: 70px; height: 70px; top: -18px; left: -16px; }
}

/* chairman's statement — body sections (single column) */
.ch-section { padding: 10px 0 30px; }
.ch-section__title {
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 700;
    color: var(--ll-green);
    margin-bottom: 16px;
}
.ch-section__body p {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: #5a6b6b;
    margin-bottom: 16px;
}
.ch-section__body p:last-child { margin-bottom: 0; }
/* sign-off */
.ch-sign { margin-top: 22px; }
.ch-sign__regards {
    font-family: var(--font-body);
    font-size: 15px;
    color: #5a6b6b;
    margin-bottom: 16px;
}
.ch-sign__name {
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 700;
    color: var(--ll-green);
    margin-bottom: 2px;
}
.ch-sign__role {
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 600;
    color:#5a6b6b;
}

/* page head (no hero) — breadcrumb + eyebrow + heading */
.page-head { padding: 110px 0 30px; }   /* top clears the absolute header */
.page-head .page-breadcrumb { margin-bottom: 16px; }
.page-head__title {
    font-family: var(--font-head);
    font-size: 36px;
    line-height: 1.2;
    font-weight: 700;
    color: #3e125b;
}
@media (max-width: 991px) {
    .page-head { padding: 104px 0 24px; }
    .page-head__title { font-size: 30px; }
}
@media (max-width: 575px) {
    .page-head__title { font-size: 26px; }
}

/* hero eyebrow (e.g. "Laurus at a Glance") */
.page-eyebrow {
    display: block;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    color:#7fc349;
    margin-bottom: 10px;
}
.deco1
{
    background-color: #7fc349 !important;
}
.ch-deco 
{
  background-color: #7fc349 !important;  
}
.ch-text p strong
{
    font-size: 24px;
    font-weight: 700;
    display: block;
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    padding-bottom: 20px;
}
.op-eyebro
{
    color: #00a69e;
}
/* hero copy (left) */
.page-hero__content { position: relative; }
/* circle sits behind the TOP-LEFT corner of the paragraph (not the heading) */
.page-hero__textwrap { position: relative; }
.page-hero__deco {
    position: absolute;
    top: -14px;
    left: -27px;
    width: 70px;
    height: 70px;
    background: #c3e0a7;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}
.page-hero__textwrap p { position: relative; z-index: 1; }
.page-hero__content h1 {
    font-family: var(--font-head);
    font-size: 36px;
    line-height: 1.18;
    font-weight: 400;
    color: var(--ll-green);
    margin-bottom: 40px;
    text-align: left;
}
.page-hero__content p {
    font-family: var(--font-body);
    font-size: 20px;
    line-height: 1.6;
    font-weight: 600;
    color:#3e125b;
    margin-bottom: 0;
    text-align: left;
}

/* hero image (right) — square, with reveal wipe like the reference */
.page-hero__image {
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
}
.page-hero__image img {
    width: 100%;
    max-width: 620px;
    height: auto;
    display: inline-block;
    transform: scale(1.08);
    animation: pageImageZoomReveal 1.2s ease forwards;
}
.page-hero__image::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    animation: pageImageReveal 1.2s ease forwards;
}
@keyframes pageImageReveal {
    0%   { width: 100%; }
    100% { width: 0%; }
}
@keyframes pageImageZoomReveal {
    0%   { opacity: .6; transform: scale(1.08); }
    100% { opacity: 1;  transform: scale(1); }
}

/* responsive */
@media (max-width: 991px) {
    .page-hero {
        min-height: auto;
        padding: 100px 0 50px;
    }
    .page-hero-row { row-gap: 36px; }
    .page-hero__content h1 { font-size: 32px; }
    .page-hero__content p  { font-size: 17px; }
}
@media (max-width: 575px) {
    .page-hero { padding: 96px 0 40px; }
    .page-hero__content h1 { font-size: 28px; }
    .page-hero__content p  { font-size: 16px; }
    .page-hero__deco { width: 96px; height: 96px; top: -24px; left: -22px; }
}

/* ---------- INNER: REPORT INFO BLOCKS ---------- */
.report-info {
    padding: 10px 0 0px;
}
.info-block {
    margin-bottom: 34px;
}
.info-block h3 {
    font-family: var(--font-head);
    font-size: 18px;
    line-height: 1.3;
    font-weight: 700;
    color: var(--ll-green);
    margin-bottom: 12px;
}
.info-block p {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: #5a6b6b;
}
.info-block__mail {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 12px;
    font-family: var(--font-body);
    font-size: 16px;
    color: #5a6b6b;                 /* body-copy colour */
    font-weight: 400;
}
.info-block__mail i { color: #5a6b6b; font-size: 16px; }
.info-block__mail:hover,
.info-block__mail:hover i { color: #3e125b; }   /* blue on hover */

/* ---------- INNER: NAVIGATION GUIDE ----------
   Three rounded boxes with the same box + centered line-heading style.
   Heading colours: Capitals #7fc349 · Stakeholders/SDG #00a69e. */
.nav-guide { padding: 20px 0 80px; }

.nav-guide__label {
    display: block;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 18px;
    line-height: 1.3;
    color: var(--ll-green);
    margin-bottom: 22px;
}

/* box */
.nguide-box {
    position: relative;
    border: 1px solid #3e125b;
    border-radius:125px;
    padding: 0 50px 40px;          /* no top padding — heading sits on the border */
    margin-bottom: 50px;
}
.nguide-box:last-child { margin-bottom: 0; }

/* circular arrow pin on the left edge of the box */
.nguide-box__pin {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #fff;
    border: 1.5px solid #3e125b;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3e125b;
    font-size: 12px;
    padding-left: 2px;            /* optically centre the triangle */
    z-index: 2;
}

/* heading sits ON the box top border (border breaks around the text) */
.nguide-title {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto 16px;
    transform: translateY(-50%);   /* lift so the text centres on the top border */
    background: #fff;              /* masks the border behind the text */
    padding: 0 22px;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 24px;
    text-align: center;
}
.nguide-box--capital .nguide-title { color: #7fc349; }
.nguide-box--teal    .nguide-title { color: #00a69e; }

/* item grid (3-up) */
.nguide-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px 30px;
}
.nguide-item {
    display: flex;
    align-items: center;
    gap: 14px;
}
.nguide-icon {
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.nguide-icon img { width: 48px; height: 48px; }   /* icons already include their coloured circle */
.nguide-label {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 15px;
    line-height: 1.35;
    color:#3e125b;
}

/* SDG row — single placeholder image */
.nguide-sdg { text-align: center; }
.nguide-sdg img { width: 100%; max-width: 880px; height: auto; }

/* ---------- INNER: LEGACY / 20-YEARS BAND ---------- */
.legacy {
    position: relative;
    overflow: hidden;
    background: #00a69e url('../images/about/grounded-bg.webp') center / cover no-repeat;
    padding: 70px 0 80px;
}
/* solid white accent dot (top-right) */
.legacy-dot {
    position: absolute;
    top: 26px;
    right: 12%;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    z-index: 1;
}
.legacy .container { position: relative; z-index: 2; }

.legacy-title {
    font-family: var(--font-head);
    font-size: 36px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--ll-green);          /* deep purple */
    margin-bottom:0px;
}
.legacy-title span {
    display: block;                  /* 2nd heading on its own single line */
    white-space: nowrap;
}

.legacy-row { align-items: center; }
.legacy-copy { position: relative; }
.legacy-copy__dot {
    position: absolute;
    top: -15px;
    left: -28px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fff;
    z-index: 0;
    pointer-events: none;
}
.legacy-copy p { position: relative; z-index: 1; }
.legacy-copy p {
    font-family: var(--font-head);
    font-size: 20px;
    line-height: 1.6;
    font-weight: 700;
    color: var(--ll-green);;
    margin-bottom: 18px;
}
.legacy-copy p:last-child { margin-bottom: 0; }

/* logo circle (right) */
.legacy-badge {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100%;
}
.legacy-badge__circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 340px;
    height: 340px;
    max-width: 100%;
    border-radius: 50%;
    background: rgba(255, 255, 255, .16);
}
.legacy-badge__circle img { width: 100%; height: auto; }

/* continuation narrative — single column */
.legacy-more { margin-top: 40px; }
.legacy-more p {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
}
.legacy-statement {
    font-family: var(--font-head) !important;
    font-size: 20px !important;
    line-height:26px !important;
    font-weight: 700 !important;
    color: var(--ll-green) !important;
    margin-top: 34px;
}

/* responsive */
@media (max-width: 991px) {
    .legacy { padding: 56px 0 60px; }
    .legacy-title { font-size: 30px; }
    .legacy-badge { margin-top: 36px; }
    .legacy-badge__circle { width: 280px; height: 280px; }
    .legacy-statement { font-size: 26px !important; }
}
@media (max-width: 575px) {
    .legacy-title { font-size: 24px; }
    .legacy-title span { white-space: normal; }   /* allow wrap on very small screens */
    .legacy-badge__circle { width: 230px; height: 230px; }
    .legacy-statement { font-size: 23px !important; }
}

/* ---------- INNER: 20 YEARS AND BEYOND ---------- */
.beyond {
    position: relative;
    overflow: hidden;
    background: #fff url('../images/about/20-years-and-beyond-bg.webp') center / cover no-repeat;
    padding: 80px 0;
}
.beyond-dots { display: none; }   /* real background now set on .beyond */
.beyond .container { position: relative; z-index: 1; }

/* left: big "20" + label */
.beyond-head {
    display: flex;
    align-items: flex-end;
    gap: 18px;
}
.beyond-num {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 190px;
    line-height: .8;
    color: var(--ll-green);
}
.beyond-label {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 38px;
    line-height: 1.1;
    color: var(--ll-green);
    padding-bottom: 10px;
}
.beyond-text {
    margin-top: 24px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.6;
    color: #3e125b;
}

/* right: image in a teal circle */
.beyond-figure { text-align: center; }
.beyond-circle {
    display: inline-block;
    border-radius: 50%;
    overflow: hidden;
    background: #00a69e;
}
.beyond-circle img { display: block; }

/* responsive */
@media (max-width: 991px) {
    .beyond { padding: 56px 0; }
    .beyond-num { font-size: 130px; }
    .beyond-label { font-size: 30px; }
    .beyond-figure { margin-top: 36px; }
    .beyond-dots { width: 100%; opacity: .08; }
}
@media (max-width: 575px) {
    .beyond-num { font-size: 100px; }
    .beyond-label { font-size: 24px; }
}

/* ============================================================
   INNER: OUR EVOLUTION (table + stats box + footnotes)
   ============================================================ */
.evolution { padding: 20px 0 0px; }
.evolution-title {
    font-family: var(--font-head);
    font-size: 24px;
    font-weight: 700;
    color: var(--ll-green);
    margin-bottom: 26px;
}

/* table */
.evolution-table-wrap { overflow-x: auto; margin-bottom: 40px; }
.evolution-table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
    font-family: var(--font-body);
    border-top: 2px solid #3e125b;       /* line above the header row */
    border-bottom: 2px solid #3e125b;    /* line below the last row */
}
.evolution-table th,
.evolution-table td {
    padding: 11px 14px;
    text-align: center;
    vertical-align: middle;
    border: 0;                       /* no row divider lines */
}
/* header */
.evolution-table thead th {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 15px;
    color: #3e125b;                  /* purple title */
    padding-bottom: 16px;
}
.evolution-table thead th span {
    display: block;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 12px;
    color: #00a69e;                  /* teal year */
    margin-top: 3px;
}

/* row labels (teal) */
.evolution-table tbody td.ev-rlabel,
.evolution-table tbody td.ev-rgroup {
    text-align: center;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 14px;
    color: #00a69e;
    white-space: nowrap;
    text-align: left;
}
.ev-rgroup { vertical-align: middle; }
/* sub labels (purple, centered) */
.evolution-table tbody td.ev-rsub {
    text-align: center;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 14px;
    color: #3e125b;
    white-space: nowrap;
}
/* data cells (teal) */
.evolution-table tbody td {
    font-size: 15px;
    font-weight: 700;
    color:#5a6b6b;
    border-bottom: 1px solid #3e125b;
    text-align: left;   /* 1px line under every row */
}
/* Integrated (highlighted) column values — darker for emphasis */
.evolution-table tbody td.is-hl { color: #173a4d; }

.evolution-table tbody td small {
    display: block;
    font-size: 11px;
    font-weight: 500;
    color: #00a69e;                  /* teal sub-note */
}
/* highlighted last (Integrated) column */
.evolution-table .is-hl { background: #e3ece8; }
.evolution-table thead th.is-hl { color: #3e125b; }

/* financial snapshot — separate section */
.biz-snapshot { padding: 10px 0 40px; }

/* stats box (reuses .nguide-box) */
.evolution-box {
    border-radius:110px;
    padding: 30px 56px;
    margin-bottom: 0;
}
.nguide-box__pin--right {
    left: auto;
    right: 0;
    transform: translate(50%, -50%);
}
.evbox-grid {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}
.evbox-rev {
    flex: 0 0 auto;
    padding-right: 40px;
    border-right: 1px solid var(--ll-line);
}
.evbox-rev-num {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 34px;
    color: var(--ll-green);
    line-height: 1.1;
}
.evbox-rev-num small { font-size: 16px; font-weight: 600; }
.evbox-rev-label { font-size: 13px; color: #3e125b; margin: 6px 0 12px; }
.evbox-ebitda {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 22px;
    color: #3e125b;
}
.evbox-ebitda span { font-size: 13px; color:#3e125b; font-weight: 600; }

.evbox-bizwrap { flex: 1 1 360px; }
.evbox-biz-title {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 18px;
    color: var(--ll-green);
    text-align: center;
    margin-bottom: 16px;
    text-align: left;
}
.evbox-biz {
    display: flex;
    gap: 30px;
    justify-content: center;
    text-align: center;
}
.evbox-bd { flex: 1 1 0; text-align:left; }
.evbox-bd h5 {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 16px;
    color: #00a69e;
    margin-bottom: 4px;
}
.evbox-bd p { font-size: 14px; color:#00a69e; margin-bottom: 10px; }
.evbox-pct {
    display: inline-block;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 15px;
    color: var(--ll-green);
    border: 1.5px solid #00a69e;
    border-radius: 999px;
    padding: 4px 16px;
}
.evbox-bd small { display: block; font-size: 11px; color: var(--ll-grey); margin-top: 6px; }

.evbox-bd1 h5, .evbox-bd1 p
{
    color: #9b7299;
}
.evbox-bd1 .evbox-pct
{
    border: 1px solid #9b7299;
}
/* footnotes */
.evolution-notes { margin-top: 28px; }
.evolution-notes p {
    font-size: 12px;
    line-height: 1.7;
    color: var(--ll-grey);
}
.evolution-notes sup { color: #00a69e; font-weight: 700; }

/* ---------- INNER: THE NEXT CHAPTER ---------- */
.next-chapter { padding: 20px 0 80px; }
.next-chapter__lead {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    font-weight: 700;
    color: #3e125b;
    margin-bottom: 30px;
}
.next-chapter__big {
    font-family: var(--font-head);
    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;
    color: #00a69e;
}

.next-pev {
    border: 1px solid #ccc;
    background: #fff;
}

.next-pev .col-xl-6 + .col-xl-6 {
    border-left: 1px solid #d7d7e8;
}
.next-pev .col-xl-6{
    padding: 0;
}
.next-pev__item {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 30px;
    color: #000;
    text-decoration: none;
    transition: background-color .25s ease, color .25s ease;
}

.next-pev__item:hover {
    background: linear-gradient(90deg, var(--ll-teal), var(--ll-green));
    text-decoration: none;
}

.next-pev__item--prev {
    justify-content: space-between;
}

.next-pev__item--next {
    justify-content: space-between;
}

.next-pev__arrow {
    flex: 0 0 auto;
    line-height: 0;
}

.next-pev__text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.next-pev__item--prev .next-pev__text {
    align-items: end;
    text-align: center;
    flex: 1 1 auto;
}

.next-pev__item--next .next-pev__text {
    align-items: flex-start;
    text-align: left;
    flex: 1 1 auto;
}

.next-pev__item:hover .next-pev__label,
.next-pev__item:hover .next-pev__text strong,
.next-pev__item:hover .next-pev__arrow {
    color: #fff;
}

.next-pev__label {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: #000;
}

.next-pev__text strong {
    font-family: var(--font-head);
    font-size: 20px;
    line-height: 1.2;
    font-weight: 500;
    color: #000;
}
@media (max-width: 575px) {
    .next-chapter__big { font-size: 23px; }
}

@media (max-width: 991px) {
    .next-pev .col-xl-6 + .col-xl-6 {
        border-left: 0;
        border-top: 1px solid #d7d7e8;
    }

    .next-pev__item {
        padding: 16px 8px;
    }
}

@media (max-width: 575px) {
    .next-pev__item {
        min-height: 80px;
        padding: 14px 0;
    }

    .next-pev__text strong {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .evbox-rev { border-right: 0; padding-right: 0; }
    .evbox-grid { gap: 24px; }
    .evbox-biz { flex-wrap: wrap; }
    .evolution-box { padding: 26px 30px; border-radius: 24px; }
}

/* responsive */
@media (max-width: 991px) {
    .nguide-box { padding: 0 28px 32px; border-radius: 60px; }
    .nguide-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
    .nguide-box { border-radius: 40px; }
    .nguide-grid { grid-template-columns: 1fr; }
    .nguide-title { font-size: 20px; }
}

/* ============================================================
   PAGE: FY 2025-26 HIGHLIGHTS  (full deep-purple page)
   Each category full width; stat numbers 3 per row.
   ============================================================ */
.highlights-page { background: #3e125b; }
.hl-main { background: #3e125b; padding-bottom: 70px; position:relative; }

/* intro / heading */
.hl-hero {
    position: relative;
    overflow: hidden;
    padding: 110px 0 30px;        /* clears the absolute header */
}
.hl-hero .container { position: relative; z-index: 1; }
/* decorative dotted graphics */
.hl-dots {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    background-repeat: no-repeat;
    background-size: contain;
}
.hl-dots--1 {
    top: -60px;
    left: -40px;
    width: 839px;
    height: 623px;
    background-image: url('../images/highlight/dot1.webp');
    background-position: top left;
}
.hl-dots--2 {
    bottom: 0;
    right: 0;
    width: 540px;
    height: 254px;                 /* matches dot2.webp 921×433 ratio */
    background-image: url('../images/highlight/dot2.webp');
    background-position: bottom right;
}
@media (max-width: 767px) {
    .hl-dots--1 { width: 300px; height: 300px; }
    .hl-dots--2 { display: none; }
}
/* breadcrumb — light colours on the dark page */
.highlights-page .page-breadcrumb { margin-bottom: 18px; }
.highlights-page .page-breadcrumb a,
.highlights-page .page-breadcrumb span { color: rgba(255, 255, 255, .7); }
.highlights-page .page-breadcrumb a:hover { color: #9bcd4f; }
.highlights-page .page-breadcrumb strong { color: #fff; }
.hl-eyebrow {
    display: block;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    color: #7fc349;
    margin-bottom: 14px;
    padding-top: 40px;
}
.hl-heading {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 36px;
    line-height: 1.1;
    color:  #7fc349;
}

/* category block */
.hl-block { padding: 26px 0; }

/* category header: icon + label + line */
.hl-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 30px;
}
.hl-head-icon {
    flex: 0 0 auto;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hl-head-icon img { width: 54px; height: 54px; }   /* icons include their own circle */
.hl-head h3 {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 18px;
    color: #fff;
    margin: 0;
}
.hl-head-line {
    position: relative;
    flex: 1 1 auto;
    height: 1px;
    background: rgba(255, 255, 255, .25);
}
/* green pill at the left start of the line */
.hl-head-line::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 5px;
    border-radius: 999px;
    background: #7fc349;
}

/* stat grid */
.row.hl-stats
{
margin-top: 40px;
}
.hl-stats { row-gap:35px; }
.hl-stats--text { row-gap: 0; }   /* spacing handled by .hl-text padding */
.hl-stat { padding-right: 16px; }
.hl-num {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 24px;
    line-height: 1.05;
    color:#7fc349;
}
.hl-num small { font-size: 17px; font-weight: 500; }
.hl-label {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.45;
    color: rgba(255, 255, 255, .8);
    margin-top: 8px;
}
.hl-trend {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    font-family: var(--font-body);
    font-size: 12.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, .85);
}
.hl-trend i {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(255, 255,255, 1);
    color: #9bcd4f;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
}

/* text-only stats (operational / esg achievements) */
.hl-text {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.55;
    font-weight: 600;
    color: rgba(255, 255, 255, .9);
    padding-bottom: 15px;
}
.hl-text--accent { color: #9bcd4f; font-size:18px; line-height:24px; font-weight:700 }
.hl-text-white { display: block; font-size: 14px; margin-top: 6px; color: #fff; }

/* responsive */
@media (max-width: 991px) {
    .hl-heading { font-size: 40px; }
    .hl-num { font-size: 32px; }
}
@media (max-width: 575px) {
    .hl-hero { padding: 104px 0 20px; }
    .hl-heading { font-size: 32px; }
    .hl-head h3 { font-size: 19px; }
}
.risk-framework-section {
    padding: 0px 0 40px;
    background: #fff;
}

.risk-framework__intro {
    margin-bottom: 28px;
}

.risk-framework__intro h2 {
    margin-bottom: 8px;
    font-family: var(--font-head);
    font-size: 24px;
    line-height: 1.2;
    font-weight: 700;
    color: #4b2174;
}

.risk-framework__intro p {
    margin-bottom: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.4;
    font-weight: 500;
    color: #5b5b5b;
}

.risk-framework__diagram {
    position: relative;
    padding: 36px 30px 30px;
    border: 1px solid #4b2174;
    border-radius: 16px;
    background: #fff;
}

.risk-framework__panel-title {
    margin-bottom: 30px;
    font-family: var(--font-body);
    font-size: 24px;
    line-height: 30px;
    font-weight: 700;
    color: #5b5b5b;
}

.risk-framework__cards {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 26px 24px;
}

.risk-framework-card {
    position: relative;
    min-height: 190px;
    padding: 14px 24px 26px 34px;
    border: 1px solid #4b2174;
    border-radius: 28px;
    background: #fff;
}

.risk-framework-card--bottom {
    min-height: 170px;
}

.risk-framework-card__badge {
    position: absolute;
    left: 18px;
    top: -18px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #7fc343;
}

.risk-framework-card h4 {
    margin-bottom: 10px;
    font-family: var(--font-head);
    font-size: 20px;
    line-height: 1.15;
    font-weight: 700;
    color: #4b2174;
    position: relative;
}

.risk-framework-card p {
    margin-bottom: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.35;
    font-weight: 500;
    color: #5b5b5b;
}

.risk-framework-card:nth-child(1),
.risk-framework-card:nth-child(2),
.risk-framework-card:nth-child(3) {
    grid-column: span 2;
}

.risk-framework-card:nth-child(4) {
    grid-column: 2 / span 2;
}

.risk-framework-card:nth-child(5) {
    grid-column: 4 / span 2;
}

.risk-management-section {
    padding: 0 0 40px;
    background: #fff;
}

.risk-management__eyebrow {
    margin-bottom: 10px;
    font-family: var(--font-head);
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;
    color: #4b2174;
}

.risk-management__heading {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.risk-management__heading h3 {
    margin-bottom: 0;
    font-family: var(--font-head);
    font-size: 32px;
    line-height: 1.15;
    font-weight: 700;
    color: #4b2174;
}

.risk-management__bar {
    flex: 1;
    height: 2px;
    border-radius: 999px;
    background: #4b2174;
    position: relative;
}

.risk-management__bar::before {
    content: "";
    position: absolute;
    left: 0;
    top: -5px;
    width: 54px;
    height: 12px;
    border-radius: 999px;
    background: #7fc343;
}

.risk-management-card {
    padding: 18px 20px 22px;
    border: 1px solid #4b2174;
    border-radius: 0 28px 28px 28px;
    background: #fff;
}

.risk-management-card + .risk-management-card {
    margin-top: 28px;
}

.risk-management-card--framed {
    padding: 18px 20px 22px;
}

.risk-management-card--framed + .risk-management-card--framed {
    margin-top: 28px;
}

.risk-management-card--group {
    padding-top: 16px;
    padding-bottom: 18px;
}

.risk-management-card__subcard {
    padding-top: 6px;
}

.risk-management-card__subcard + .risk-management-card__subcard {
    margin-top: 18px;
}

.risk-management-card__divider {
    height: 1px;
    margin: 18px 0;
    background: #4b2174;
}

.risk-management-card--group .risk-management-card__grid {
    grid-template-columns: 1.05fr 1fr 1.15fr;
}

.risk-management-card h4 {
    margin-bottom: 4px;
    font-family: var(--font-head);
    font-size: 24px;
    line-height: 1.2;
    font-weight: 700;
    color: #4b2174;
}

.risk-management-card__lead {
    margin-bottom: 18px;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.35;
    font-weight: 500;
    color: #5b5b5b;
}

.risk-management-card__grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr 1.15fr;
    gap: 28px 42px;
}

.risk-management-card__block h5 {
    margin-bottom: 10px;
    font-family: var(--font-head);
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;
    color: #555;
}

.risk-management-card__block p {
    margin-bottom: 24px;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.35;
    font-weight: 500;
    color: #5b5b5b;
}

.risk-management-card__block p:last-child {
    margin-bottom: 0;
}

.risk-management-card__icons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
}

.risk-management-card__icon {
    width: 180px;
    height: 52px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
}


.risk-management-card__block--measures ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.risk-management-card__subcard h5{
    font-weight: 700;
}
.risk-management-card__block--measures li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.35;
    font-weight: 500;
    color: #5b5b5b;
}

.risk-management-card__block--measures li:last-child {
    margin-bottom: 0;
}

.risk-management-card__block--measures li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    border: 3px solid #7fc343;
    border-radius: 50%;
}

/* manufacturing banner */
.manufacture-banner__eyebrow {
    display: inline-block;
    margin-bottom: 0px;
    font-family: var(--font-head);
    font-size: 16px;
    line-height: 1.3;
    font-weight: 700;
    text-transform: uppercase;
    color: #00b3ad;
}

.scientific-capability-content {
    padding: 24px 0 40px;
}

.scientific-capability-content__intro p {
    max-width: 100%;
    margin-bottom: 26px;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
    color: #4f4f4f;
}

.scientific-capability-content__intro p:last-child {
    margin-bottom: 0;
}

.scientific-highlights {
    padding: 8px 0 72px;
}

.scientific-highlights__wrap h2 {
    margin-bottom: 26px;
    font-family: var(--font-head);
    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;
    color: #4b2174;
}

.scientific-highlights__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 28px;
    row-gap: 36px;
}

.scientific-highlights__item {
    padding: 0 22px 0 0;
    border-right: 1px solid #d9d9d9;
}

.scientific-highlights__item:nth-child(4n) {
    border-right: none;
}

.scientific-highlights__item h3 {
    margin-bottom: 10px;
    font-family: var(--font-head);
    font-size: 24px;
    line-height: 1.08;
    font-weight: 700;
    color: #4b2174;
}

.scientific-highlights__prefix,
.scientific-highlights__suffix {
    font: inherit;
    color: inherit;
}

.scientific-highlights__item p {
    margin-bottom: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.35;
    font-weight: 500;
    color: #111;
}

.scientific-platforms {
    padding: 8px 0 40px;
}

.scientific-platforms__col h2 {
    margin-bottom: 10px;
    font-family: var(--font-head);
    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;
    color: #4b2174;
}

.scientific-platforms__block + .scientific-platforms__block {
    margin-top: 34px;
}

.scientific-platforms__block h3 {
    margin-bottom: 8px;
    font-family: var(--font-head);
    font-size: 18px;
    line-height: 1.35;
    font-weight: 700;
    color: #444;
}

.scientific-platforms__block p {
    margin-bottom: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
    color: #4f4f4f;
}

.scientific-infrastructure {
    padding: 0px 0 72px;
}

.scientific-infrastructure__head h2 {
    margin-bottom: 22px;
    font-family: var(--font-head);
    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;
    color: #4b2174;
}

.scientific-infrastructure .manufacture-facility-card--compact {
    min-height: 270px;
}

.scientific-infrastructure .manufacture-facility-card--compact .manufacture-facility-card__main {
    flex-basis: auto;
    max-width: 100%;
}

.scientific-infrastructure .manufacture-facility-card--compact .manufacture-facility-card__main p {
    max-width: 100%;
}

.quality-content {
    padding: 0px 0 40px;
}


.quality-content__intro p {
    margin-bottom: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
    color: #4f4f4f;
}

.quality-content__block h2 {
    margin-bottom: 10px;
    font-family: var(--font-head);
    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;
    color: #4b2174;
}

.quality-content__block p {
    margin-bottom: 22px;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
    color: #4f4f4f;
}

.quality-content__block p:last-child {
    margin-bottom: 0;
}

.quality-content .row + .row {
    margin-top: 34px;
}

.quality-performance {
    padding: 8px 0 72px;
}

.quality-performance__wrap {
    background:
        radial-gradient(circle, rgba(224, 224, 224, 0.45) 0 7px, transparent 8px);
    background-size: 34px 34px;
    background-position: right 20px bottom 12px;
    background-repeat: no-repeat;
}

.quality-performance__wrap h2 {
    margin-bottom: 20px;
    font-family: var(--font-head);
    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;
    color: #4b2174;
}

.quality-performance__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 56px;
    row-gap: 34px;
}

.quality-performance__item h3 {
    margin-bottom: 8px;
    font-family: var(--font-head);
    font-size: 24px;
    line-height: 1.08;
    font-weight: 700;
    color: #4b2174;
}

.quality-performance__item p {
    margin-bottom: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.35;
    font-weight: 500;
    color: #4f4f4f;
}

.information-technology-content {
    padding: 0px 0 40px;
}

.information-technology-content .row + .row {
    margin-top: 34px;
}

.information-technology-content__block h2 {
    margin-bottom: 10px;
    font-family: var(--font-head);
    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;
    color: #4b2174;
}

.information-technology-content__block p {
    margin-bottom: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
    color: #4f4f4f;
}

.information-technology-content__block--dotted {
    background:
        radial-gradient(circle, rgba(146, 221, 228, 0.35) 0 6px, transparent 7px);
    background-size: 32px 32px;
    background-position: right 8px bottom 10px;
    background-repeat: no-repeat;
}

.information-technology-capabilities {
    padding: 8px 0 72px;
}

.information-technology-capabilities__intro-panel {
    padding: 20px 20px 20px 50px;
    border: 1px solid #74c043;
    border-radius: 180px;
    background:
        radial-gradient(circle at right bottom, rgba(146, 221, 228, 0.28) 0 6px, transparent 7px);
    background-size: 30px 30px;
    background-color: #eef9dd;
    background-repeat: no-repeat;
}
.information-technology-capabilities__intro {
    padding: 10px 30px 0 20px;
}
.information-technology-capabilities__item p span{
    display: block;
}
.information-technology-capabilities__intro h2 {
    margin-bottom: 14px;
    font-family: var(--font-head);
    font-size: 20px;
    line-height: 1.25;
    font-weight: 700;
    color: #4b2174;
}

.information-technology-capabilities__intro p {
    margin-bottom: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.45;
    font-weight: 600;
    color: #4b2174;
}

.information-technology-capabilities__stats {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    align-items: center;
    padding-top: 18px;
}

.information-technology-capabilities__item {
    text-align: center;
}

.information-technology-capabilities__item h3 {
    margin-bottom: 8px;
    font-family: var(--font-head);
    font-size: 20px;
    line-height: 1.2;
    font-weight: 700;
    color: #4b2174;
}

.information-technology-capabilities__item p {
    margin-bottom: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.3;
    font-weight: 500;
    color: #111;
}

.strategic-priority-blocks {
    padding: 24px 0 20px;
}

section.page-hero.strategic-priorities-banner {
    padding-bottom: 40px;
    min-height: auto;
    padding-top: 90px;
}

section.page-hero.materiality-banner {
    background: #eaf7f4;
    min-height: auto;
    padding-top: 90px;
}

.stakeholder-approach-section {
    padding: 0 0 72px;
    background: #fff;
}

.stakeholder-approach__title {
    margin-bottom: 22px;
    font-family: var(--font-head);
    font-size: 20px;
    line-height: 1.2;
    font-weight: 700;
    color: #4b2174;
}

.stakeholder-approach__grid {
    row-gap: 34px;
}

.stakeholder-approach__card {
    position: relative;
    min-height: 100%;
    padding: 18px 24px 18px 40px;
    border: 1px solid #4b2174;
    border-top: none;
    border-radius: 0 0 24px 24px;
    background: #fff;
}

.stakeholder-approach__bar {
    position: absolute;
    left: -5px;
    top: -3px;
    width: 10px;
    height: 48px;
    border-radius: 999px;
    background: #7fc343;
}

.stakeholder-approach__card h3 {
    margin-bottom: 8px;
    font-family: var(--font-head);
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;
    color: #4b2174;
}

.stakeholder-approach__card p {
    margin-bottom: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.35;
    font-weight: 500;
    color: #5b5b5b;
}

.stakeholder-detail-section {
    padding: 0 0 72px;
    background: #fff;
}

.stakeholder-detail-card {
    position: relative;
    padding: 34px 44px 30px;
    border: 1px solid #4b2174;
    border-radius: 10px;
    background: #fff;
}

.stakeholder-detail-card + .stakeholder-detail-card,
.stakeholder-capital-legend + .stakeholder-detail-card,
.stakeholder-detail-card + .stakeholder-capital-legend {
    margin-top: 42px;
}

.stakeholder-detail-card__bar {
    position: absolute;
    right: -5px;
    top: 16px;
    width: 10px;
    height: 60px;
    border-radius: 999px;
    background: #7fc343;
}

.stakeholder-detail-card__head {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.stakeholder-detail-card__icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
   
}

.stakeholder-detail-card__icon img,
.stakeholder-detail-card__cap-icon img {
    object-fit: contain;
    display: block;
}

.stakeholder-detail-card__head h2 {
    margin-bottom: 0;
    font-family: var(--font-head);
    font-size: 20px;
    line-height: 1.2;
    font-weight: 700;
    color: #4b2174;
}

.stakeholder-detail-card__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.25fr;
    gap: 28px 54px;
    padding-left: 0px;
}

.stakeholder-detail-card__block h3 {
    margin-bottom: 12px;
    font-family: var(--font-head);
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;
    color: #555;
}

.stakeholder-detail-card__block p {
    margin-bottom: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.45;
    font-weight: 500;
    color: #5b5b5b;
}

.stakeholder-detail-card__icons {
    display: flex;
    gap: 14px;
    align-items: center;
}

.stakeholder-detail-card__cap-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #7fc343;
    color: #4b2174;
    font-size: 24px;
}

.stakeholder-detail-card__value {
    display: block;
    margin-bottom: 4px;
    font-family: var(--font-head);
    font-size: 24px;
    line-height: 1;
    font-weight: 700;
    color: #00a9ad;
}

.stakeholder-detail-card__currency,
.stakeholder-detail-card__value-unit {
    font-size: 24px;
}

.stakeholder-capital-legend {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px 34px;
    padding: 0;
}

.stakeholder-capital-legend__item {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.stakeholder-capital-legend__item strong {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.25;
    font-weight: 700;
    color: #555;
}

.stakeholder-detail-card__block--topics {
    grid-row: span 2;
}

.stakeholder-detail-card__block--focus {
    grid-column: span 2;
}

.stakeholder-detail-card__block--focus ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.stakeholder-detail-card__block--focus li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.35;
    font-weight: 500;
    color: #5b5b5b;
}

.stakeholder-detail-card__block--focus li:last-child {
    margin-bottom: 0;
}

.stakeholder-detail-card__block--focus li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 11px;
    height: 11px;
    border: 3px solid #7fc343;
    border-radius: 50%;
}

.stakeholder-detail-card__plain-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.stakeholder-detail-card__plain-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.35;
    font-weight: 500;
    color: #5b5b5b;
}

.stakeholder-detail-card__plain-list li:last-child {
    margin-bottom: 0;
}

.stakeholder-detail-card__plain-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 11px;
    height: 11px;
    border: 3px solid #7fc343;
    border-radius: 50%;
}

.stakeholder-detail-note {
    margin: 18px 0 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.4;
    font-weight: 500;
    color: #5b5b5b;
}

.materiality-accordion-section {
    padding: 0px 0 42px;
    background: #eaf7f4;
}

.materiality-accordion__item {
    position: relative;
    border: 1px solid #4b2174;
    border-radius: 16px;
    background: transparent;
    overflow: hidden;
    background-clip: padding-box;
}

.materiality-accordion__item + .materiality-accordion__item {
    margin-top: 34px;
}

.materiality-accordion__button {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    min-width: 0;
    margin: 0;
    padding: 13px 57px 13px 17px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    outline: 0;
    background: #eaf7f4;
    font-family: var(--font-head);
    font-size: 24px;
    line-height: 30px;
    font-weight: 700;
    color: #4b2174;
}

.materiality-accordion .accordion-item:first-of-type .materiality-accordion__button {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.materiality-accordion__item + .materiality-accordion__item .materiality-accordion__button {
    border-top: 1px solid #4b2174;
}

.materiality-accordion__button.collapsed {
    margin: 0;
}

.materiality-accordion__button:not(.collapsed) {
    box-shadow: none;
    background: #eaf7f4;
    color: #4b2174;
}

.materiality-accordion__button::after {
    position: absolute;
    right: 18px;
    top: 50%;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    content: "-";
    background: #7fc343;
    color: #4b2174;
    font-family: var(--font-head);
    font-size: 24px;
    line-height: 1;
    font-weight: 700;
    transform: translateY(-50%);
    background-image: none;
}

.materiality-accordion__button.collapsed::after {
    content: "+";
}

.materiality-accordion__button:not(.collapsed)::after {
    transform: translateY(-50%);
    background-image: none;
}

.materiality-accordion__body {
    padding: 13px 35px 23px;
}

.materiality-accordion__details {
    row-gap: 18px;
}

.materiality-accordion__field {
    margin-bottom: 24px;
}

.materiality-accordion__field:last-child {
    margin-bottom: 0;
}

.materiality-accordion__field h3,
.materiality-accordion__linkage h3 {
    margin-bottom: 8px;
    font-family: var(--font-head);
    font-size: 20px;
    line-height: 1.2;
    font-weight: 700;
    color: #4d4d4d;
}

.materiality-accordion__field p {
    margin-bottom: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.45;
    font-weight: 500;
    color: #5b5b5b;
}

.materiality-accordion__linkages {
    display: flex;
    align-items: flex-end;
    gap: 44px;
    margin-top: 2px;
}

.materiality-accordion__linkage {
    flex: 0 0 auto;
}

.materiality-accordion__linkage--stakeholder {
    min-width: 380px;
    padding-top: 20px;
}

.materiality-accordion__label-row {
    display: flex;
    align-items: center;
    gap: 18px;
}

.materiality-accordion__label-row > span,
.materiality-accordion__strategy span,
.materiality-accordion__strategy strong {
    font-family: var(--font-head);
    font-size: 20px;
    line-height: 1.2;
    font-weight: 700;
    color: #00a99d;
}



.materiality-accordion__icon {
    width: 200px;
}
.materiality-accordion__icon.first{
    width: 104px;
}
.materiality-accordion__icon.sec{
    width: 170px;
}
.materiality-accordion__icon--capital {
    width: 172px;
    height: 46px;
}

.materiality-linkages-panel__icon img {
    width: 72%;
    height: 72%;
    object-fit: contain;
    display: block;
}

.materiality-accordion__strategy {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-left: auto;
    padding-bottom: 7px;
}

.materiality-linkages-section {
    padding: 0 0 30px;
    background: #eaf7f4;
}

    

.materiality-linkages-panel__group + .materiality-linkages-panel__group {
    margin-top: 28px;
}

.materiality-linkages-panel__group h2 {
    margin-bottom: 10px;
    font-family: var(--font-head);
    font-size: 20px;
    line-height: 1.2;
    font-weight: 700;
    color: #4b2174;
}

.materiality-linkages-panel__grid {
    display: grid;
    gap: 14px 28px;
}

.materiality-linkages-panel__grid--stakeholder {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.materiality-linkages-panel__grid--capital {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.materiality-linkages-panel__item {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.materiality-linkages-panel__icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #00a9ad;
    color: #4b2174;
    font-size: 20px;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 70% 70%;
}

.materiality-linkages-panel__icon--green {
    background: #7fc343;
}

.materiality-linkages-panel__icon i {
    display: none;
}

.materiality-linkages-panel__label {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.25;
    font-weight: 600;
    color: #5b5b5b;
    word-break: break-word;
}

.strategic-priority-card {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: stretch;
    border-radius: 0 56px 56px 0;
    overflow: hidden;
    background: #7fc343;
    min-height: 212px;
}

.strategic-priority-card__left {
    position: relative;
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 34px 34px 34px 0;
}

.strategic-priority-card__left::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 60px;
    background: #4b2174;
}

.strategic-priority-card__icon {
    position: relative;
    z-index: 1;
    width: 88px;
    min-width: 88px;
    height: 88px;
    margin-left: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.strategic-priority-card__icon img {
    display: block;
    width: 100%;
    height: 100%;
}

.strategic-priority-card__left h2 {
    position: relative;
    z-index: 1;
    margin-bottom: 0;
    font-family: var(--font-head);
    font-size: 40px;
    line-height: 1;
    font-weight: 700;
    color: #4b2174;
}

.strategic-priority-card__right {
    padding: 42px 32px 34px 28px;
    border-left: 1px solid rgba(75, 33, 116, 0.55);
}

.strategic-priority-card__right h3 {
    margin-bottom: 12px;
    font-family: var(--font-head);
    font-size: 20px;
    line-height: 1.2;
    font-weight: 700;
    color: #4b2174;
}

.strategic-priority-card__points {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.strategic-priority-card__point {
    position: relative;
    padding-left: 18px;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.35;
    font-weight: 500;
    color: #4b2174;
}

.strategic-priority-card__point::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    width: 7px;
    height: 7px;
    border: 2px solid #4b2174;
    border-radius: 50%;
}

.strategic-progress {
    padding: 0 0 72px;
}

.strategic-progress__wrap {
    padding: 28px 28px 26px;
}

.strategic-progress__wrap--follow {
    margin-top: 0px;
}

.strategic-progress .strategic-priority-card {
    margin-top: 28px;
}

.strategic-progress__wrap h2 {
    margin-bottom: 18px;
    font-family: var(--font-head);
    font-size: 20px;
    line-height: 1.25;
    font-weight: 700;
    color: #4b2174;
}

.strategic-progress__grid {
    row-gap: 0;
}

.strategic-progress__column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.strategic-progress__item {
    position: relative;
    padding-left: 30px;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.22;
    font-weight: 500;
    color: #5b5b5b;
}

.strategic-progress__item::before {
    content: "";
    position: absolute;
    top: 6px;
    left: 0;
    width: 11px;
    height: 11px;
    border: 3px solid #7fc343;
    border-radius: 50%;
    background: #fff;
}

.manufacture-content {
    padding: 0px 0 40px;
}

.manufacture-content__intro {
    padding: 0 0 40px;
    background:
        radial-gradient(circle, rgba(224, 224, 224, 0.45) 0 10px, transparent 11px);
    background-size: 44px 44px;
    background-position: left top;
    background-repeat: no-repeat;
}

.manufacture-content__intro p {
    max-width: 100%;
    margin-bottom: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
    color: #5b5b5b;
}

.manufacture-content__platform h2 {
    margin-bottom: 10px;
    font-family: var(--font-head);
    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;
    color: #4b2174;
}

.manufacture-content__platform p {
    margin-bottom: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
    color: #5b5b5b;
}

.manufacture-stats {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0;
    margin-top: 44px;
}

.manufacture-stat {
    flex: 1 1 25%;
    padding: 28px 26px 24px;
}

.manufacture-stat:not(:last-child) {
    border-right: 1px solid #d9d9d9;
}

.manufacture-stat h3 {
    margin-bottom: 8px;
    font-family: var(--font-head);
    font-size: 24px;
    line-height: 1.05;
    font-weight: 600;
    color: #4b2174;
}

.manufacture-stat__suffix {
    font-size: 24px;
    line-height: 1.1;
}

.manufacture-stat p {
    margin-bottom: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.35;
    font-weight: 500;
    color: #1f1f1f;
}

.manufacture-detail {
    padding: 34px 0 0;
}

.manufacture-detail__line {
    position: relative;
    display: block;
    width: 100%;
    height: 1px;
    margin-bottom: 20px;
    background: rgba(75, 33, 116, 0.45);
}

.manufacture-detail__line::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 62px;
    height: 12px;
    border-radius: 999px;
    background: #74c043;
    transform: translateY(-50%);
}

.manufacture-detail h2 {
    margin-bottom: 8px;
    font-family: var(--font-head);
    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;
    color: #4b2174;
}

.manufacture-detail p {
    max-width: 100%;
    margin-bottom: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.45;
    font-weight: 400;
    color: #5b5b5b;
}

.manufacture-development {
    padding: 34px 0 0;
}

.manufacture-development--divided {
    margin-top: 18px;
    padding-top: 34px;
    border-top: 1px solid #d9d9d9;
}

.manufacture-development__item {
    display: flex;
    align-items: flex-start;
    gap: 0;
}

.manufacture-development__item + .manufacture-development__item {
    margin-top: 22px;
}

.manufacture-development__dot {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    flex: 0 0 42px;
    background: #d5e8b6;
    margin-top: -11px;
    margin-right: -20px;
    position: relative;
    z-index: 0;
}

.manufacture-development__content {
    position: relative;
    z-index: 1;
}

.manufacture-development__content h3 {
    margin-bottom: 4px;
    font-family: var(--font-head);
    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;
    color: #555;
}

.manufacture-development__content p {
    margin-bottom: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.45;
    font-weight: 400;
    color: #5b5b5b;
}

.manufacture-facilities {
    padding: 42px 0 0;
    background:
        radial-gradient(circle, rgba(224, 224, 224, 0.45) 0 10px, transparent 11px);
    background-size: 44px 44px;
    background-position: left top;
    background-repeat: no-repeat;
}

.manufacture-facilities h2 {
    margin-bottom: 20px;
    font-family: var(--font-head);
    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;
    color: #4b2174;
}

.manufacture-facilities__head {
    display: flex;
    align-items: center;
    gap: 18px;
}

.manufacture-facilities__head h3 {
    margin-bottom: 0;
    font-family: var(--font-head);
    font-size: 24px;
    line-height: 1.2;
    font-weight: 700;
    color: #4b2174;
    white-space: nowrap;
}

.manufacture-facilities__line {
    position: relative;
    display: block;
    flex: 1 1 auto;
    height: 1px;
    background: rgba(75, 33, 116, 0.5);
}

.manufacture-facilities__line::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 52px;
    height: 16px;
    border-radius: 999px;
    background: #74c043;
    transform: translateY(-50%);
}

.manufacture-facility-slider-wrap {
    padding-top: 26px;
    overflow: hidden;
}

.manufacture-facility-slide {
    padding: 0 2px;
}

.manufacture-facility-slide .row {
    margin-left: 0;
    margin-right: 0;
}

.manufacture-facility-card {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 50px;
    border: 1px solid #6e3d99;
    border-radius: 20px;
    padding: 24px 28px 24px 20px;
    min-height: 320px;
    background: #fff;
    overflow: hidden;
}

.manufacture-facility-card__media {
    position: relative;
    width: 128px;
    height: 128px;
    border-radius: 50%;
    overflow: hidden;
    background: #d9d9d9;
    flex: 0 0 128px;
}

.manufacture-facility-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.manufacture-facility-card__content {
    justify-content: space-between;
    gap: 56px;
    flex: 1 1 auto;
}

.manufacture-facility-card__main {
    flex: 0 0 220px;
}

.manufacture-facility-card__platforms {
    flex: 1 1 auto;
}

.manufacture-facility-card__main h4,
.manufacture-facility-card__platforms h5 {
    margin-bottom: 10px;
    font-family: var(--font-head);
    font-size: 20px;
    line-height: 1.25;
    font-weight: 700;
    color: #4b2174;
}

.manufacture-facility-card__main p,
.manufacture-facility-card__platforms p {
    margin-bottom: 8px;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.4;
    font-weight: 600;
    color: #4f4f4f;
}

.manufacture-facility-card__main p {
    font-size: 18px;
    line-height: 1.5;
}

.manufacture-facility-card__main strong {
    display: inline-block;
    font-family: var(--font-head);
    font-size: 28px;
    line-height: 1.2;
    font-weight: 700;
    color: #4b2174;
}

.manufacture-facility-card__platforms h5 {
    margin-bottom: 6px;
    font-size: 32px;
}

.manufacture-facility-card__platforms p {
    font-weight: 400;
    margin-bottom: 0;
    font-size: 18px;
    line-height: 1.55;
}

.manufacture-facility-slider .owl-stage-outer {
    overflow: hidden;
}

.manufacture-facility-slider__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-top: 20px;
}

.manufacture-facility-slider__controls .owl-nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.manufacture-facility-slider__controls .owl-nav button {
    width: 40px;
    height: 40px;
    border: 1px solid #6e3d99 !important;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #4b2174 !important;
    background: #fff !important;
    margin: 0 !important;
}

.manufacture-facility-slider__controls .owl-nav button:hover {
    background: #4b2174 !important;
    color: #fff !important;
}

.manufacture-facility-slider__controls .owl-arrow {
    display: inline-flex;
    width: 18px;
    height: 18px;
}

.manufacture-static-group {
    padding-top: 42px;
}

.manufacture-facilities__head--split {
    justify-content: space-between;
    gap: 28px;
}

.manufacture-facilities__head--split h3 {
    flex: 0 0 auto;
}

.manufacture-facilities__head--split .manufacture-facilities__line {
    min-width: 110px;
}

.manufacture-static-grid {
    margin-top: 22px;
}

.manufacture-facility-card--compact {
    min-height: 228px;
    padding-top: 18px;
    padding-bottom: 18px;
}

.manufacture-facility-card--compact .manufacture-facility-card__main {
    flex-basis: 260px;
}

.manufacture-facility-card--compact .manufacture-facility-card__main h4 {
    margin-bottom: 12px;
}

.manufacture-facility-card--compact .manufacture-facility-card__main p {
    max-width: 280px;
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: 600;
    color: #555;
}

.manufacture-facility-card--compact .manufacture-facility-card__main strong {
    max-width: 240px;
    font-size: 24px;
    line-height: 1.15;
}

.manufacture-static-group--dotted {
    padding-bottom: 10px;
    background:
        radial-gradient(circle, rgba(146, 221, 228, 0.35) 0 6px, transparent 7px);
    background-size: 32px 32px;
    background-position: right -10px bottom -8px;
    background-repeat: no-repeat;
}

.manufacture-static-note {
    margin: 16px 0 0 18px;
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.4;
    color: #666;
}
section.page-hero.stakeholder-engagement-banner, section.page-hero.risk-management-banner {
    min-height: auto;
    padding-top: 90px;
}

section.page-hero.stakeholder-engagement-banner{
    padding-bottom: 30px;
}
/* responsive */
@media (max-width: 991px) {
    .page-hero {
        min-height: auto;
        padding: 0;
    }
    .page-hero-row { row-gap: 36px; }
    .page-hero__content h1 { font-size: 32px; }
    .page-hero__content p  { font-size: 17px; }
}
@media (max-width: 575px) {
    .page-hero { padding: 0; padding-top: 90px; }
    .page-hero__content h1 { font-size: 28px; }
    .page-hero__content p  { font-size: 16px; padding-bottom: 20px; }
    .page-hero__deco {        width: 50px;
        height: 50px;
        top: -11px;
        left: -15px; }
}

.preloader {
    position: fixed;
    inset: 0;
    z-index: 100000;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .5s ease, visibility .5s ease;
}
.preloader.is-done { opacity: 0; visibility: hidden; }
.preloader-inner { display: flex; flex-direction: column; align-items: center; gap: 22px; }
.preloader-inner img { width: 210px; max-width: 60vw; animation: plPulse 1.4s ease-in-out infinite; }
.preloader-bar {
    position: relative;
    width: 150px;
    height: 3px;
    border-radius: 999px;
    background: rgba(62, 18, 91, .15);
    overflow: hidden;
}
.preloader-bar::before {
    content: "";
    position: absolute;
    top: 0;
    left: -40%;
    height: 100%;
    width: 40%;
    border-radius: 999px;
    background: var(--ll-green);
    animation: plBar 1.1s ease-in-out infinite;
}
@keyframes plPulse { 0%, 100% { opacity: .55; transform: scale(.97); } 50% { opacity: 1; transform: scale(1); } }
@keyframes plBar { 0% { left: -40%; } 100% { left: 110%; } }
/* don't scroll while loading */
body:has(.preloader:not(.is-done)) { overflow: hidden; }
/* ============================================================
   MANUFACTURING STRENGTH PAGE
   ============================================================ */
.manufacturing-page {
    background: #fff;
}
section.ms-banner {
    padding-top: 90px;
}


.ms-breadcrumb {
    margin-bottom: 48px;
    font-size: 16px;
    line-height: 1.6;
    color: #1a1a1a;
    display: flex;
    gap: 0;
}

.ms-breadcrumb a {
    color: #1a1a1a;
    font-size: 14px;
}

.ms-breadcrumb .current {
    font-weight: 700;
}

.ms-breadcrumb .sep {
    margin: 0 8px;
    color: #6c757d;
}

.ms-copy {
    max-width: 620px;
    padding-top: 18px;
}

.ms-eyebrow {
    display: inline-block;
    margin-bottom: 16px;
    font-family: var(--font-head);
    font-size: 20px;
    line-height: 1.4;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #00aeb3;
}

.ms-title {
    margin-bottom: 28px;
    font-family: var(--font-head);
    font-size: 32px;
    line-height: 1.2;
    font-weight: 500;
    color: #4b2174;
}

.ms-subheading {
    margin-bottom: 18px;
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 22px;
    font-weight: 600;
    color: #4b2174;
}

.ms-body {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 1.55;
    color: #555;
}

.ms-full-copy {
    padding-top: 24px;
}

.ms-full-copy p {
    max-width: 100%;
    margin-bottom: 0;
    font-size: 16px;
    line-height: 22px;
    color: #555;
}

.ms-media {
    height: 100%;
    display: flex;
    justify-content: end;
    align-items: stretch;
}

.ms-media-card {
    width: 100%;
    max-width: 640px;
    overflow: hidden;
    background: #f4f4f4;
}

.ms-media-card img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    display: block;
}


/* ============================================================
   SECTION 4 (redesign): FY 2025-26 HIGHLIGHTS — heading + stat tiles
   ============================================================ */
/* PURPLE panel; left column sticks while the right (3 categories) scrolls */
.khl { background: #3e125b; padding: 90px 0; position: relative; }
/* decorative dots — top-left (faded) + bottom-right */
.khl::before,
.khl::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
    z-index: 0;
}
.khl::before { top: 0; left: 0; background-image: url("../images/dot1.webp"); background-position: top left; opacity: .6; }
.khl::after { bottom: 0; right: 0; background-image: url("../images/dot2.webp"); background-position: bottom right; opacity: .6; }
.khl-sticky { display: block; position: relative; z-index: 1; }
.khl-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.7fr;
    gap: 60px;
    align-items: start;
    width: 100%;
}
.khl-left {
    position: sticky;
    top: calc(var(--header-h) + 24px);
    align-self: start;
}
.khl-eyebrow {
    display: block;
    color: #8ec740;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: .02em;
    margin-bottom: 14px;
}
.khl-heading {
    color: #8ec740;
    margin-bottom: 28px;
}
.khl-left .ll-btn { margin-top: 0; }

/* right: panels stack + scroll */
.khl-right { position: static; }
.khl-panel { position: static; opacity: 1; transform: none; }
.khl-panel + .khl-panel { margin-top: 64px; }

/* category header: teal icon + white title + fading green line */
.khl-cat { display: flex; align-items: center; gap: 16px; margin-bottom: 28px; }
.khl-cat-ic {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.khl-cat-ic img { width: 100%; height: 100%; object-fit: contain; display: block; }
.khl-cat h3 { font-size: 26px; color: #fff; font-weight: 600; flex-shrink: 0; }
.khl-cat::after {
    content: "";
    flex: 1;
    height: 6px;
    border-radius: 999px;
    background: linear-gradient(90deg, #8ec740, rgba(142, 199, 64, 0));
}

/* stat tiles — 3 per row with vertical dividers */
.khl-tiles { display: grid; grid-template-columns: repeat(3, 1fr); column-gap: 0; row-gap: 34px; }
.kh-tile { display: flex; flex-direction: column; align-items: flex-start; padding: 4px 28px; }
.kh-tile:nth-child(3n+1) { padding-left: 0; }
.kh-tile:not(:nth-child(3n+1)) { border-left: 1px solid rgba(255, 255, 255, .18); }
.kh-val {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 34px;
    line-height: 1;
    color: #8ec740;
}
.kh-val .kh-cur { font-size: 30px; font-weight: 400; margin-right: 2px; }
.kh-val small { font-size: .42em; font-weight: 600; color: rgba(255, 255, 255, .7); margin-left: 4px; }
.kh-label { color: rgba(255, 255, 255, .75); font-size: 13px; line-height: 19px; margin-top: 8px; }
.kh-growth {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #8ec740;
    font-weight: 600;
    font-size: 13px;
    margin-top: 10px;
}
.kh-arrow {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid #8ec740;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
}
.kh-note { color: rgba(255, 255, 255, .6); font-size: 12px; line-height: 18px; margin-top: 8px; }

/* qualitative text tiles (Operational) */
.kh-tile--text { justify-content: center; }
.kh-tile--text p {
    color: #fff;
    font-family: var(--font-head);
    font-weight: 500;
    font-size: 15px;
    line-height: 1.45;
}

/* ESG intro statements */
.kh-statements { margin-bottom: 28px; max-width: 620px; }
.kh-statements p { color: rgba(255, 255, 255, .88); font-size: 14px; line-height: 22px; margin-bottom: 12px; }
.kh-statements b { color: #8ec740; }


/* ============================================================
   SHARED SECTION HEADING SCALE
   Every section's main <h2> uses ONE size / line-height / weight.
   (Colour + alignment stay per-section; only the type scale is shared.)
   Placed last so it overrides the individual rules above; the
   per-breakpoint sizes in responsive.css still win on mobile.
   ============================================================ */
.reveal-content h2,
.hl-heading,
.glance-title,
.fwd-title,
.sp-title,
.tst-title,
.mat-title,
.moments-title,
.erm-title,
.esg-title,
.awards-title,
.dlc-title,
.khl-heading {
    font-family: var(--font-head);
    font-size: 36px;
    line-height: 1.18;
    font-weight: 400;
}


/* ============================================================
   SECTION 17a: EMPLOYEES — full-screen image hero
   ============================================================ */
.emp {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    color: #fff;
}
.emp-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
}
.emp-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(to top, rgba(0,0,0,.55) 0%, rgba(0,0,0,.20) 60%, rgba(0,0,0,.20) 100%),
        linear-gradient(to right, rgba(0,0,0,.55) 0%, rgba(0,0,0,0) 60%);
}
.emp-inner {
    position: relative;
    z-index: 2;
    text-align: left;
    padding-top: calc(var(--header-h) + 40px);
    padding-bottom: 40px;
}
.emp-eyebrow {
    display: block;
    color: #8ec740;
    text-transform: uppercase;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: .14em;
    margin-bottom: 16px;
}
.emp-title {
    color: #fff;
    font-family: var(--font-head);
    font-size: 36px;
    line-height: 1.18;
    font-weight: 400;
    margin-bottom: 18px;
}
.emp-intro {
    font-size: 16px;
    line-height: 1.65;
    color: rgba(255,255,255,.9);
    margin-bottom: 26px;
    max-width: 600px;          /* keep the paragraph readable, still left-aligned */
}
.emp-cta { margin-top: 0; }


/* ============================================================
   SECTION 17b: EXPLORE MORE — hover-reveal cards
   Default = image + heading. Hover = image lifts + purple panel
   rises with description + Read More. Pure CSS.
   ============================================================ */
.xplore { padding: 90px 0; background: #fff; }
.xplore-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.xcard {
    position: relative;
    height: 460px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* background image — lifts up on hover */
.xcard-img {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
    transition: transform .55s ease;
}
.xcard:hover .xcard-img { transform: translateY(-14%) scale(1.06); }

/* bottom gradient so the default heading stays legible over the photo */
.xcard::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top, rgba(0,0,0,.62) 0%, rgba(0,0,0,0) 52%);
    transition: opacity .4s ease;
}

/* text panel pinned to the bottom; grows + turns purple on hover */
.xcard-body {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding:15px 28px;
    color: #fff;
    background: transparent;
    transition: background .45s ease;
}
.xcard:hover .xcard-body { background: #3e125b; }   /* purple reveal panel */

.xcard-line {
    display: block;
    width: 40px;
    height: 3px;
    background: #8ec740;
    border-radius: 3px;
    margin-bottom: 16px;
}
.xcard-eyebrow {
    display: block;
    text-transform: uppercase;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: .14em;
    color: rgba(255,255,255,.8);
    margin-bottom: 8px;
}
.xcard-title {
    font-family: var(--font-head);
    font-weight: 400;
    font-size: 28px;
    line-height: 1.18;
    color: #fff;
}

/* description / media + button — hidden until hover, then slide in */
.xcard-desc,
.xcard-media,
.xcard-btn {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transform: translateY(10px);
    transition: opacity .45s ease, transform .45s ease, max-height .45s ease, margin .45s ease;
}
.xcard-desc { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,.9); margin: 0; }
.xcard:hover .xcard-desc { opacity: 1; max-height: 140px; transform: none; margin-top: 14px; }

/* market image revealed inside the Governance card */
.xcard-media { display: block; width: 100%; max-width: 100%; height: auto; border-radius: 8px; }
.xcard:hover .xcard-media { opacity: 1; max-height: 200px; transform: none; margin-top: 14px; }

.xcard-btn {
    display: inline-flex;
    align-items: center;
    border: 1.5px solid rgba(255,255,255,.7);
    border-radius: 999px;
    padding: 11px 26px;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #fff;
    transition: opacity .45s ease, transform .45s ease, max-height .45s ease, margin .45s ease, background .25s ease, color .25s ease;
}
.xcard:hover .xcard-btn { opacity: 1; max-height: 60px; transform: none; margin-top: 20px; }
.xcard-btn:hover { background: #fff; color: #3e125b; }

/* light-green reveal panel (dark text for contrast) — Investors card */
.xcard--light:hover .xcard-body { background: #eaf4e1; }
.xcard--light:hover .xcard-eyebrow { color: var(--ll-green); }
.xcard--light:hover .xcard-title   { color: var(--ll-green); }
.xcard--light:hover .xcard-btn {
    color: var(--ll-green);
    border-color: rgba(62, 18, 91, .4);
}
.xcard--light:hover .xcard-btn:hover { background: var(--ll-green); color: #fff; border-color: var(--ll-green); }

.bus-eyebrow
{
    padding-top: 30px;
}
.br-space 
{
padding-bottom:24px;
}
/* ============================================================
   END: ESG APPROACH PAGE - GOVERNANCE AND OVERSIGHT
   Added at file end to reduce merge conflicts.
   Reusable type sizes for future ESG page sections:
   20px = item title, 18px = section title, 16px = body copy
   ============================================================ */
.esg-governance {
    padding: 0px 0 40px;
    background: #fff;
}

.esg-governance__intro {
    max-width: 860px;
    margin-bottom: 40px;
}

.esg-governance__title {
    font-size: 18px;
    line-height: 1.35;
    font-weight: 700;
    color: #4b2174;
    margin-bottom: 8px;
}

.esg-governance__lead,
.esg-governance__item-copy {
    font-size: 16px;
    line-height: 1.5;
    color: #555;
}

.esg-governance__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 34px;
    align-items: start;
}

.esg-governance__item {
    position: relative;
    padding-right: 20px;
}

.esg-governance__item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 108px;
    background: linear-gradient(180deg, #72bf44 0%, #5b2a86 100%);
}

.esg-governance__item:not(:last-child)::before {
    content: "";
    position: absolute;
    top: 0;
    right: -3px;
    width: 7px;
    height: 40px;
    border-radius: 999px;
    background: #72bf44;
    z-index: 1;
}

.esg-governance__item-top {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin-bottom: 6px;
    position: relative;
    min-height: 34px;
}

.esg-governance__dot {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    flex: 0 0 34px;
    background: #cfe5b1;
    margin-top: 0;
}

.esg-governance__item-title {
    font-size: 20px;
    line-height: 1.1;
    font-weight: 700;
    color: #4b2174;
    margin: 0;
    margin-left: -16px;
    padding-top: 6px;
    position: relative;
    z-index: 2;
}

.esg-governance__item-copy {
    max-width: 220px;
    margin: 0;
    line-height: 1.42;
}

.esg-snapshot {
    padding: 0 0 40px;
    background: #fff;
}

.esg-snapshot__content {
    max-width: 1040px;
}

.esg-snapshot__title {
    margin-bottom: 4px;
    font-family: var(--font-head);
    font-size: 22px;
    line-height: 1.2;
    font-weight: 700;
    color: #4b2174;
}

.esg-snapshot__lead {
    margin-bottom: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.45;
    color: #555;
}

.esg-panels {
    padding: 0 0 40px;
}

.esg-panel-card {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    align-items: stretch;
    gap: 0;
}

.esg-panel-card + .esg-panel-card {
    margin-top: 24px;
}

.esg-panel-card__header {
    display: none;
}

.esg-panel-card__label {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-size: 22px;
    line-height: 1;
    color: var(--ll-green);
    position: relative;
    padding: 18px 0;
}

.esg-panel-card__label::before,
.esg-panel-card__label::after {
    content: "";
    position: absolute;
    left: 50%;
    width: 42px;
    height: 22px;
    border: 1.5px solid #111;
    transform: translateX(-50%);
}

.esg-panel-card__label::before {
    top: 0;
    border-bottom: 0;
    border-radius: 22px 22px 0 0;
}

.esg-panel-card__label::after {
    bottom: 0;
    border-top: 0;
    border-radius: 0 0 22px 22px;
}

.esg-panel-card__body {
    position: relative;
    border-radius: 0 64px 64px 0;
    padding: 38px 92px 38px 48px;
    overflow: hidden;
}

.esg-panel-card__stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 34px;
    max-width: 840px;
}

.esg-panel-card__icon {
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}


.esg-stat__value {
    font-family: var(--font-head);
    font-size: 24px;
    line-height: 1.1;
    font-weight: 500;
    margin-bottom: 4px;
}

.esg-stat__value span {
    font-size: 24px;
    margin-left: 3px;
}

.esg-stat__copy {
    font-size: 16px;
    line-height: 1.35;
    color: #111;
    margin: 0;
    max-width: 270px;
}

.esg-panel-card--environmental .esg-panel-card__body {
    background: linear-gradient(90deg, #fbfdf8 0%, #f1f8ea 38%, #e5f0d5 100%);
}

.esg-panel-card--environmental {
    grid-template-columns: 1fr;
}

.esg-panel-card--environmental .esg-panel-card__header {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.esg-panel-card--environmental > .esg-panel-card__label {
    display: none;
}

.esg-panel-card--environmental .esg-panel-card__body {
    border-radius: 32px 110px 110px 32px;
    padding: 26px 42px 30px 34px;
}

.esg-panel-card--environmental .esg-panel-card__stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    max-width: 100%;
}

.esg-panel-card--environmental .esg-stat {
    position: relative;
    padding: 0 22px;
}

.esg-panel-card--environmental .esg-stat:first-child {
    padding-left: 0;
}

.esg-panel-card--environmental .esg-stat:last-child {
    padding-right: 0;
}

.esg-panel-card--environmental .esg-stat:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: 78px;
    background: rgba(75, 33, 116, 0.22);
    transform: translateY(-50%);
}

.esg-panel-card--environmental .esg-panel-card__label {
    writing-mode: initial;
    transform: none;
    padding: 0;
    font-size: 22px;
    font-weight: 600;
    justify-content: flex-start;
    color: var(--ll-green);
}

.esg-panel-card--environmental .esg-panel-card__label::before,
.esg-panel-card--environmental .esg-panel-card__label::after {
    display: none;
}

.esg-panel-card--environmental .esg-panel-card__label,
.esg-panel-card--environmental .esg-stat__value {
    color: #77c043;
}

.esg-panel-card--environmental .esg-panel-card__icon {
    background: #77c043;
    color: var(--ll-green);
    position: static;
    transform: none;
    flex-shrink: 0;
}

.esg-panel-card--environmental .esg-stat__copy {
    max-width: 100%;
}

.esg-panel-card--social .esg-panel-card__body {
    background: linear-gradient(90deg, #fbfefe 0%, #edf9f8 38%, #dcefeb 100%);
}

.esg-panel-card--social {
    grid-template-columns: 1fr;
}

.esg-panel-card--social .esg-panel-card__header {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.esg-panel-card--social > .esg-panel-card__label {
    display: none;
}

.esg-panel-card--social .esg-panel-card__body {
    border-radius: 32px 110px 110px 32px;
    padding: 26px 42px 30px 34px;
}

.esg-panel-card--social .esg-panel-card__stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    max-width: 100%;
}

.esg-panel-card--social .esg-stat {
    position: relative;
    padding: 0 22px;
}

.esg-panel-card--social .esg-stat:first-child {
    padding-left: 0;
}

.esg-panel-card--social .esg-stat:last-child {
    padding-right: 0;
}

.esg-panel-card--social .esg-stat:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: 78px;
    background: rgba(75, 33, 116, 0.22);
    transform: translateY(-50%);
}

.esg-panel-card--social .esg-panel-card__label {
    writing-mode: initial;
    transform: none;
    padding: 0;
    font-size: 22px;
    font-weight: 600;
    justify-content: flex-start;
    color: #00a8ad;
}

.esg-panel-card--social .esg-panel-card__label::before,
.esg-panel-card--social .esg-panel-card__label::after {
    display: none;
}

.esg-panel-card--social .esg-panel-card__label,
.esg-panel-card--social .esg-stat__value {
    color: #00a8ad;
}

.esg-panel-card--social .esg-panel-card__icon {
    background: #00a8ad;
    color: var(--ll-green);
    position: static;
    transform: none;
    flex-shrink: 0;
}

.esg-panel-card--governance .esg-panel-card__body {
    background: linear-gradient(90deg, #fcfbfe 0%, #f3f0f9 38%, #e6deef 100%);
}

.esg-panel-card--social .esg-stat__copy,
.esg-panel-card--governance .esg-stat__copy {
    max-width: 100%;
}

.esg-panel-card--governance {
    grid-template-columns: 1fr;
}

.esg-panel-card--governance .esg-panel-card__header {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.esg-panel-card--governance > .esg-panel-card__label {
    display: none;
}

.esg-panel-card--governance .esg-panel-card__body {
    border-radius: 32px 110px 110px 32px;
    padding: 26px 42px 30px 34px;
}

.esg-panel-card--governance .esg-panel-card__stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    max-width: 100%;
}

.esg-panel-card--governance .esg-stat {
    position: relative;
    padding: 0 22px;
}

.esg-panel-card--governance .esg-stat:first-child {
    padding-left: 0;
}

.esg-panel-card--governance .esg-stat:last-child {
    padding-right: 0;
}

.esg-panel-card--governance .esg-stat:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: 78px;
    background: rgba(75, 33, 116, 0.22);
    transform: translateY(-50%);
}

.esg-panel-card--governance .esg-panel-card__label {
    writing-mode: initial;
    transform: none;
    padding: 0;
    font-size: 22px;
    font-weight: 600;
    justify-content: flex-start;
    color: var(--ll-green);
}

.esg-panel-card--governance .esg-panel-card__label::before,
.esg-panel-card--governance .esg-panel-card__label::after {
    display: none;
}

.esg-panel-card--governance .esg-stat__value {
    color: var(--ll-green);
}

.esg-panel-card--governance .esg-panel-card__icon {
    background: var(--ll-green);
    color: #fff;
    position: static;
    transform: none;
    flex-shrink: 0;
}

/* ============================================================
   END: ESG APPROACH PAGE - STORY + GOAL MATRICES
   Added at file end to reduce merge conflicts.
   ============================================================ */
.esg-story {
    padding: 0 0 40px;
}

.esg-story__visual {
    margin-bottom: 34px;
    border-radius: 0 110px 110px 0;
    overflow: hidden;
    background: linear-gradient(135deg, #edf6e5, #d9e7c5);
}


.esg-story__content {
    max-width: 100%;
    background: #f7f6fb;
    padding: 36px 40px;
    border-left: 5px solid var(--ll-green);
}

.esg-story__title {
    font-size: 18px;
    line-height: 1.15;
    color: var(--ll-green);
    margin-bottom: 16px;
}

.esg-story__content p {
    font-size: 16px;
    line-height: 1.55;
    color: #555;
    margin-bottom: 18px;
    max-width: 980px;
}

.esg-story__content p:last-child {
    margin-bottom: 0;
}

.esg-goal-matrices {
    padding: 0 0 40px;
}

.esg-matrix + .esg-matrix {
    margin-top: 38px;
}

.esg-matrix__head {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-bottom: 18px;
}

.esg-matrix__head-main {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.esg-matrix__head-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.esg-matrix__head-icon img {
    width: 26px;
    height: 26px;
    object-fit: contain;
    display: block;
}

.esg-matrix__head-title {
    font-size: 22px;
    line-height: 1.1;
    font-weight: 700;
    margin: 0;
}

.esg-matrix__head-line {
    position: relative;
    flex: 1 1 auto;
    height: 2px;
    background: rgba(75, 33, 116, .45);
}

.esg-matrix__head-line::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 16px;
    border-radius: 999px;
    background: #77c043;
}

.esg-matrix__head-line::after {
    content: "";
    position: absolute;
    left: 44px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 2px;
    background: var(--ll-green);
}

.esg-matrix__frame {
    display: grid;
    grid-template-columns: 140px minmax(0, 1fr);
    align-items: start;
    gap: 18px;
}

.esg-matrix__ambition {
    background: #edf4e3;
    min-height: 100%;
}

.esg-matrix__ambition-head {
    font-family: var(--font-head);
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;
    text-align: center;
    padding: 18px 12px 14px;
    border-bottom: 3px solid currentColor;
}

.esg-matrix__ambition-body {
    padding: 10px 10px 18px;
}

.esg-matrix__ambition-title {
    font-size: 15px;
    line-height: 1.3;
    color: #555;
    font-weight: 600;
    margin-bottom: 12px;
}

.esg-matrix__ambition-items {
    display: grid;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.esg-matrix__ambition-item {
    display: grid;
    justify-items: center;
    gap: 6px;
    text-align: center;
}

.esg-matrix__ambition-item img {
       width: 49px;
    padding-bottom: 20px;
    object-fit: contain;
    display: block;
}

.esg-matrix__ambition-item p {
    display: none;
    font-size: 10px;
    line-height: 1.25;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
}

.esg-matrix__table-wrap {
    border: 2px solid currentColor;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
}

.esg-matrix__table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.esg-matrix__table col:nth-child(1) { width: 21%; }
.esg-matrix__table col:nth-child(2) { width: 47%; }
.esg-matrix__table col:nth-child(3) { width: 12%; }
.esg-matrix__table col:nth-child(4) { width: 10%; }
.esg-matrix__table col:nth-child(5) { width: 10%; }

.esg-matrix__table thead th {
    font-family: var(--font-head);
    font-size: 16px;
    line-height: 1.2;
    font-weight: 700;
    color: currentColor;
    background: rgba(255, 255, 255, .92);
    padding: 14px 14px 12px;
    text-align: center;
    border-bottom: 1px solid #b8b8b8;
}

.esg-matrix__table tbody th,
.esg-matrix__table tbody td {
    font-size: 16px;
    line-height: 1.35;
    color: #555;
    border-top: 1px solid #b8b8b8;
    padding: 8px 12px;
    vertical-align: top;
}

.esg-matrix__table tbody tr:first-child th,
.esg-matrix__table tbody tr:first-child td {
    border-top: none;
}

.esg-matrix__table tbody th[scope="row"],
.esg-matrix__table tbody th[scope="rowgroup"] {
    font-family: var(--font-body);
    font-weight: 500;
    text-align: left;
}

.esg-matrix__table tbody td:nth-last-child(3),
.esg-matrix__table tbody td:nth-last-child(2),
.esg-matrix__table tbody td:nth-last-child(1) {
    text-align: center;
}

.esg-matrix--environmental {
    color: #77c043;
}

.esg-matrix--environmental .esg-matrix__head-icon {
    background: #77c043;
}

.esg-matrix--environmental .esg-matrix__ambition-head {
    color: #77c043;
}

.esg-matrix--environmental .esg-matrix__ambition-item p {
    color: #77c043;
}

.esg-matrix--social {
    color: #00a8ad;
}

.esg-matrix--social .esg-matrix__head-icon {
    background: #00a8ad;
}

.esg-matrix--social .esg-matrix__ambition {
    background: #e7f4f3;
}

.esg-matrix--social .esg-matrix__ambition-head {
    color: #00a8ad;
}

.esg-matrix--social .esg-matrix__ambition-item p {
    color: #00a8ad;
}

.esg-matrix--governance {
    color: var(--ll-green);
}

.esg-matrix--governance .esg-matrix__head-icon {
    background: var(--ll-green);
}

.esg-matrix--governance .esg-matrix__ambition {
    background: #efebf6;
}

.esg-matrix--governance .esg-matrix__ambition-head {
    color: var(--ll-green);
}

.esg-matrix--governance .esg-matrix__ambition-item p {
    color: var(--ll-green);
}

/* ============================================================
   END: EMPLOYEES PAGE
   Added at file end to reduce merge conflicts.
   ============================================================ */
.employees-overview {
    padding: 0 0 40px;
}

.employees-overview__layout {
    display: block;
}

.employees-overview__label {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: var(--ll-green);
    font-family: var(--font-head);
    font-size: 20px;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 18px;
}

.employees-overview__content {
    padding-top: 0;
}

.employees-kpis {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    margin-bottom: 36px;
}

.employees-kpi-card {
    position: relative;
    padding: 0 22px;
    min-height: 116px;
}

.employees-kpi-card:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: 88px;
    background: rgba(75, 33, 116, 0.22);
    transform: translateY(-50%);
}

.employees-kpi-card:first-child {
    padding-left: 0;
}

.employees-kpi-card:last-child {
    padding-right: 0;
}

.employees-kpi-card__value {
    font-size: 24px;
    line-height: 1.08;
    font-weight: 600;
    color: #77c043;
    margin-bottom: 10px;
}

.employees-kpi-card__copy {
    font-size: 16px;
    line-height: 1.35;
    color: #111;
    margin: 0;
}

.employees-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 38px;
    align-items: start;
}

.employees-detail-col {
    display: grid;
    gap: 26px;
}

.employees-panel__title {
    font-size: 20px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--ll-green);
    margin-bottom: 16px;
}

.employees-sdgs {
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: 450px;
}



.employees-sdgs__item p {
    margin: 0;
    font-size: 10px;
    line-height: 1.25;
    font-weight: 700;
    color: var(--ll-green);
    text-transform: uppercase;
}

.employees-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.employees-list li {
    position: relative;
    padding-left: 18px;
    font-size: 16px;
    line-height: 1.4;
    color: #555;
}

.employees-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border: 2px solid #77c043;
    border-radius: 50%;
}

.employees-list--inline {
    grid-template-columns: repeat(2, minmax(0, max-content));
    gap: 12px 28px;
    align-items: start;
}

.employees-list--two-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 26px;
    row-gap: 12px;
}

.employees-talent {
    padding: 0 0 40px;
}

.employees-talent__content {
    max-width: 100%;
}

.employees-talent__title {
    font-size: 20px;
    line-height: 1.15;
    font-weight: 600;
    color: var(--ll-green);
    margin-bottom: 12px;
}

.employees-talent__intro,
.employees-talent__body,
.employees-talent__metric-copy {
    font-size: 16px;
    line-height: 1.45;
    color: #555;
}

.employees-talent__intro {
    margin-bottom: 24px;
}

.employees-talent__subtitle {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;
    color: #444;
    margin-bottom: 10px;
}

.employees-talent__body {
    margin-bottom: 14px;
}

.employees-talent__body:last-of-type {
    margin-bottom: 0;
}

.employees-talent__metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    max-width: 520px;
    margin-top: 42px;
}

.employees-talent__metric {
    position: relative;
    padding-right: 24px;
}

.employees-talent__metric:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 6px;
    right: 0;
    width: 1px;
    height: calc(100% - 12px);
    background: rgba(75, 33, 116, 0.28);
}

.employees-talent__metric-value {
    font-size: 24px;
    line-height: 1.1;
    font-weight: 700;
    color: var(--ll-green);
    margin-bottom: 8px;
}

.employees-talent__metric-copy {
    margin: 0;
}

.employees-process {
    padding: 0 0 40px;
}

.employees-process__media img {
    width: 100%;
    display: block;
}

.employees-process__panel {
    border: 1.5px solid rgba(75, 33, 116, 0.45);
    border-radius: 24px;
    padding: 34px 30px 30px;
    background: #fff;
}

.employees-process__title {
    font-size: 24px;
    line-height: 1.15;
    font-weight: 700;
    color: #444;
    margin: 0 0 22px;
}

.employees-process__grid {
    margin-top: 0;
}

.employees-process__stack {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.employees-process__row {
    width: 100%;
}

.employees-process__row--top {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.employees-process__row--bottom {
    display: flex;
    gap: 18px;
}

.employees-process__row--bottom .employees-process__item {
    flex: 0 1 calc((100% - 36px) / 3);
    max-width: calc((100% - 36px) / 3);
}

.employees-process__item {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 74px;
    padding: 16px 20px 16px 58px;
    border: 1.5px solid rgba(75, 33, 116, 0.35);
    border-radius: 999px;
    background: #fff;
}

.employees-process__icon {
    position: absolute;
    left: -18px;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 34px;
}

.employees-process__icon img {
    width: 34px;
    height: 34px;
    display: block;
}

.employees-process__label {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 600;
    color: #444;
}

.employees-culture {
    padding: 0 0 40px;
}

.employees-copy-card {
    max-width: 100%;
}

.employees-copy-card__title {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;
    color: #444;
    margin-bottom: 12px;
}

.employees-copy-card__title--dark {
    color: #444;
}

.employees-copy-card__subtitle {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;
    color: #444;
    margin: 22px 0 10px;
    margin-top: 0;
}

.employees-copy-card__body {
    font-size: 16px;
    line-height: 1.45;
    color: #555;
    margin-bottom: 14px;
}

.employees-copy-card__body:last-child {
    margin-bottom: 0;
}

.employees-inline-image {
    width: 100%;
    display: block;
    margin: 0 0 18px;
}

.employees-darpan {
    background: radial-gradient(circle at center, #f4f8ec 0%, #e8f1db 100%);
    border: 2px solid #77c043;
    border-radius: 180px;
    padding: 34px 42px 26px;
    text-align: center;
}

.employees-darpan__title {
    font-size: 24px;
    line-height: 1.1;
    font-weight: 700;
    color: var(--ll-green);
    margin-bottom: 10px;
}

.employees-darpan__lead {
    font-size: 20px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--ll-green);
    margin-bottom: 14px;
}

.employees-darpan__body {
    font-size: 16px;
    line-height: 1.45;
    color: var(--ll-green);
    font-weight: 600;
    max-width: 1040px;
    margin: 0 auto 14px;
}

.employees-darpan__subtitle {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--ll-green);
    margin: 20px 0 18px;
}

.employees-darpan__journey {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.employees-darpan__step {
    position: relative;
    min-width: 92px;
    padding: 8px 16px;
    border: 1.5px solid #77c043;
    border-radius: 999px;
    background: #fff;
    color: var(--ll-green);
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
}

.employees-darpan__step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -18px;
    width: 18px;
    height: 1.5px;
    background: #77c043;
    transform: translateY(-50%);
}

.employees-stability {
    display: block;
}

.employees-stability__metric + .employees-stability__metric {
    margin-top: 0px;
}

.employees-stability__side {
    margin-top: 24px;
}

.employees-stability__label,
.employees-stability__note,
.employees-impact__copy {
    font-size: 16px;
    line-height: 1.4;
    color: #555;
    margin: 0;
}

.employees-stability__value,
.employees-impact__value {
    font-size: 24px;
    line-height: 1.08;
    font-weight: 700;
    color: var(--ll-green);
    margin: 6px 0 2px;
}

.employees-impact {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 20px;
    max-width: 100%;
}

.employees-impact__item {
    position: relative;
    padding-right: 20px;
}

.employees-impact__item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 6px;
    right: 0;
    width: 1px;
    height: calc(100% - 12px);
    background: rgba(75, 33, 116, 0.28);
}

.employees-safety,
.employees-learning {
    padding: 0 0 40px;
}

.employees-safety__pill {
    position: relative;
    border: 2px solid rgba(75, 33, 116, 0.45);
    border-radius: 160px;
    padding: 36px 34px 34px 42px;
    margin-left: 18px;
}

.employees-safety__icon {
    position: absolute;
    left: -18px;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #fff;
    border: 1.5px solid rgba(75, 33, 116, 0.45);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.employees-safety__icon img {
    width: 16px;
    height: 16px;
    object-fit: contain;
    display: block;
}

.employees-safety__grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr 1fr;
    gap: 0;
}

.employees-safety__card {
    padding: 0 22px;
}

.employees-safety__card:not(:last-child) {
    border-right: 1px solid rgba(75, 33, 116, 0.35);
}

.employees-safety__card:first-child {
    padding-left: 0;
}

.employees-safety__card:last-child {
    padding-right: 0;
}

.employees-safety__value {
    font-size: 24px;
    line-height: 1.08;
    font-weight: 700;
    color: var(--ll-green);
    margin-bottom: 10px;
}

.employees-safety__heading {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--ll-green);
    margin-bottom: 18px;
}

.employees-safety__copy {
    font-size: 16px;
    line-height: 1.42;
    color: #555;
    margin: 0;
}

.employees-safety__copy--strong {
    font-size: 18px;
    line-height: 1.35;
    font-weight: 700;
    color: var(--ll-green);
}

.employees-safety__copy--mixed {
    font-size: 16px;
    line-height: 1.42;
    color: var(--ll-green);
}

.employees-safety__copy--mixed strong {
    display: block;
    font-size: 18px;
    line-height: 1.25;
    font-weight: 700;
    margin-bottom: 4px;
}

.employees-safety__bars {
    display: grid;
    gap: 12px;
}

.employees-safety__bar-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 10px;
}

.employees-safety__bar-label,
.employees-safety__bar-value {
    font-size: 16px;
    line-height: 1.2;
    color: #555;
}

.employees-safety__bar-value {
    font-weight: 700;
}

.employees-safety__bar-track {
    height: 12px;
    border-radius: 999px;
    background: #e5edd7;
    overflow: hidden;
}

.employees-safety__bar-fill {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: #77c043;
}

.employees-safety__bar-fill--fy26 {
    width: 74%;
}

.employees-safety__bar-fill--fy25 {
    width: 100%;
    background: #cad9b4;
}

.employees-photo img {
    width: 100%;
    display: block;
}

.employees-programmes__row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    margin-top: 18px;
}

.employees-programmes__item {
    position: relative;
    padding: 0 18px;
}

.employees-programmes__item:first-child {
    padding-left: 0;
}

.employees-programmes__item:last-child {
    padding-right: 0;
}

.employees-programmes__item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 108px;
    background: linear-gradient(180deg, #72bf44 0%, #5b2a86 100%);
}

.employees-programmes__item:not(:last-child)::before {
    content: "";
    position: absolute;
    top: 0;
    right: -3px;
    width: 7px;
    height: 40px;
    border-radius: 999px;
    background: #72bf44;
    z-index: 1;
}

.employees-programmes__top {
    display: flex;
    align-items: flex-start;
    gap: 0;
    min-height: 34px;
    margin-bottom: 6px;
}

.employees-programmes__dot {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    flex: 0 0 34px;
    background: #cfe5b1;
}

.employees-programmes__name {
    font-size: 18px;
    line-height: 1.1;
    font-weight: 600;
    color: var(--ll-green);
    margin: 0 0 0 -16px;
    padding-top: 6px;
    position: relative;
    z-index: 2;
}

.employees-programmes__copy {
    font-size: 16px;
    line-height: 1.42;
    color: #555;
    margin: 0;
    max-width: 200px;
}

.employees-dei {
    padding: 0 0 40px;
}

.employees-human-rights {
    padding: 0 0 40px;
}

.employees-dei__metric-block {
    margin-top: 22px;
}

.employees-dei__metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 22px;
}

.employees-dei__metrics .employees-dei__metric-block {
    margin-top: 0;
}

.employees-dei__metric-block .employees-copy-card__subtitle {
    color: var(--ll-green);
    margin-top: 0;
    margin-bottom: 14px;
}

.employees-dei__bars {
    display: grid;
    gap: 12px;
}

.employees-dei__bar-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 10px;
}

.employees-dei__bar-label,
.employees-dei__bar-value {
    font-size: 16px;
    line-height: 1.2;
    color: #555;
}

.employees-dei__bar-value {
    font-weight: 700;
    color: var(--ll-green);
}

.employees-dei__bar-track {
    height: 14px;
    border-radius: 999px;
    background: #dce7c9;
    overflow: hidden;
    position: relative;
}

.employees-dei__bar-track::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 26px;
    height: 2px;
    background: rgba(75, 33, 116, 0.55);
    transform: translateY(-50%);
}

.employees-dei__bar-fill {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: #77c043;
    position: relative;
    z-index: 1;
}

.employees-dei__bar-fill--wf26 {
    width: 82%;
}

.employees-dei__bar-fill--wf25 {
    width: 72%;
    background: #cad9b4;
}

.employees-dei__bar-fill--wb26,
.employees-dei__bar-fill--wb25 {
    width: 82%;
}

.employees-dei__bar-fill--wb25 {
    background: #cad9b4;
}

/* ============================================================
   END: COMMUNITIES PAGE
   Added at file end to reduce merge conflicts.
   ============================================================ */
.communities-overview {
    padding: 0 0 100px;
}

.communities-copy__body {
    font-size: 16px;
    line-height: 1.45;
    color: #555;
    margin: 0;
}

.communities-chart {
    position: relative;
    overflow: hidden;
}

.communities-chart__wrap {
    display: grid;
    grid-template-columns: 340px minmax(0, 1fr);
    gap: 28px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.communities-chart__wrap--svg {
    display: flex;
    justify-content: center;
    align-items: center;
}

.communities-chart__image {
    display: block;
    width: 100%;
    max-width: 800px;
    height: auto;
}

.communities-chart__visual {
    display: flex;
    justify-content: center;
}

.communities-donut {
    width: 248px;
    aspect-ratio: 1;
    border-radius: 50%;
    position: relative;
    transform: scale(.82) rotate(-18deg);
    opacity: 0;
    background:
        conic-gradient(
            #82c646 0deg 208.8deg,
            #4d1d72 208.8deg 262.8deg,
            #84c3df 262.8deg 309.6deg,
            #12a6a6 309.6deg 345.6deg,
            #b9b9b9 345.6deg 352.8deg,
            #535353 352.8deg 356.4deg,
            #a9c79d 356.4deg 360deg
        );
}

.communities-chart__legend {
    max-width: 470px;
    opacity: 0;
    transform: translateX(24px);
}

.communities-chart.is-visible .communities-donut {
    animation: communitiesDonutReveal .9s ease forwards;
}

.communities-chart.is-visible .communities-chart__legend {
    animation: communitiesLegendReveal .7s ease .2s forwards;
}

.communities-donut::after {
    content: "";
    position: absolute;
    inset: 58px;
    background: #fff;
    border-radius: 50%;
}

.communities-donut__label {
    position: absolute;
    font-size: 14px;
    line-height: 1;
    color: #555;
    opacity: 0;
    transition: opacity .35s ease .35s;
}

.communities-chart.is-visible .communities-donut__label {
    opacity: 1;
}

.communities-donut__label--p58 { right: -34px; top: 184px; }
.communities-donut__label--p15 { left: 6px; bottom: 38px; }
.communities-donut__label--p13 { left: -18px; top: 136px; }
.communities-donut__label--p10 { left: 8px; top: 42px; }
.communities-donut__label--p2 { left: 86px; top: -2px; }
.communities-donut__label--p1a { left: 128px; top: -12px; }
.communities-donut__label--p1b { left: 164px; top: -12px; }

.communities-legend {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.communities-legend li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    line-height: 1.35;
    color: #555;
}

.communities-legend strong {
    font-weight: 700;
}

.communities-legend__swatch {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
}

.communities-legend__swatch--rural { background: #82c646; }
.communities-legend__swatch--health { background: #4d1d72; }
.communities-legend__swatch--environment { background: #84c3df; }
.communities-legend__swatch--education { background: #12a6a6; }
.communities-legend__swatch--heritage { background: #b9b9b9; }
.communities-legend__swatch--sports { background: #535353; }
.communities-legend__swatch--women { background: #a9c79d; }

@keyframes communitiesDonutReveal {
    from {
        opacity: 0;
        transform: scale(.82) rotate(-18deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

@keyframes communitiesLegendReveal {
    from {
        opacity: 0;
        transform: translateX(24px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.communities-kpi-panel {
    display: block;
}

.communities-kpi-panel__content {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
    align-items: start;
}

.communities-kpi-panel__top,
.communities-kpi-panel__bottom {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    align-items: start;
}

.communities-kpi-panel__top {
    margin-bottom: 0;
}

.communities-kpi-panel__label {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: var(--ll-green);
    font-family: var(--font-head);
    font-size: 20px;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 18px;
}

.communities-kpi__value {
    font-size: 24px;
    line-height: 1.08;
    font-weight: 600;
    color: #77c043;
    margin-bottom: 8px;
}

.communities-kpi__copy {
    font-size: 16px;
    line-height: 1.35;
    color: #111;
    margin: 0;
}

.communities-section-title {
    font-size: 20px;
    line-height: 1.2;
    font-weight: 600;
    color: var(--ll-green);
    margin-bottom: 14px;
}

.communities-sdgs {
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.communities-sdgs__item img {
    max-width: 400px;
    object-fit: contain;
    display: block;
}

.communities-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.communities-list li {
    position: relative;
    padding-left: 18px;
    font-size: 16px;
    line-height: 1.4;
    color: #555;
}

.communities-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border: 2px solid #77c043;
    border-radius: 50%;
}

.communities-kpi,
.communities-sdgs-block,
.communities-list-block {
    min-height: 100%;
}

.communities-sdgs-block,
.communities-list-block,
.communities-kpi {
    display: block;
    position: relative;
    padding-left: 4px;
}

.communities-kpi {
    padding-left: 0;
}

.communities-kpi-panel__top > section + section,
.communities-kpi-panel__bottom > section + section {
    border-left: 1px solid rgba(86, 49, 113, 0.22);
    padding-left: 24px!important;
}

.communities-list-block:last-child {
    padding-right: 0;
}

.communities-initiatives {
    padding-top: 8px;
}

.communities-initiative-card {
    height: 100%;
    margin-bottom: 30px;
}

.communities-initiative-card__media {
    border-radius: 0 110px 110px 0;
    overflow: hidden;
    margin-bottom: 0;
}

.communities-initiative-card__media img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.communities-initiative-card__content {
    position: relative;
    padding: 24px 0 0 28px;
    margin-left: 22px;
}

.communities-initiative-card__content::before {
    content: "";
    position: absolute;
    left: 0;
    top: -14px;
    bottom: 0;
    width: 1px;
    background: rgba(86, 49, 113, 0.8);
}

.communities-initiative-card__content::after {
    content: "";
    position: absolute;
    left: -8px;
    top: 14px;
    width: 8px;
    height: 42px;
    border-radius: 999px;
    background: #77c043;
    box-shadow: 2px 0 0 #563171;
}

.communities-initiative-card__title {
    font-size: 20px;
    line-height: 1.15;
    font-weight: 600;
    color: var(--ll-green);
    margin-bottom: 14px;
}

.communities-initiative-card__copy {
    font-size: 16px;
    line-height: 1.42;
    color: #444;
    margin: 0 0 14px;
}

.communities-initiative-card__copy:last-child {
    margin-bottom: 0;
}

/* ============================================================
   END: CUSTOMERS PAGE
   Added at file end to reduce merge conflicts.
   ============================================================ */
.customers-overview {
    padding: 0 0 100px;
}

.customers-kpi-panel__content {
    display: grid;
    gap: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
}

.customers-kpi {
    display: block;
    position: relative;
    padding-right: 24px;
}

.customers-kpi-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: start;
}

.customers-middle-column {
    display: grid;
    gap: 24px;
    padding: 0 24px;
    position: relative;
}

.customers-sdgs-block,
.customers-list-block {
    position: relative;
    min-height: 100%;
    padding: 0 24px;
}

.customers-kpi-row .customers-kpi-item {
    position: relative;
    padding: 0;
}

.customers-list-block:last-child {
    padding-right: 0;
}

.customers-middle-column .customers-sdgs-block,
.customers-middle-column .customers-list-block {
    padding: 0;
}

.customers-sdgs-block,
.customers-list-block {
    display: block;
}

.customers-middle-column::before,
.customers-list-block::before {
    content: "";
    position: absolute;
    left: -32px;
    top: 4px;
    bottom: 4px;
    width: 1px;
    background: rgba(86, 49, 113, 0.22);
}

.customers-kpi-row .customers-kpi-item::before,
.customers-middle-column .customers-list-block::before {
    display: none;
}

.customers-section-title--kpi {
    margin-bottom: 16px;
}

.customers-section-title {
    font-size: 20px;
    line-height: 1.2;
    font-weight: 600;
    color: var(--ll-green);
    margin-bottom: 16px;
}

.customers-kpi-item__value {
    font-size: 24px;
    line-height: 1.08;
    font-weight: 600;
    color: #77c043;
    margin-bottom: 8px;
}

.customers-kpi-item__copy {
    margin: 0;
    font-size: 16px;
    line-height: 1.35;
    color: #111;
}

.customers-sdgs {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: flex-start;
}

.customers-sdgs__item img {
    width: 82px;
    object-fit: contain;
    display: block;
}

.customers-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.customers-list li {
    position: relative;
    padding-left: 18px;
    font-size: 16px;
    line-height: 1.4;
    color: #555;
}

.customers-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border: 2px solid #77c043;
    border-radius: 50%;
}

.customers-section-card {
    background: transparent;
    padding: 0;
    border-radius: 0;
}

.customers-section-card__title {
    font-size: 20px;
    line-height: 1.2;
    font-weight: 600;
    color: var(--ll-green);
    margin-bottom: 14px;
}

.customers-section-card__subtitle {
    font-size: 18px;
    line-height: 1.25;
    font-weight: 600;
    color: #444;
    margin: 20px 0 14px;
}

.customers-section-card__body {
    font-size: 16px;
    line-height: 1.42;
    color: #555;
    margin: 0 0 14px;
}

.customers-section-card__body:last-child {
    margin-bottom: 0;
}

.customers-table-wrap {
    overflow-x: auto;
}

.customers-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
}

.customers-table thead th {
    background: #82c646;
    color: #fff;
    font-size: 16px;
    line-height: 1.25;
    font-weight: 600;
    text-align: left;
    padding: 12px 16px;
}

.customers-table tbody td {
    position: relative;
    padding: 14px 16px;
    vertical-align: top;
    font-size: 16px;
    line-height: 1.35;
    color: #555;
    border-bottom: 1px solid rgba(86, 49, 113, 0.9);
}

.customers-table tbody td:first-child {
    width: 30%;
}

.customers-table tbody td:first-child::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 26px;
    height: 8px;
    background: #72bf44;
    border-radius: 999px;
}

.customers-table tbody tr:last-child td {
    border-bottom: 0;
}

.customers-table tbody tr:last-child td:first-child::after {
    display: none;
}

/* ============================================================
   END: SUPPLIERS PAGE
   Added at file end to reduce merge conflicts.
   ============================================================ */
.suppliers-overview {
    padding: 0 0 100px;
}

.suppliers-kpi-panel__content {
    display: grid;
    gap: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
}

.suppliers-kpi {
    display: block;
    position: relative;
    padding-right: 24px;
}

.suppliers-kpi-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: start;
    padding-right: 30px;
}

.suppliers-middle-column {
    display: grid;
    gap: 24px;
    padding: 0 24px;
    position: relative;
}

.suppliers-sdgs-block,
.suppliers-list-block {
    position: relative;
    min-height: 100%;
    padding: 0 24px;
}

.suppliers-kpi-row .suppliers-kpi-item {
    position: relative;
    padding: 0;
}

.suppliers-list-block:last-child {
    padding-right: 0;
}

.suppliers-middle-column .suppliers-sdgs-block,
.suppliers-middle-column .suppliers-list-block {
    padding: 0;
}

.suppliers-sdgs-block,
.suppliers-list-block {
    display: block;
}

.suppliers-middle-column::before,
.suppliers-list-block::before {
    content: "";
    position: absolute;
    left: -20px;
    top: 4px;
    bottom: 4px;
    width: 1px;
    height: 374px;
    background: rgba(86, 49, 113, 0.22);
}

.suppliers-kpi-row .suppliers-kpi-item::before,
.suppliers-middle-column .suppliers-list-block::before {
    display: none;
}

.suppliers-section-title--kpi {
    margin-bottom: 16px;
}

.suppliers-section-title {
    font-size: 20px;
    line-height: 1.2;
    font-weight: 600;
    color: var(--ll-green);
    margin-bottom: 16px;
}

.suppliers-kpi-item__value {
    font-size: 24px;
    line-height: 1.08;
    font-weight: 600;
    color: #77c043;
    margin-bottom: 8px;
}

.suppliers-kpi-item__copy {
    margin: 0;
    font-size: 16px;
    line-height: 1.4;
    color: #111;
}

.suppliers-sdgs {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.suppliers-sdgs__item img {
    width: 250px;
    object-fit: contain;
    display: block;
}

.suppliers-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.suppliers-list li {
    position: relative;
    padding-left: 18px;
    font-size: 16px;
    line-height: 1.4;
    color: #555;
}

.suppliers-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border: 2px solid #77c043;
    border-radius: 50%;
}



.suppliers-story-card,
.suppliers-programme-card,
.suppliers-process-card {
    background: none;
    padding: 0;
    border-radius: 0;
}

.suppliers-story-copy + .suppliers-story-copy {
    margin-top: 14px;
}

.suppliers-story-copy__title,
.suppliers-programme-card__title,
.suppliers-process-copy__title {
    font-size: 20px;
    line-height: 1.2;
    font-weight: 600;
    color: var(--ll-green);
    margin-bottom: 14px;
}

.suppliers-story-copy__subtitle {
    font-size: 18px;
    line-height: 1.25;
    font-weight: 600;
    color: var(--ll-green);
    margin: 22px 0 14px;
}

.suppliers-story-copy__body,
.suppliers-programme-card__body,
.suppliers-process-copy__body {
    font-size: 16px;
    line-height: 1.42;
    color: #555;
    margin: 0 0 14px;
}

.suppliers-story-copy__body:last-child,
.suppliers-programme-card__body:last-child,
.suppliers-process-copy__body:last-child {
    margin-bottom: 0;
}

.suppliers-story-copy__metric {
    margin: 20px 0 18px;
}

.suppliers-story-copy__metric-value {
    font-size: 24px;
    line-height: 1.08;
    font-weight: 600;
    color: #00a9a7;
    margin-bottom: 8px;
}

.suppliers-story-copy__metric-copy {
    font-size: 16px;
    line-height: 1.4;
    color: #111;
    margin: 0;
}

.suppliers-story-copy__highlight {
    font-size: 18px;
    line-height: 1.3;
    font-weight: 600;
    color: #00a9a7;
    margin: 0;
}

.suppliers-programme-card {
    position: relative;
}

.suppliers-programme-card__line {
    position: relative;
    height: 12px;
    margin-bottom: 18px;
}

.suppliers-programme-card__line::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    right: 0;
    height: 1px;
    background: rgba(86, 49, 113, 0.9);
}

.suppliers-programme-card__line::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 58px;
    height: 12px;
    border-radius: 999px;
    background: #77c043;
    box-shadow: 12px 0 0 #edf5df;
}

.suppliers-process-copy--lower {
    margin-top: 26px;
}

.suppliers-process-copy--right {
    text-align: left;
}

.suppliers-process-visual {
    position: relative;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
}

.suppliers-process-visual__ring {
    position: absolute;
    border: 2px solid rgba(86, 49, 113, 0.9);
    border-radius: 50%;
}

.suppliers-process-visual__ring--outer {
    inset: 24px;
    clip-path: polygon(8% 35%, 26% 24%, 42% 34%, 50% 18%, 64% 20%, 78% 36%, 88% 52%, 72% 62%, 66% 82%, 48% 84%, 36% 68%, 22% 62%, 10% 50%);
}

.suppliers-process-visual__ring--inner {
    inset: 104px;
    clip-path: polygon(14% 34%, 34% 18%, 62% 22%, 84% 46%, 66% 68%, 38% 72%, 18% 56%);
}


.suppliers-process-visual::before {
    left: -34px;
}

.suppliers-process-visual::after {
    right: -34px;
}


.suppliers-process-visual__badge--top-left {
    top: 68px;
    left: 58px;
}

.suppliers-process-visual__badge--top-right {
    top: 62px;
    right: 54px;
}

.suppliers-process-visual__badge--bottom-left {
    bottom: 62px;
    left: 58px;
}

.suppliers-process-visual__badge--bottom-right {
    bottom: 62px;
    right: 52px;
}

/* ============================================================
   END: ENVIRONMENT PAGE
   Added at file end to reduce merge conflicts.
   ============================================================ */
.environment-overview,
.environment-theme {
    padding: 0 0 40px;
}

.environment-kpi-panel__content {
    display: grid;
    gap: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
}

.environment-kpi {
    display: block;
    position: relative;
    padding-right: 24px;
}

.environment-kpi-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: start;
}

.environment-middle-column {
    display: grid;
    gap: 24px;
    padding: 0 24px;
    position: relative;
}

.environment-sdgs-block,
.environment-list-block {
    position: relative;
    min-height: 100%;
    padding: 0 24px;
}

.environment-kpi-item {
    position: relative;
    padding: 0;
}

.environment-list-block:last-child {
    padding-right: 0;
}

.environment-middle-column .environment-sdgs-block,
.environment-middle-column .environment-list-block {
    padding: 0;
}

.environment-sdgs-block,
.environment-list-block {
    display: block;
}

.environment-middle-column::before,
.environment-list-block::before {
    content: "";
    position: absolute;
    left: -20px;
    top: 4px;
    bottom: 4px;
    height: 245px;
    width: 1px;
    background: rgba(86, 49, 113, 0.22);
}

.environment-kpi-item::before,
.environment-middle-column .environment-list-block::before {
    display: none;
}

.environment-section-title,
.environment-card__title,
.environment-card__subtitle,
.environment-wayforward__title,
.environment-sbti__title {
    font-family: var(--font-head);
    color: #4b2174;
}

.environment-section-title,
.environment-card__title {
    font-size: 24px;
    line-height: 1.2;
    font-weight: 600;
    margin: 0 0 16px;
}

.environment-section-title--kpi {
    margin-bottom: 16px;
}

.environment-card__subtitle {
    font-size: 18px;
    line-height: 1.25;
    font-weight: 600;
    margin: 24px 0 14px;
}

.environment-card__subtitle--flush {
    margin-top: 0;
}

.environment-card__body,
.environment-focus-card__body,
.environment-sbti__content p,
.environment-wayforward__card p {
    font-size: 16px;
    line-height: 1.42;
    color: #555;
    margin: 0 0 14px;
}

.environment-card__body:last-child,
.environment-sbti__content p:last-child,
.environment-wayforward__card p:last-child {
    margin-bottom: 0;
}

.environment-kpi-item__value {
    font-family: var(--font-head);
    font-size: 24px;
    line-height: 1.08;
    font-weight: 600;
    color: #77c043;
    margin: 0 0 8px;
}

.environment-kpi-item__copy {
    margin: 0;
    font-size: 16px;
    line-height: 1.35;
    color: #111;
    max-width: 230px;
}

.environment-sdgs {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.environment-sdgs__item img {
    width: 180px;
    object-fit: contain;
    display: block;
}

.environment-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.environment-list li {
    position: relative;
    padding-left: 18px;
    font-size: 16px;
    line-height: 1.4;
    color: #555;
}

.environment-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border: 2px solid #77c043;
    border-radius: 50%;
}

.environment-list--compact {
    gap: 8px;
}

.environment-card,
.environment-focus-card,
.environment-sbti {
    background: transparent;
}

.environment-card__note {
    margin: 6px 0 0;
    font-size: 12px;
    line-height: 1.35;
    color: #666;
}

.environment-stack {
    display: grid;
    gap: 24px;
}

.environment-focus-card {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 12px;
    align-items: flex-start;
}

.environment-focus-card__marker {
    position: relative;
    width: 18px;
    height: 44px;
    margin-top: 2px;
}

.environment-focus-card__marker::before {
    content: "";
    position: absolute;
    left: 6px;
    top: 0;
    width: 6px;
    height: 32px;
    border-radius: 999px;
    background: #77c043;
}

.environment-focus-card__marker::after {
    content: "";
    position: absolute;
    left: 8px;
    top: 28px;
    width: 1px;
    height: 40px;
    background: rgba(86, 49, 113, 0.9);
}

.environment-donut-block + .environment-card__subtitle {
    margin-top: 26px;
}

.environment-donut-block {
    display: grid;
    gap: 18px;
}

.environment-donut {
    --size: 242px;
    position: relative;
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    margin: 6px 0 2px 18px;
}

.environment-donut::after {
    content: "";
    position: absolute;
    inset: 31px;
    background: #fff;
    border-radius: 50%;
}

.environment-donut--energy-fuels {
    background: conic-gradient(#84c646 0 97.70%, #16a5a2 97.70% 99.65%, #4b2174 99.65% 99.98%, #d5d5d5 99.98% 100%);
}

.environment-donut--energy-electricity {
    background: conic-gradient(#84c646 0 89.13%, #16a5a2 89.13% 100%);
}

.environment-donut--emissions {
    --size: 150px;
    background: conic-gradient(#4b2174 0 51%, #16a5a2 51% 67%, #84c646 67% 100%);
}

img.environment-donut--energy-fuels,
img.environment-donut--energy-electricity,
img.environment-donut--emissions {
    display: block;
    position: static;
    background: transparent;
    border-radius: 0;
    object-fit: contain;
    height: auto;
    margin: 6px 0 2px 18px;
}

/* img.environment-donut--energy-fuels,
img.environment-donut--energy-electricity {
    width: min(100%, 158px);
} */

img.environment-donut--emissions {
    width: min(100%, 180px);
}

.environment-donut__label {
    position: absolute;
    z-index: 2;
    font-size: 12px;
    line-height: 1;
    color: #666;
}

.environment-donut__label--top-left {
    left: -8px;
    top: -2px;
}

.environment-donut__label--top {
    left: 48px;
    top: -15px;
}

.environment-donut__label--top-right {
    right: -10px;
    top: -2px;
}

.environment-donut__label--right {
    right: -44px;
    top: 64px;
}

.environment-donut__label--left {
    left: -27px;
    top: 64px;
}

.environment-donut__label--right-top {
    right: -22px;
    top: 26px;
}

.environment-donut__label--right-bottom {
    right: -16px;
    bottom: 30px;
}

.environment-legend {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.environment-legend--stacked {
    margin-bottom: 20px;
}

.environment-legend li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.35;
    color: #555;
}

.environment-legend strong {
    color: #555;
    font-weight: 600;
}

.environment-legend__swatch {
    width: 12px;
    height: 12px;
    margin-top: 4px;
    flex: 0 0 auto;
}

.environment-legend__swatch--coal,
.environment-legend__swatch--grid,
.environment-legend__swatch--scope1 {
    background: #84c646;
}

.environment-legend__swatch--diesel {
    background: #d7d7d7;
}

.environment-legend__swatch--lpg,
.environment-legend__swatch--scope3 {
    background: #4b2174;
}

.environment-legend__swatch--steam,
.environment-legend__swatch--renewable,
.environment-legend__swatch--scope2 {
    background: #16a5a2;
}

.environment-card--visual {
    position: relative;
}

.environment-chart-layout {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 18px 26px;
    align-items: center;
}

.environment-bars__title {
    font-family: var(--font-head);
    font-size: 18px;
    line-height: 1.25;
    color: #4b2174;
    margin: 0 0 14px;
}

.environment-bars__item {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) 34px;
    align-items: center;
    gap: 10px;
}

.environment-bars__item + .environment-bars__item {
    margin-top: 8px;
}

.environment-bars__label,
.environment-bars__value {
    font-size: 13px;
    line-height: 1.2;
    color: #555;
}

.environment-bars__track {
    position: relative;
    height: 8px;
    border-radius: 999px;
    background: #e5e5e5;
    overflow: hidden;
}

.environment-bars__fill {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    border-radius: 999px;
}

.environment-bars__fill--fy26 {
    width: 93%;
    background: linear-gradient(90deg, #84c646, #5ca633);
}

.environment-bars__fill--fy25 {
    width: 95%;
    background: linear-gradient(90deg, #c7c7c7, #9c9c9c);
}

.environment-wayforward {
    display: grid;
    gap: 14px;
}

.environment-wayforward__card {
    position: relative;
    border: 1.5px solid #84c646;
    background: linear-gradient(135deg, #eef8df 0%, #dff0c8 100%);
    border-radius: 36px;
    padding: 24px 22px 24px 26px;
}

.environment-wayforward__badge {
    position: absolute;
    left: -14px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #bfaee1;
}

.environment-wayforward__badge::before {
    content: "";
    position: absolute;
    left: 9px;
    top: 7px;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 7px solid #16a5a2;
}

.environment-wayforward__title {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 600;
    margin: 0 0 12px;
}

.environment-image-card {
    overflow: hidden;
}

.environment-image-card img {
    width: 100%;
    object-fit: cover;
    display: block;
}

.environment-sbti {
    position: relative;
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 18px;
    padding: 26px 26px 24px;
    border: 1.5px solid rgba(86, 49, 113, 0.9);
    border-radius: 20px;
}

.environment-sbti__mark img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    display: block;
}

.environment-sbti__title {
    font-size: 20px;
    line-height: 1.2;
    font-weight: 600;
    margin: 0 0 12px;
}

.environment-sbti__dot {
    position: absolute;
    right: 14px;
    top: -14px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #84c646;
}

/* ============================================================
   END: INVESTORS PAGE
   Added at file end to reduce merge conflicts.
   ============================================================ */
.investors-overview {
    padding: 0 0 40px;
}

.investors-kpi-panel__content {
    display: grid;
    gap: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
}

.investors-kpi {
    display: block;
    position: relative;
    padding-right: 24px;
}

.investors-kpi-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    align-items: start;
}

.investors-middle-column {
    display: grid;
    gap: 24px;
    padding: 0 24px;
    position: relative;
}

.investors-sdgs-block,
.investors-list-block {
    position: relative;
    min-height: 100%;
    padding: 0 24px;
}

.investors-kpi-row .investors-kpi-item {
    position: relative;
    padding: 0;
}

.investors-list-block:last-child {
    padding-right: 0;
}

.investors-middle-column .investors-sdgs-block,
.investors-middle-column .investors-list-block {
    padding: 0;
}

.investors-sdgs-block,
.investors-list-block {
    display: block;
}

.investors-middle-column::before,
.investors-list-block::before {
    content: "";
    position: absolute;
    left: -26px;
    top: 4px;
    bottom: 4px;
    width: 1px;
    background: rgba(86, 49, 113, 0.22);
}

.investors-kpi-row .investors-kpi-item::before,
.investors-middle-column .investors-list-block::before {
    display: none;
}

.investors-section-title {
    font-family: var(--font-head);
    font-size: 20px;
    line-height: 1.2;
    font-weight: 600;
    color: #4b2174;
    margin: 0 0 16px;
}

.investors-section-title--kpi {
    margin-bottom: 16px;
}

.investors-kpi-item__value {
    font-family: var(--font-head);
    font-size: 24px;
    line-height: 1.08;
    font-weight: 600;
    color: #77c043;
    margin: 0 0 8px;
}

.investors-kpi-item__copy {
    margin: 0;
    font-size: 16px;
    line-height: 1.35;
    color: #111;
}

.investors-sdgs {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.investors-sdgs__item img {
    width: 80px;
    object-fit: contain;
    display: block;
}

.investors-list li {
    position: relative;
    padding-left: 18px;
    font-size: 16px;
    line-height: 1.4;
    color: #555;
}

.investors-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border: 2px solid #77c043;
    border-radius: 50%;
}

.investors-theme {
    padding: 0 0 40px;
}

.investors-card {
    background: transparent;
}

.investors-card__title,
.investors-head__title,
.investors-metric-card__title {
    font-family: var(--font-head);
    font-size: 20px;
    line-height: 1.2;
    font-weight: 600;
    color: #4b2174;
    margin: 0 0 16px;
}

.investors-card__title--tight span {
    font-size: 18px;
}

.investors-card__subtitle {
    font-family: var(--font-head);
    font-size: 18px;
    line-height: 1.25;
    font-weight: 600;
    color: #4b2174;
    margin: 24px 0 14px;
}

.investors-card__subtitle--flush {
    margin-top: 0;
}

.investors-card__body,
.investors-metric-card__copy {
    font-size: 16px;
    line-height: 1.42;
    color: #555;
    margin: 0 0 14px;
}

.investors-card__body:last-child,
.investors-metric-card__copy:last-child {
    margin-bottom: 0;
}

.investors-list {
    list-style: none;
    margin: 0 0 14px;
    padding: 0;
    display: grid;
    gap: 10px;
}

.investors-list li {
    position: relative;
    padding-left: 18px;
    font-size: 16px;
    line-height: 1.4;
    color: #555;
}

.investors-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border: 2px solid #77c043;
    border-radius: 50%;
}

.investors-marketcap {
    background: linear-gradient(135deg, #eef8df 0%, #dff0c8 100%);
    border-radius: 56px;
    padding: 22px 28px 26px;
}

.investors-marketcap__rows {
    display: grid;
    gap: 10px;
}

.investors-marketcap__row {
    display: grid;
    grid-template-columns: 98px minmax(0, 1fr) 42px;
    align-items: center;
    gap: 10px;
}

.investors-marketcap__row span,
.investors-marketcap__row strong {
    font-size: 12px;
    line-height: 1.2;
    color: #555;
}

.investors-marketcap__track,
.investors-mini-chart__track {
    position: relative;
    height: 10px;
    border-radius: 999px;
    overflow: visible;
}

.investors-marketcap__track::after,
.investors-mini-chart__track::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    transform: translateY(-50%);
    background: rgba(86, 49, 113, 0.9);
}

.investors-marketcap__fill,
.investors-mini-chart__track span {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    border-radius: 999px;
    background: linear-gradient(90deg, #dce9cf 0%, #84c646 100%);
    z-index: 1;
}

.investors-stack {
    display: grid;
    gap: 24px;
}

.investors-image {
    overflow: hidden;
}

.investors-image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.investors-head {
    padding-bottom: 8px;
}

.investors-metric-card {
    background: transparent;
}

.investors-theme--numbers .row > [class*="col-"] {
    display: flex;
}

.investors-theme--numbers .investors-metric-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 100%;
    padding: 22px 22px 24px;
    border: 1px solid rgba(86, 49, 113, 0.16);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(34, 20, 58, 0.08);
}

.investors-metric-card__title {
    font-size: 18px;
    margin-bottom: 8px;
}

.investors-metric-card__copy {
    margin-bottom: 20px;
    min-height: 68px;
}

.investors-mini-chart {
    display: grid;
    gap: 10px;
    margin-top: auto;
}

.investors-mini-chart__row {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) 58px;
    align-items: center;
    gap: 10px;
}

.investors-mini-chart__row span,
.investors-mini-chart__row strong {
    font-size: 13px;
    line-height: 1.2;
    color: #555;
}

/* ============================================================
   END: GOVERNANCE PAGE
   Added at file end to reduce merge conflicts.
   ============================================================ */
.governance-values,
.governance-principles {
    padding: 0 0 40px;
}

.governance-board,
.governance-highlights,
.governance-oversight,
.governance-policies {
    padding: 0 0 40px;
}

.governance-values__lead,
.governance-card__body {
    font-size: 16px;
    line-height: 1.42;
    color: #555;
    margin: 0;
}

.governance-values__lead strong {
    color: #333;
    font-weight: 600;
}

.governance-values__grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.governance-value-card {
    text-align: center;
}

.governance-value-card__icon {
    margin: 0 auto 14px;
    border-radius: 50%;
    color: #4b2174;
    display: grid;
    place-items: center;
    font-size: 30px;
}

.governance-value-card__icon img {
    width: 80px;
    display: block;
    object-fit: contain;
}

.governance-value-card__title,
.governance-card__title,
.governance-card__subtitle {
    font-family: var(--font-head);
    color: #4b2174;
}

.governance-value-card__title {
    font-size: 20px;
    line-height: 1.2;
    font-weight: 600;
    margin: 0 0 8px;
}

.governance-value-card__copy {
    max-width: 150px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.35;
    color: #555;
}

.governance-stack {
    display: grid;
    gap: 24px;
}

.governance-card {
    background: transparent;
}

.governance-card__title {
    font-size: 24px;
    line-height: 1.2;
    font-weight: 600;
    margin: 0 0 18px;
}

.governance-card__subtitle {
    font-size: 18px;
    line-height: 1.25;
    font-weight: 600;
    margin: 20px 0 8px;
}

.governance-card__subtitle--flush {
    margin-top: 0;
}

.governance-card__body + .governance-card__subtitle {
    margin-top: 22px;
}

.governance-card--accent {
    position: relative;
}

.governance-card--accent::after {
    content: "";
    position: absolute;
    right: 18px;
    bottom: 10px;
    width: 120px;
    height: 72px;
    opacity: 0.18;
    background:
        radial-gradient(circle at 8px 8px, #d9d9e4 3px, transparent 4px) 0 0 / 22px 22px,
        linear-gradient(135deg, transparent 44%, #d9d9e4 45%, #d9d9e4 55%, transparent 56%) 0 0 / 22px 22px;
    pointer-events: none;
}

.governance-image-card {
    height: 100%;
    overflow: hidden;
    border-radius: 0 110px 110px 0;
    background: linear-gradient(135deg, #edf6e5, #d9e7c5);
}

.governance-image-card img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    display: block;
}

.governance-section-title,
.governance-copy-block__title,
.governance-chart-card__title {
    font-family: var(--font-head);
    color: #4b2174;
}

.governance-section-title {
    font-size: 36px;
    line-height: 1.15;
    font-weight: 400;
    margin: 0 0 28px;
}

.governance-section-title--sm {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.governance-board__media {
    overflow: hidden;
}

.governance-board__media img {
    width: 100%;
    min-height: 320px;
    object-fit: cover;
    display: block;
}

.governance-board__lead {
    position: relative;
    padding-left: 32px;
}

.governance-board__deco {
    position: absolute;
    left: 0;
    top: -10px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #d7edbf;
}

.governance-board__lead p,
.governance-copy-block p,
.governance-meter__label {
    font-size: 16px;
    line-height: 1.45;
    color: #555;
}

.governance-board__lead p {
    position: relative;
    z-index: 1;
    font-size: 18px;
    line-height: 1.45;
    font-weight: 500;
    color: #4b2174;
}

.governance-copy-block__title,
.governance-chart-card__title {
    font-size: 20px;
    line-height: 1.2;
    font-weight: 700;
    margin: 0 0 10px;
}

.governance-chart-card__image {
    display: block;
    max-width: 400px;
    height: auto;
    margin: 8px 0 0;
}
article.governance-chart-card.secGov img {
    max-width: 237px;
}
.governance-highlights__head {
    margin-bottom: 8px;
}



.governance-highlights__row > [class*="col-"] {
    display: flex;
}

.governance-chart-card,
.governance-stat-card,
.governance-skills__table,
.governance-reporting-image {
    background: transparent;
}

.governance-chart-card,
.governance-stat-card {
    height: 100%;
    width: 100%;
}

.governance-donut {
    position: relative;
    width: 188px;
    height: 188px;
    margin: 18px 0 18px 16px;
    border-radius: 50%;
}

.governance-donut::before {
    content: "";
    position: absolute;
    inset: 38px;
    border-radius: 50%;
    background: #fff;
}

.governance-donut--experience {
    background: conic-gradient(#4b196d 0 70%, #11a7a3 70% 80%, #84c646 80% 100%);
}

.governance-donut--age {
    background: conic-gradient(#11a7a3 0 80%, #84c646 80% 100%);
}

.governance-donut__value {
    position: absolute;
    font-size: 15px;
    line-height: 1;
    color: #666;
}

.governance-donut__value--left {
    left: -26px;
    top: 84px;
}

.governance-donut__value--top {
    right: -10px;
    top: -2px;
}

.governance-donut__value--right {
    right: -18px;
    top: 82px;
}

.governance-donut__value--low {
    top: 128px;
}

.governance-legend {
    list-style: none;
    margin: 0;
    padding: 0 0 0 16px;
    display: grid;
    gap: 8px;
}

.governance-legend li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    line-height: 1.25;
    color: #555;
}

.governance-legend__swatch {
    width: 14px;
    height: 14px;
    flex: 0 0 14px;
}

.governance-legend__swatch--green {
    background: #84c646;
}

.governance-legend__swatch--teal {
    background: #11a7a3;
}

.governance-legend__swatch--purple {
    background: #4b196d;
}

.governance-stat-card {
    display: grid;
    gap: 28px;
    align-content: start;
    padding: 22px 20px 24px;
    border: 1px solid rgba(86, 49, 113, 0.14);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(33, 24, 58, 0.06);
}

.governance-metric-group {
    display: grid;
    gap: 14px;
}

.governance-meter {
    display: grid;
    grid-template-columns: 168px minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
}

.governance-meter__track {
    position: relative;
    height: 14px;
}

.governance-meter__track::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: rgba(86, 49, 113, 0.9);
    transform: translateY(-50%);
}

.governance-meter__fill {
    position: absolute;
    left: 0;
    top: 2px;
    bottom: 2px;
    border-radius: 999px;
    z-index: 1;
}

.governance-meter__fill--green {
    background: linear-gradient(90deg, #d9ebcc 0%, #77c043 100%);
}

.governance-meter__fill--light {
    background: #dbe7d0;
}

.governance-meter__value {
    font-size: 16px;
    line-height: 1.1;
    font-weight: 600;
    color: #666;
    white-space: nowrap;
}

.governance-attendance {
    display: flex;
    align-items: flex-start;
    gap: 42px;
    margin-top: 36px;
}

.governance-attendance__item {
    max-width: 220px;
}

.governance-attendance__item strong {
    display: block;
    font-family: var(--font-head);
    font-size: 28px;
    line-height: 1;
    font-weight: 600;
    color: #4b2174;
    margin-bottom: 8px;
}

.governance-attendance__item p {
    font-size: 16px;
    line-height: 1.35;
    color: #555;
}

.governance-skills__table img,
.governance-reporting-image img {
    width: 100%;
    display: block;
}

.governance-skills__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(240px, 0.9fr);
    gap: 28px;
    align-items: start;
}

.governance-skills__table {
    min-width: 0;
}

.governance-skills-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.governance-skills-table thead th {
    padding: 11px 8px;
    border-top: 1.5px solid rgba(86, 49, 113, 0.9);
    border-bottom: 1.5px solid rgba(86, 49, 113, 0.9);
    background: #fff;
}

.governance-skills-table thead th:first-child {
    padding-left: 18px;
    border-left: 1.5px solid rgba(86, 49, 113, 0.9);
    border-radius: 999px 0 0 999px;
    text-align: left;
}

.governance-skills-table thead th:last-child {
    border-right: 1.5px solid rgba(86, 49, 113, 0.9);
    border-radius: 0 999px 999px 0;
}

.governance-skills-table__name {
    font-family: var(--font-head);
    font-size: 15px;
    line-height: 1.2;
    font-weight: 600;
    color: #555;
}

.governance-skills-table tbody th,
.governance-skills-table tbody td {
    padding: 7px 8px;
    border-bottom: 1px solid #d9d9d9;
    vertical-align: middle;
}

.governance-skills-table tbody tr:last-child th,
.governance-skills-table tbody tr:last-child td {
    border-bottom-color: #84c646;
}

.governance-skills-table tbody th {
    padding-left: 8px;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 400;
    color: #555;
    text-align: left;
    white-space: nowrap;
}

.governance-skills-table tbody td {
    width: 42px;
    text-align: center;
}

.governance-skill-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.governance-skill-dot--teal {
    background: #15a8a2;
}

.governance-skill-dot--purple {
    background: #4b196d;
}

.governance-skill-dot--green {
    background: #84c646;
}

.governance-skill-dot--aqua {
    background: #109a96;
}

.governance-skill-dot--forest {
    background: #015345;
}

.governance-skill-dot--blue {
    background: #006594;
}

.governance-skill-dot--grey {
    background: #939598;
}

.governance-skill-check {
    font-size: 18px;
    line-height: 1;
    color: #666;
}

.governance-skills__legend {
    display: grid;
    gap: 16px;
    padding-top: 42px;
}

.governance-skills__legend-item {
    display: grid;
    grid-template-columns: 12px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
}

.governance-skills__legend-item p {
    margin: 0;
    font-size: 15px;
    line-height: 1.35;
    color: #555;
}

.governance-reporting-row {
    margin-top: 4px;
}

.governance-reporting-image {
    overflow: hidden;
}

.governance-reporting-image img {
    min-height: 300px;
    object-fit: cover;
}

/* ============================================================
   END: MANAGEMENT TEAM PAGE
   Added at file end to reduce merge conflicts.
   ============================================================ */
.management-team-grid {
    padding: 0 0 40px;
}

.management-team-grid .row > [class*="col-"] {
    display: flex;
}

.management-card {
    width: 100%;
    min-height: 100%;
    padding: 26px 22px 24px;
    border-radius: 22px;
    border: 1px solid rgba(86, 49, 113, 0.12);
    background: #fff;
    box-shadow: 0 12px 30px rgba(33, 24, 58, 0.08);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.management-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(33, 24, 58, 0.12);
}

.management-card__avatar {
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 18px;
    color: #fff;
    display: grid;
    place-items: center;
    font-family: var(--font-head);
    font-size: 34px;
    line-height: 1;
    font-weight: 600;
}

.management-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.management-card__name,
.management-card__role,
.management-card__subtitle {
    font-family: var(--font-head);
}

.management-card__name {
    font-size: 22px;
    line-height: 1.2;
    font-weight: 600;
    color: #4b2174;
    margin: 0 0 8px;
}

.management-card__role {
    font-size: 16px;
    line-height: 1.35;
    font-weight: 600;
    color: #222;
    margin: 0 0 14px;
}

.management-card__subtitle {
    font-size: 16px;
    line-height: 1.2;
    font-weight: 600;
    color: #4b2174;
    margin: auto 0 8px;
}

.management-card__copy {
    font-size: 15px;
    line-height: 1.45;
    color: #555;
    margin: 0 0 14px;
}

.management-card__copy--tight {
    margin-bottom: 0;
}

/* ============================================================
   END: BOARD OF DIRECTORS PAGE
   Added at file end to reduce merge conflicts.
   ============================================================ */
.board-grid {
    padding: 0 0 40px;
}

.board-grid .row > [class*="col-"] {
    display: flex;
}

.board-card {
    width: 100%;
    min-height: 100%;
}

.board-card__trigger {
    width: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 24px 18px 22px;
    border-radius: 24px;
    border: 1px solid rgba(86, 49, 113, 0.12);
    background: linear-gradient(180deg, #ffffff 0%, #fbf9fe 100%);
    box-shadow: 0 12px 30px rgba(33, 24, 58, 0.08);
    text-align: center;
    appearance: none;
    border: 0;
    cursor: pointer;
    font: inherit;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.board-card__trigger:hover,
.board-card__trigger:focus-visible {
    transform: translateY(-4px);
    box-shadow: 0 18px 34px rgba(33, 24, 58, 0.14);
    border-color: rgba(86, 49, 113, 0.24);
    outline: none;
}

.board-card__media {
    display: block;
    min-height: 144px;
}

.board-card__media img {
    width: 144px;
    height: 144px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.board-card__content {
    min-width: 0;
    display: grid;
    gap: 8px;
    width: 100%;
    flex: 1 1 auto;
    align-content: start;
}

.board-card__name,
.board-card__role,
.board-card__subtitle,
.board-modal__name,
.board-modal__role,
.board-modal__subtitle {
    font-family: var(--font-head);
}

.board-card__name {
    display: block;
    font-size: 20px;
    line-height: 1.22;
    font-weight: 600;
    color: #4b2174;
    margin: 0;
}

.board-card__role {
    display: block;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 600;
    color: #3c3c3c;
    margin: 0;
    padding-bottom: 10px;
}

.board-card__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: auto auto 0;
    padding: 7px 14px;
    border-radius: 999px;
    background: #edf5df;
    color: #4b2174;
    font-size: 12px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.board-modal .modal-dialog {
    max-width: 1120px;
}

.board-modal__content {
    border: 0;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 28px 70px rgba(26, 15, 42, 0.24);
}

.board-modal__body {
    position: relative;
    padding: 34px 34px 32px;
    background: linear-gradient(180deg, #ffffff 0%, #faf7fd 100%);
}

.board-modal__close {
    position: absolute;
    right: 20px;
    top: 18px;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    background: #f0ecf7;
    box-shadow: inset 0 0 0 1px rgba(86, 49, 113, 0.08);
}

.board-modal__close::before,
.board-modal__close::after {
    content: "";
    position: absolute;
    left: 18px;
    top: 10px;
    width: 2px;
    height: 18px;
    background: #4b2174;
}

.board-modal__close::before {
    transform: rotate(45deg);
}

.board-modal__close::after {
    transform: rotate(-45deg);
}

.board-modal__header {
    display: grid;
    grid-template-columns: 116px minmax(0, 1fr);
    gap: 20px;
    align-items: center;
    margin-bottom: 22px;
}

.board-modal__media img {
    width: 116px;
    height: 116px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    background: linear-gradient(135deg, #10aaa8 0%, #84c646 100%);
}

.board-modal__name {
    font-size: 28px;
    line-height: 1.18;
    font-weight: 600;
    color: #4b2174;
    margin: 0 0 6px;
}

.board-modal__role {
    font-size: 16px;
    line-height: 1.35;
    font-weight: 600;
    color: #2f2f2f;
    margin: 0;
}

.board-card__line,
.board-modal__line {
    position: relative;
    height: 12px;
    margin: 12px 0 14px;
}

.board-card__line::before,
.board-modal__line::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 5px;
    height: 1px;
    background: rgba(86, 49, 113, 0.9);
}

.board-card__line::after,
.board-modal__line::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 34px;
    height: 10px;
    border-radius: 999px;
    background: #77c043;
}

.board-modal__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 30px;
}

.board-card__subtitle,
.board-modal__subtitle {
    font-size: 16px;
    line-height: 1.2;
    font-weight: 600;
    color: #4b2174;
    margin: 0 0 8px;
}

.board-card__copy,
.board-card__list li,
.board-modal__copy,
.board-modal__list li {
    font-size: 15px;
    line-height: 1.45;
    color: #555;
}

.board-card__copy,
.board-modal__copy {
    margin: 0 0 14px;
}

.board-card__list,
.board-modal__list {
    list-style: none;
    margin: 0 0 14px;
    padding: 0;
    display: grid;
    gap: 6px;
}

.board-card__list li,
.board-modal__list li {
    position: relative;
    padding-left: 16px;
}

.board-card__list li::before,
.board-modal__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 7px;
    height: 7px;
    border: 2px solid #77c043;
    border-radius: 50%;
}

.board-modal__block > *:last-child {
    margin-bottom: 0;
}
.suppliers-kpi-item__copy span{
    display: block;
}
.page-hero__content.bod h1{
    margin-bottom: 0;
}
.stakeholder-capital-legend.pt20{
    padding-top: 20px;
}
.mainDiv {
    display: flex;
    align-items: start;
    justify-content: space-between;
    max-width: 650px;
    gap: 32px;
}

.mainDiv .employees-stability__metric {
    flex: 1 1 0;
    padding-right: 32px;
}

.mainDiv .employees-stability__metric + .employees-stability__metric {
    border-left: 1px solid rgba(75, 33, 116, 0.28);
    padding-left: 32px;
}

.mainDiv .employees-stability__metric:last-child {
    padding-right: 0;
}
.employees-process__media.wow.fadeInUp {
    max-width: 400px;
}
section.employees-process.newEmp .employees-process__media {
    max-width: 100%;
}

/* Governance highlights group cards */
.governance-highlights__groups > .col-lg-6 {
    padding: 22px 20px 24px;
    border: 1px solid rgba(86, 49, 113, 0.14);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(33, 24, 58, 0.06);
}
.governance-values__lead{
    padding-bottom: 15px;
}

.page-hero.reviewBanner{
    padding-bottom: 0;
}
.footenote-mat{
    padding-top: 10px;
}
.footenote-mat p{
    font-size: 14px;
}
.risk-management__heading.mt30{
    margin-top: 30px;
}
.risk-management-card__subcard h5.blue{
    font-size: 24px;
    color: #4b2174;
}
.employees-copy-card.pb20{
    padding-bottom: 20px;
} 
.row.g-4.governance-highlights__row {
    padding-bottom: 30px;
}
.page-hero.manageTeam{
    min-height: auto;
    padding-bottom: 0;
}
.employees-process.newEmp.pb0{
    padding-bottom: 0;
}
.footenote-mat a{
    color: #0d6efd;
}
.tableImg{
    padding-top: 30px;
        max-width: 700px;
    margin: auto;
}
.row.tax{
    align-items: center;
    padding-top: 30px;
}
.suppliers-list-block.mt30{
    margin-top: 30px;
}
.award-badge.noClr{
    background-color: transparent;
    min-height: 31px;
}
