/*
 * Leader Guyana – Sub Service Pages (shared)
 * page-sub-services-lg.css  |  leader-child/css/
 * Used by all sub-service pages
 */

/* ══════════════════════════════════════════════════════════
   PARENT THEME RESETS
   ══════════════════════════════════════════════════════════ */
[class*="page-template-page-sub-"] .site-main,
[class*="page-template-page-sub-"] main,
[class*="page-template-page-sub-"] .entry-content {
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
}
[class*="page-template-page-sub-"] .entry-header { display: none !important; }
[class*="page-template-page-sub-"] hr { display: none !important; }

/* ══════════════════════════════════════════════════════════
   HERO — full-width image, tall, centred text
   ══════════════════════════════════════════════════════════ */
.lg-sub-hero {
    position: relative;
    height: clamp(420px, 55vh, 620px);
    display: flex;
    align-items: flex-end;
}

/* Diagonal cut — white triangle overlays bottom of hero */
.lg-sub-hero::after {
    content: '';
    position: absolute;
    bottom: -1px; left: -1px; right: -1px;
    height: 90px;
    background: #ffffff;
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
    pointer-events: none;
    z-index: 10;
}

/* Background image — right side only, masked like master service pages */
.lg-sub-hero__image {
    position: absolute;
    top: 0; right: 0;
    width: 60%;
    height: 100%;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.15) 25%, rgba(0,0,0,.6) 55%, rgba(0,0,0,.8) 100%);
    mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.15) 25%, rgba(0,0,0,.6) 55%, rgba(0,0,0,.8) 100%);
    z-index: 1;
}

/* Overlay — navy on left only, fades to transparent on right */
.lg-sub-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(13, 25, 38, 1) 0%,
        rgba(13, 25, 38, 0.92) 35%,
        rgba(13, 25, 38, 0.4) 65%,
        rgba(13, 25, 38, 0) 100%
    );
    z-index: 2;
}

.lg-sub-hero__inner {
    position: relative;
    z-index: 3;
    padding-bottom: clamp(5.5rem, 9vw, 7rem);
}

/* Breadcrumb */
.lg-sub-hero__breadcrumb {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: 1.25rem;
    font-family: var(--font);
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: .05em;
    text-transform: uppercase;
}
.lg-sub-hero__breadcrumb a {
    color: rgba(255,255,255,.6);
    text-decoration: none;
    transition: color .2s ease;
}
.lg-sub-hero__breadcrumb a:hover { color: #ffffff; }
.lg-sub-hero__breadcrumb span { color: rgba(255,255,255,.35); }
.lg-sub-hero__breadcrumb span:last-child { color: rgba(255,255,255,.75); }

/* Eyebrow */
.lg-sub-hero__eyebrow {
    font-family: var(--font);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: #00a8b5;
    display: inline-block;
    border-left: 3px solid #00a8b5;
    padding-left: .75rem;
    margin-bottom: 1rem;
    animation: lgSubFadeUp .65s ease both;
}

/* Headline */
.lg-sub-hero__headline,
.lg-sub-hero h1 {
    font-family: var(--font) !important;
    font-size: clamp(2.6rem, 5.5vw, 4.5rem) !important;
    font-weight: 700 !important;
    line-height: 1.06 !important;
    color: #ffffff !important;
    margin: 0 0 1rem !important;
    padding: 0 !important;
    letter-spacing: -.02em;
    animation: lgSubFadeUp .7s .1s ease both;
    border: none !important;
    background: none !important;
}

/* Blue "in Guyana" line */
.lg-sub-hero__headline em,
.lg-sub-hero h1 em {
    font-style: normal;
    color: #00a8b5 !important;
}

/* Subtitle */
.lg-sub-hero__sub {
    font-family: var(--font);
    font-size: clamp(.95rem, 1.8vw, 1.1rem);
    color: rgba(255,255,255,.72);
    max-width: 600px;
    line-height: 1.75;
    animation: lgSubFadeUp .7s .18s ease both;
}

@keyframes lgSubFadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════════════════════
   CONTENT SECTION
   ══════════════════════════════════════════════════════════ */
.lg-sub-content {
    background: #ffffff;
    padding: clamp(4rem, 8vw, 7rem) 0;
}
.lg-sub-content__inner {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: clamp(3rem, 6vw, 6rem);
    align-items: start;
}
@media (max-width: 800px) {
    .lg-sub-content__inner { grid-template-columns: 1fr; }
}

/* Lead — left column */
.lg-sub-content__title {
    font-family: var(--font) !important;
    font-size: clamp(1.6rem, 2.8vw, 2.4rem) !important;
    font-weight: 700 !important;
    color: #242f3a !important;
    line-height: 1.15 !important;
    margin: 0 0 1.1rem !important;
    padding: 0 !important;
    border: none !important;
}
.lg-sub-content__intro {
    font-family: var(--font);
    font-size: 1.05rem;
    color: #53606b;
    line-height: 1.75;
}

/* Body — right column */
.lg-sub-content__body p {
    font-family: var(--font);
    font-size: 1rem;
    color: #6f6f6e;
    line-height: 1.82;
    margin-bottom: 1.15rem;
}
.lg-sub-content__body p:last-of-type { margin-bottom: 2rem; }

/* Key points */
.lg-sub-points {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid #e2e6ea;
}
.lg-sub-point {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.5rem 0;
    border-bottom: 1px solid #e2e6ea;
}
.lg-sub-point__icon {
    width: 44px; height: 44px;
    border-radius: 4px;
    background: rgba(0,168,181,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00a8b5;
    flex-shrink: 0;
    margin-top: .1rem;
}
.lg-sub-point__icon svg { width: 22px; height: 22px; display: block; }
.lg-sub-point__title {
    font-family: var(--font) !important;
    font-size: .98rem !important;
    font-weight: 700 !important;
    color: #242f3a !important;
    margin: 0 0 .3rem !important;
    padding: 0 !important;
    border: none !important;
}
.lg-sub-point__body {
    font-family: var(--font);
    font-size: .9rem;
    color: #6f6f6e;
    line-height: 1.65;
    margin: 0;
}

/* ══════════════════════════════════════════════════════════
   IMAGE BREAK — full-width atmospheric image
   ══════════════════════════════════════════════════════════ */
.lg-sub-image-break {
    height: clamp(220px, 28vw, 380px);
    overflow: hidden;
}
.lg-sub-image-break__img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center 40%;
    background-repeat: no-repeat;
    transition: transform 8s ease;
}
.lg-sub-image-break:hover .lg-sub-image-break__img {
    transform: scale(1.03);
}

/* ══════════════════════════════════════════════════════════
   FOOTER CTA — navy, two column: back link + CTA
   ══════════════════════════════════════════════════════════ */
.lg-sub-footer-cta {
    background: #242f3a;
    padding: clamp(4rem, 7vw, 6rem) 0;
    border-top: 3px solid #00a8b5;
}
.lg-sub-footer-cta__inner {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: clamp(2.5rem, 5vw, 5rem);
    align-items: center;
}
@media (max-width: 720px) {
    .lg-sub-footer-cta__inner { grid-template-columns: 1fr; }
}

/* Left — back link */
.lg-sub-footer-cta__back .lg-label {
    font-family: var(--font);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: #00a8b5;
    display: block;
    margin-bottom: .5rem;
}
.lg-sub-footer-cta__service {
    font-family: var(--font);
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 1.25rem;
    line-height: 1.2;
}
.lg-sub-back-link {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--font);
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: rgba(255,255,255,.6);
    text-decoration: none;
    transition: color .2s ease, gap .2s ease;
}
.lg-sub-back-link svg { width: 14px; height: 14px; flex-shrink: 0; transition: transform .2s ease; }
.lg-sub-back-link:hover { color: #ffffff; gap: .75rem; }
.lg-sub-back-link:hover svg { transform: translateX(-3px); }

/* Right — CTA */
.lg-sub-footer-cta__title {
    font-family: var(--font) !important;
    font-size: clamp(1.5rem, 2.8vw, 2.2rem) !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    line-height: 1.2 !important;
    margin: 0 0 .75rem !important;
    padding: 0 !important;
    border: none !important;
}
.lg-sub-footer-cta__body {
    font-family: var(--font);
    font-size: .96rem;
    color: rgba(255,255,255,.65);
    line-height: 1.72;
    margin-bottom: 1.75rem;
}
.lg-sub-cta-btn {
    display: inline-flex;
    align-items: center;
    font-family: var(--font);
    font-weight: 700;
    font-size: .88rem;
    letter-spacing: .05em;
    text-transform: uppercase;
    padding: .85rem 2rem;
    border-radius: 4px;
    background: #00a8b5;
    color: #ffffff;
    text-decoration: none;
    border: 2px solid #00a8b5;
    transition: background .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.lg-sub-cta-btn:hover {
    background: #008a96;
    border-color: #008a96;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0,168,181,.32);
    color: #ffffff;
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════ */
@media (max-width: 600px) {
    .lg-sub-hero { height: auto; overflow: hidden; padding-top: 3rem; }
    .lg-sub-hero__inner { padding-bottom: 2.5rem; }
    .lg-sub-hero::after { height: 30px; }
    .lg-sub-content { padding-top: 1.5rem; }
    .lg-sub-content__title { position: static; }
    .lg-sub-content__intro { position: static; }
    .lg-sub-point { flex-direction: column; gap: .75rem; }
}

@media (prefers-reduced-motion: reduce) {
    .lg-sub-hero__eyebrow,
    .lg-sub-hero__headline,
    .lg-sub-hero__sub {
        animation: none !important;
        opacity: 1;
        transform: none;
    }
    .lg-sub-hero__image,
    .lg-sub-image-break__img { transition: none; }
}

/* ══════════════════════════════════════════════════════════
   ALTERNATING CONTENT SECTIONS
   ══════════════════════════════════════════════════════════ */
.lg-sub-section { padding: clamp(4rem, 7vw, 6rem) 0; }
.lg-sub-section--white   { background: #ffffff; }
.lg-sub-section--offwhite { background: #f4f6f8; border-top: 3px solid #00a8b5; }

/* Reuse the same inner grid as .lg-sub-content__inner */
.lg-sub-section .container { max-width: 1180px; margin-inline: auto; padding-inline: clamp(1.25rem, 5vw, 2.5rem); }

/* ══════════════════════════════════════════════════════════
   FAQ SECTION
   ══════════════════════════════════════════════════════════ */
.lg-sub-faq {
    background: #f4f6f8;
    padding: clamp(4rem, 7vw, 6rem) 0;
    border-top: 3px solid #00a8b5;
}
.lg-sub-faq__title {
    font-family: var(--font) !important;
    font-size: clamp(1.5rem, 2.6vw, 2rem) !important;
    font-weight: 700 !important;
    color: #242f3a !important;
    line-height: 1.2 !important;
    margin: 0 0 2.5rem !important;
    padding: 0 !important;
    border: none !important;
    max-width: 680px;
}
.lg-sub-faq__list {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 860px;
}
.lg-sub-faq__item {
    border-bottom: 1px solid #e2e6ea;
}
.lg-sub-faq__item:first-child {
    border-top: 1px solid #e2e6ea;
}
.lg-sub-faq__q {
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 600;
    color: #242f3a;
    padding: 1.25rem 2.5rem 1.25rem 0;
    cursor: pointer;
    list-style: none;
    position: relative;
    transition: color .2s ease;
    display: block;
}
.lg-sub-faq__q::-webkit-details-marker { display: none; }
.lg-sub-faq__q::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4rem;
    font-weight: 300;
    color: #00a8b5;
    line-height: 1;
    transition: transform .2s ease;
}
.lg-sub-faq__item[open] .lg-sub-faq__q::after {
    transform: translateY(-50%) rotate(45deg);
}
.lg-sub-faq__item[open] .lg-sub-faq__q {
    color: #00a8b5;
}
.lg-sub-faq__a {
    font-family: var(--font);
    font-size: .95rem;
    color: #6f6f6e;
    line-height: 1.78;
    padding: 0 0 1.25rem;
    margin: 0;
}
/* ── Industries: capability lists (Areas We Support / Core Disciplines) ── */
.le-ind-lists { background:#ffffff; padding: clamp(3rem,6vw,5rem) 0; }
.le-ind-lists__grid {
    display:grid; grid-template-columns:1fr 1fr; gap:clamp(2rem,5vw,4rem);
}
@media (max-width:820px){ .le-ind-lists__grid { grid-template-columns:1fr; } }
.le-ind-lists__col h2 {
    font-family:var(--font); font-size:clamp(1.4rem,2.4vw,1.9rem); font-weight:700;
    color:#1d2730; margin:0 0 1.2rem; padding-bottom:.8rem;
    border-bottom:3px solid; border-image:linear-gradient(135deg,#00a8b5,#0070b9) 1;
    display:inline-block;
}
.le-ind-lists__items { list-style:none; margin:0; padding:0; column-count:2; column-gap:1.5rem; }
@media (max-width:520px){ .le-ind-lists__items { column-count:1; } }
.le-ind-lists__items li {
    font-family:var(--font); font-size:.92rem; color:#3d4956; line-height:1.5;
    padding:.45rem 0 .45rem 1.4rem; position:relative; break-inside:avoid;
}
.le-ind-lists__items li::before {
    content:''; position:absolute; left:0; top:.85rem; width:7px; height:7px; border-radius:50%;
    background:linear-gradient(135deg,#00a8b5,#0070b9);
}

/* ── LE teal→blue gradient accents for Industry pages ──────────────── */
.lg-sub-hero__headline em,
.lg-sub-hero h1 em,
.lg-sub-hero__eyebrow,
.lg-sub-footer-cta__back .lg-label,
.lg-sub-back-link,
.lg-sub-faq__item[open] .lg-sub-faq__q {
    background-image: linear-gradient(135deg,#00a8b5 0%,#0070b9 100%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: #00a8b5 !important;
}
/* eyebrow accent bar → gradient */
.lg-sub-hero__eyebrow { border-image: linear-gradient(135deg,#00a8b5 0%,#0070b9 100%) 1; }

/* keep back-link arrow visible */
.lg-sub-back-link svg { -webkit-text-fill-color: initial; color: #00a8b5; }

/* CTA button → gradient */
.lg-sub-cta-btn {
    background: linear-gradient(135deg,#00a8b5 0%,#0070b9 100%) !important;
    border-color: transparent !important;
}
.lg-sub-cta-btn:hover {
    background: linear-gradient(135deg,#008a96 0%,#005c99 100%) !important;
    border-color: transparent !important;
}

/* Section / FAQ / footer-CTA top borders → gradient */
.lg-sub-faq,
.lg-sub-footer-cta,
.lg-sub-section--offwhite {
    border-image: linear-gradient(135deg,#00a8b5 0%,#0070b9 100%) 1;
}

/* Point icons → blue counterpoint to differentiate from flat teal */
.lg-sub-point__icon { color: #0070b9; }

/* ════════════════════════════════════════════════════════════════════
   INDUSTRY HERO — adopt the honed master-service hero (.lg-svc-hero)
   Right-masked image fade + diagonal cut, responsive-tuned like LG.
   ════════════════════════════════════════════════════════════════════ */
.lg-svc-hero {
    position: relative;
    padding: clamp(5rem, 10vw, 7rem) 0 clamp(6rem, 11vw, 9rem);
    overflow: hidden; z-index: 1;
    background: #242f3a;
}
.lg-svc-hero__bg-grid {
    position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 28px 28px; pointer-events: none; z-index: 1;
}
.lg-svc-hero__bg-glow {
    position: absolute; top: -10%; left: -5%;
    width: 40vw; height: 40vw; max-width: 480px; max-height: 480px;
    background: radial-gradient(circle, rgba(0,168,181,.10) 0%, transparent 65%);
    pointer-events: none; z-index: 1;
}
.lg-svc-hero__bg-image {
    position: absolute; top: 0; right: 0;
    width: 55%; height: 100%;
    background-size: cover; background-position: center top;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.15) 30%, rgba(0,0,0,.55) 60%, rgba(0,0,0,.75) 100%);
    mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.15) 30%, rgba(0,0,0,.55) 60%, rgba(0,0,0,.75) 100%);
    pointer-events: none; z-index: 2;
    transform-origin: center center;
    animation: lgSvcHeroDrift 16s ease-in-out infinite alternate; will-change: transform;
}
@keyframes lgSvcHeroDrift {
    0%   { transform: scale(1.06) translate(0%, 0%); }
    100% { transform: scale(1.18) translate(-4%, 2.5%); }
}
.lg-svc-hero__inner { position: relative; z-index: 3; }
.lg-svc-hero__content { max-width: 680px; }
.lg-svc-hero__eyebrow {
    font-family: var(--font); font-size: .7rem; font-weight: 700;
    letter-spacing: .15em; text-transform: uppercase;
    background-image: linear-gradient(135deg,#00a8b5 0%,#0070b9 100%);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
    color: #00a8b5; display: inline-block;
    border-left: 3px solid #00a8b5; border-image: linear-gradient(135deg,#00a8b5 0%,#0070b9 100%) 1;
    padding-left: .75rem; margin-bottom: 1.4rem;
    animation: lgSvcFadeUp .65s ease both;
}
.lg-svc-hero__headline, .lg-svc-hero h1 {
    font-family: var(--font) !important;
    font-size: clamp(2.4rem, 5vw, 4rem) !important;
    font-weight: 700 !important; line-height: 1.08 !important;
    color: #ffffff !important; margin: 0 0 1.3rem !important; padding: 0 !important;
    letter-spacing: -.01em; animation: lgSvcFadeUp .7s .1s ease both;
    display: block !important; border: none !important; background: none !important;
}
.lg-svc-hero__headline em {
    font-style: normal !important;
    background-image: linear-gradient(135deg,#00a8b5 0%,#0070b9 100%) !important;
    -webkit-background-clip: text !important; background-clip: text !important;
    -webkit-text-fill-color: transparent !important; color: #00a8b5 !important;
}
/* Headline line-break: off on desktop (stays two lines), on at tablet/below so the
   long second line wraps instead of running into the hero image. */
.lg-svc-hero__br { display: none; }
@media (max-width: 1024px) {
    .lg-svc-hero__br { display: inline; }
}
.lg-svc-hero__sub {
    font-family: var(--font); font-size: clamp(.95rem, 1.8vw, 1.05rem);
    color: rgba(255,255,255,.65) !important; max-width: 540px; line-height: 1.78;
    animation: lgSvcFadeUp .7s .18s ease both;
}
.lg-svc-hero.hero--diagonal::after {
    content: ''; position: absolute;
    bottom: -2px; left: -1px; right: -1px; height: 102px;
    background: #ffffff; clip-path: polygon(0 100%, 100% 0, 100% 100%);
    pointer-events: none; z-index: 10;
}
@keyframes lgSvcFadeUp { from { opacity:0; transform:translateY(16px);} to {opacity:1; transform:translateY(0);} }

/* Breadcrumb sits above the eyebrow inside the svc hero */
.lg-svc-hero__breadcrumb {
    display: flex; flex-wrap: wrap; align-items: center; gap: .5rem;
    font-family: var(--font); font-size: .72rem; font-weight: 700;
    letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1.1rem;
}
.lg-svc-hero__breadcrumb a { color: rgba(255,255,255,.55); text-decoration: none; }
.lg-svc-hero__breadcrumb a:hover { color: #ffffff; }
.lg-svc-hero__breadcrumb span { color: rgba(255,255,255,.3); }
.lg-svc-hero__breadcrumb span:last-child { color: rgba(255,255,255,.7); }

@media (max-width: 620px) {
    .lg-svc-hero.hero--diagonal::after { height: 30px; }
    .lg-svc-hero { padding-top: 3rem; padding-bottom: 2.5rem; }
}
@media (prefers-reduced-motion: reduce) {
    .lg-svc-hero__bg-image { animation: none; transform: scale(1.06); }
    .lg-svc-hero__eyebrow, .lg-svc-hero__headline, .lg-svc-hero__sub { animation: none !important; opacity: 1; transform: none; }
}

/* Alternating narrative section background */
.lg-sub-content--alt { background: #f4f6f8 !important; }

/* Connecting note under each capability list */
.le-ind-lists__note { font-size: .92rem; color: #53606b; line-height: 1.65; margin: 1.1rem 0 0; max-width: 460px; }

/* Full-width intro lead copy (no heading) + list lead-in sentence */
.lg-sub-lead-copy { max-width: 860px; }
.lg-sub-lead-copy p { font-size: 1.05rem; color: #53606b; line-height: 1.85; margin: 0 0 1.3rem; }
.lg-sub-lead-copy p:last-child { margin-bottom: 0; }
.lg-sub-lead-copy__lede { font-size: 1.18rem; color: #1d2730; font-weight: 500; }
.le-ind-lists__lead { font-size: .95rem; color: #53606b; line-height: 1.6; margin: 0 0 1rem; max-width: 460px; }

/* ── Two-column industry layout: lists left (sticky) + text/accordion right ── */
.lg-ind-split { background: #ffffff; padding: clamp(3.5rem, 7vw, 6rem) 0; }
.lg-ind-split__grid {
    display: grid; grid-template-columns: minmax(0,0.82fr) minmax(0,1.18fr);
    gap: clamp(2.5rem, 5vw, 4.5rem); align-items: start;
}
@media (max-width: 920px) { .lg-ind-split__grid { grid-template-columns: 1fr; gap: 2.5rem; } }
.lg-ind-split__lists { position: sticky; top: 90px; }
@media (max-width: 920px) { .lg-ind-split__lists { position: static; } }
.lg-ind-split__lists .le-ind-lists__items { column-count: 1; }
.lg-ind-split__lists .le-ind-lists__col + .le-ind-lists__col { margin-top: 2.5rem; }

.lg-ind-split__intro { margin-bottom: 2.5rem; }
.lg-ind-split__intro .lg-sub-lead-copy__lede { font-size: 1.18rem; color: #1d2730; font-weight: 500; line-height: 1.7; margin: 0 0 1.2rem; }
.lg-ind-split__intro p { font-size: 1.02rem; color: #53606b; line-height: 1.85; margin: 0 0 1.2rem; }
.lg-ind-split__intro p:last-child { margin-bottom: 0; }

/* Exclusive accordion */
.lg-ind-acc__item { border-top: 1px solid #e2e6ea; }
.lg-ind-acc__item:last-child { border-bottom: 1px solid #e2e6ea; }
.lg-ind-acc__head {
    list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between;
    gap: 1rem; padding: 1.15rem 0; font-family: var(--font, 'Synthese', Arial, sans-serif);
}
.lg-ind-acc__head::-webkit-details-marker { display: none; }
.lg-ind-acc__title { font-size: 1.2rem; font-weight: 700; color: #1d2730; line-height: 1.3; }
.lg-ind-acc__chev { color: #0070b9; flex-shrink: 0; transition: transform .3s ease; }
.lg-ind-acc__item[open] .lg-ind-acc__chev { transform: rotate(180deg); }
.lg-ind-acc__body { padding: 0 0 1.3rem; }
.lg-ind-acc__body p { font-size: .98rem; color: #53606b; line-height: 1.8; margin: 0 0 .9rem; }
.lg-ind-acc__body p:last-child { margin-bottom: 0; }

/* ════════════════════════════════════════════════════════════════════
   INDUSTRY — stacked redesign (intro / cards / chips / why / dual CTA)
   ════════════════════════════════════════════════════════════════════ */
.lg-ind-intro { background:#ffffff; padding: clamp(2.5rem,5vw,4rem) 0 clamp(1.5rem,3vw,2.25rem); }
.lg-ind-intro__grid { display:grid; grid-template-columns:1fr 1fr; gap:clamp(2rem,5vw,4.5rem); align-items:center; }
@media (max-width:820px){ .lg-ind-intro__grid { grid-template-columns:1fr; gap:1.25rem; align-items:start; } }
.lg-ind-intro__lede::before {
    content:''; display:block; width:56px; height:4px; border-radius:2px;
    background:linear-gradient(135deg,#00a8b5,#0070b9); margin:0 0 1.5rem;
}
.lg-ind-intro__lede p {
    font-family:var(--font); font-size:clamp(1.3rem,2.2vw,1.6rem); font-weight:500;
    color:#1d2730; line-height:1.45; margin:0;
}
.lg-ind-intro__body p { font-family:var(--font); font-size:1rem; color:#53606b; line-height:1.8; margin:0 0 1.1rem; }
.lg-ind-intro__body p:last-child { margin-bottom:0; }

.lg-ind-band { background:#ffffff; padding: clamp(3.5rem,7vw,5.5rem) 0; }
.lg-ind-band--alt {
    background:#f4f6f8;
    border-top:3px solid; border-image:linear-gradient(135deg,#00a8b5 0%,#0070b9 100%) 1;
}

/* Section heading (shared across redesigned bands) */
.le-ind-sechead { margin: 0 0 2.2rem; }
.le-ind-sechead h2 {
    font-family:var(--font) !important; font-size:clamp(1.4rem,2.4vw,1.9rem) !important; font-weight:700 !important;
    color:#1d2730 !important; margin:0 0 .9rem !important; padding:0 0 .7rem !important; line-height:1.2 !important;
    border:none !important; border-bottom:3px solid !important;
    border-image:linear-gradient(135deg,#00a8b5,#0070b9) 1 !important; display:inline-block !important;
}
.le-ind-sechead p { font-family:var(--font); font-size:1.02rem; color:#53606b; line-height:1.7; margin:0; max-width:680px; }

/* Areas We Support — icon cards */
.le-ind-cards { display:grid; grid-template-columns:repeat(auto-fill,minmax(210px,1fr)); gap:1rem; }
.le-ind-card {
    display:flex; align-items:center; gap:.95rem;
    background:#ffffff; border:1px solid #e2e6ea; border-radius:8px; padding:1.05rem 1.15rem;
    transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.le-ind-card:hover { transform:translateY(-2px); border-color:transparent; box-shadow:0 8px 24px rgba(0,112,185,.12); }
.le-ind-card__ico {
    width:42px; height:42px; flex-shrink:0; border-radius:8px;
    display:flex; align-items:center; justify-content:center;
    color:#0070b9; background:rgba(0,168,181,.09);
}
.le-ind-card__ico svg { display:block; }
.le-ind-card__label { font-family:var(--font); font-size:.95rem; font-weight:600; color:#242f3a; line-height:1.35; }

/* Core Disciplines — chips */
.le-ind-chips { display:flex; flex-wrap:wrap; gap:.7rem; }
.le-ind-chip {
    font-family:var(--font); font-size:.92rem; font-weight:600; color:#0a5a85;
    background:rgba(0,168,181,.08); border:1px solid rgba(0,112,185,.18);
    padding:.6rem 1.15rem; border-radius:100px; line-height:1.2;
    transition:background .2s ease, color .2s ease, border-color .2s ease;
}
.le-ind-chip:hover { background:linear-gradient(135deg,#00a8b5,#0070b9); color:#ffffff; border-color:transparent; }

/* Why Leader Engineering — 3-up feature cards */
.le-ind-why { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; }
@media (max-width:820px){ .le-ind-why { grid-template-columns:1fr; } }
.le-ind-why__item { background:#ffffff; border:1px solid #e2e6ea; border-radius:10px; padding:1.8rem 1.6rem; }
.le-ind-why__ico {
    width:54px; height:54px; border-radius:10px; display:flex; align-items:center; justify-content:center;
    color:#ffffff; background:linear-gradient(135deg,#00a8b5,#0070b9); margin-bottom:1.1rem;
}
.le-ind-why__ico svg { display:block; }
.le-ind-why__title {
    font-family:var(--font) !important; font-size:1.12rem !important; font-weight:700 !important;
    color:#1d2730 !important; margin:0 0 .6rem !important; padding:0 !important; border:none !important; line-height:1.3 !important;
}
.le-ind-why__body { font-family:var(--font); font-size:.95rem; color:#53606b; line-height:1.72; margin:0; }

/* Centred accordion within a band */
.lg-ind-acc--centred { max-width:none; margin-inline:0; }

/* Dual CTA band */
.lg-ind-cta {
    background:#242f3a; padding: clamp(3.5rem,6vw,5rem) 0;
    border-top:3px solid; border-image:linear-gradient(135deg,#00a8b5 0%,#0070b9 100%) 1;
}
.lg-ind-cta__inner { display:grid; grid-template-columns:1.4fr 1fr; gap:clamp(2rem,5vw,4rem); align-items:center; }
@media (max-width:820px){ .lg-ind-cta__inner { grid-template-columns:1fr; gap:2rem; } }
.lg-ind-cta__text .lg-label {
    font-family:var(--font); font-size:.7rem; font-weight:700; letter-spacing:.15em; text-transform:uppercase;
    display:block; margin-bottom:.65rem; color:#00a8b5;
    background-image:linear-gradient(135deg,#00a8b5,#0070b9); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent;
}
.lg-ind-cta__title {
    font-family:var(--font) !important; font-size:clamp(1.5rem,2.8vw,2.1rem) !important; font-weight:700 !important;
    color:#ffffff !important; line-height:1.2 !important; margin:0 0 .8rem !important; padding:0 !important; border:none !important;
}
.lg-ind-cta__body { font-family:var(--font); font-size:.98rem; color:rgba(255,255,255,.66); line-height:1.72; margin:0; max-width:560px; }
.lg-ind-cta__actions { display:flex; flex-wrap:wrap; gap:1rem; }
@media (min-width:821px){ .lg-ind-cta__actions { justify-content:flex-end; } }
.lg-ind-cta__btn {
    display:inline-flex; align-items:center; justify-content:center;
    font-family:var(--font); font-weight:700; font-size:.88rem; letter-spacing:.05em; text-transform:uppercase;
    padding:.9rem 2rem; border-radius:4px; text-decoration:none;
    transition:transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.lg-ind-cta__btn--primary { background:linear-gradient(135deg,#00a8b5,#0070b9); color:#ffffff; border:2px solid transparent; }
.lg-ind-cta__btn--primary:hover { transform:translateY(-1px); box-shadow:0 6px 20px rgba(0,112,185,.4); color:#ffffff; }
.lg-ind-cta__btn--ghost { background:transparent; color:#ffffff; border:2px solid rgba(255,255,255,.3); }
.lg-ind-cta__btn--ghost:hover { border-color:#00a8b5; color:#ffffff; transform:translateY(-1px); }

@media (max-width:520px){
    .le-ind-cards { grid-template-columns:1fr; }
    .lg-ind-cta__actions .lg-ind-cta__btn { flex:1 1 100%; }
}
