:root {
    --green: #2e7742;
    --green-dark: #245a33;
    --green-light: #dceee2;
    --green-pale: #f2f8f4;
    --charcoal: #1f2421;
    --muted: #5f6b63;
    --line: #dde5df;
    --white: #ffffff;
    --bg: #f7faf8;
    --shadow-sm: 0 8px 24px rgba(31, 36, 33, 0.06);
    --shadow-md: 0 16px 40px rgba(31, 36, 33, 0.1);
    --radius: 16px;
    --radius-sm: 10px;
    --font: "Poppins", sans-serif;
}

* { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-offset, 128px);
}

body {
    margin: 0;
    overflow-x: hidden;
    color: var(--charcoal);
    background: var(--white);
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; }

a { color: inherit; text-decoration: none; }

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 9999;
    padding: 10px 16px;
    color: var(--white);
    background: var(--charcoal);
    border-radius: var(--radius-sm);
    transform: translateY(-150%);
}

.skip-link:focus { transform: translateY(0); }

/* Header */
.top-bar {
    flex-shrink: 0;
    color: var(--white);
    background: var(--green);
    font-size: 12px;
}

.top-bar-inner {
    display: flex;
    min-height: 38px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.top-contact,
.top-socials {
    display: flex;
    align-items: center;
}

.top-contact {
    gap: 24px;
}

.top-contact a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    transition: opacity 0.2s ease;
}

.top-contact a:hover,
.top-contact a:focus,
.top-socials a:hover,
.top-socials a:focus {
    color: var(--white);
    opacity: 0.75;
}

.top-socials {
    gap: 2px;
}

.top-socials a {
    display: grid;
    width: 34px;
    height: 34px;
    color: var(--white);
    place-items: center;
    transition: opacity 0.2s ease;
}

.top-socials i {
    font-size: 14px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(12px);
    transition: box-shadow 0.25s ease;
}

.site-header.is-scrolled { box-shadow: var(--shadow-sm); }

.navbar { min-height: 84px; padding: 10px 0; }

.navbar-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin: 0;
}

.brand-icon { flex-shrink: 0; }

.brand-copy, .footer-brand span {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-copy strong, .footer-brand strong {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.brand-copy small, .footer-brand small {
    margin-top: 5px;
    color: var(--green);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 3px;
}

.navbar .nav-link {
    padding: 10px 14px !important;
    color: #4a554f;
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--radius-sm);
}

.navbar .nav-link:hover,
.navbar .nav-link:focus { color: var(--green); }

.navbar .nav-link.active {
    color: var(--green);
    background: var(--green-pale);
    font-weight: 600;
}

.navbar-toggler {
    border-color: var(--line);
    box-shadow: none !important;
}

/* Buttons */
.btn {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-brand {
    color: var(--white);
    background: var(--green);
    border: 1px solid var(--green);
    box-shadow: 0 8px 20px rgba(46, 119, 66, 0.2);
}

.btn-brand:hover,
.btn-brand:focus {
    color: var(--white);
    background: var(--green-dark);
    border-color: var(--green-dark);
}

.btn-outline-brand {
    color: var(--green);
    background: transparent;
    border: 1px solid #9ab8a4;
}

.btn-outline-brand:hover,
.btn-outline-brand:focus {
    color: var(--white);
    background: var(--green);
    border-color: var(--green);
}

.btn-outline-light {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
    color: var(--green);
    background: var(--white);
}

.btn-light {
    color: var(--green);
    background: var(--white);
    border-color: var(--white);
}

.btn-lg,
.btn-sm-nav { min-height: 52px; padding: 12px 22px; font-size: 14px; }

/* Breadcrumbs */
.breadcrumb-wrap {
    padding: 18px 0 0;
    background: var(--bg);
}

.breadcrumb {
    margin: 0;
    font-size: 13px;
}

.breadcrumb-item + .breadcrumb-item::before { color: #98a59d; }

.breadcrumb-item a { color: var(--green); }

/* Sections */
.section-block { padding: 78px 0; }
.section-muted { background: var(--bg); }
.section-green { background: var(--green); color: var(--white); }

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    color: var(--green);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.section-eyebrow > span {
    width: 28px;
    height: 1px;
    background: var(--green);
}

.section-green .section-eyebrow { color: var(--green-light); }
.section-green .section-eyebrow > span { background: var(--green-light); }

.section-heading h2,
.hero-content h1,
.page-hero h1,
.cta-panel h2 {
    margin: 0;
    font-weight: 700;
    letter-spacing: -1.5px;
    line-height: 1.15;
}

.section-heading .section-title-ribbon {
    position: relative;
    display: inline-block;
    max-width: 900px;
    padding: 17px 30px;
    color: var(--white);
    background: var(--green);
    border-radius: var(--radius-sm);
    box-shadow: 0 10px 24px rgba(46, 119, 66, 0.18);
}

.section-heading .section-title-ribbon::before,
.section-heading .section-title-ribbon::after {
    position: absolute;
    bottom: -8px;
    width: 18px;
    height: 12px;
    background: var(--green-dark);
    content: "";
    z-index: -1;
}

.section-heading .section-title-ribbon::before {
    left: 12px;
    transform: skewX(34deg);
}

.section-heading .section-title-ribbon::after {
    right: 12px;
    transform: skewX(-34deg);
}

.section-heading h2,
.cta-panel h2 { font-size: clamp(32px, 4vw, 48px); }

.section-heading .title-highlight,
.split-content .title-highlight,
.title-highlight {
    color: var(--green);
    font-style: normal;
}

.section-lead {
    margin-top: 16px;
    color: var(--muted);
    font-size: 17px;
    max-width: 640px;
}

.section-green .section-lead,
.section-green p { color: rgba(255, 255, 255, 0.88); }

/* Hero */
.home-slider,
.home-slider .carousel,
.home-slider .carousel-inner,
.home-slider .carousel-item {
    min-height: clamp(620px, calc(100svh - var(--header-offset, 122px)), 760px);
}

.home-slider {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background: var(--charcoal);
}

.home-slider .carousel-item {
    position: relative;
    overflow: hidden;
}

.home-slider .carousel-fade .carousel-item {
    transition-duration: 1.2s;
}

.home-slide-image,
.home-slide-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.home-slide-image {
    object-fit: cover;
    object-position: center;
    transform: scale(1.015);
    transition: transform 7s ease;
}

.home-slider .carousel-item.active .home-slide-image {
    transform: scale(1);
}

.home-slide-overlay {
    background: rgba(13, 24, 17, 0.66);
}

.home-slide-container {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: clamp(620px, calc(100svh - var(--header-offset, 122px)), 760px);
    align-items: center;
    justify-content: flex-start;
    padding-top: 72px;
    padding-bottom: 96px;
}

.home-slide-content {
    width: 100%;
    max-width: 980px;
    text-align: left;
}

.home-slide-title {
    max-width: 980px;
    margin: 0;
    color: var(--white);
    font-size: clamp(44px, 5.5vw, 76px);
    font-weight: 700;
    letter-spacing: -3px;
    line-height: 1.08;
    text-wrap: balance;
}

.home-slide-title em {
    color: var(--green);
    font-style: normal;
}

.home-title-line {
    display: block;
    white-space: nowrap;
}

.home-title-line-first {
    white-space: nowrap;
}

.home-slide-lead {
    max-width: 620px;
    margin: 24px 0 10px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 17px;
    line-height: 1.75;
}

.home-slide-tagline {
    margin: 0 0 30px;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
}

.home-slide-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 14px;
}

.home-slider .carousel-control-prev,
.home-slider .carousel-control-next {
    top: auto;
    right: max(24px, calc((100vw - 1320px) / 2));
    bottom: 28px;
    left: auto;
    width: 52px;
    height: 52px;
    opacity: 1;
}

.home-slider .carousel-control-prev {
    right: max(88px, calc((100vw - 1192px) / 2));
}

.slider-control-icon {
    display: grid;
    width: 48px;
    height: 48px;
    color: var(--white);
    background: rgba(31, 36, 33, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 50%;
    place-items: center;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.home-slider .carousel-control-prev:hover .slider-control-icon,
.home-slider .carousel-control-next:hover .slider-control-icon,
.home-slider .carousel-control-prev:focus .slider-control-icon,
.home-slider .carousel-control-next:focus .slider-control-icon {
    color: var(--green);
    background: var(--white);
}

.hero-section {
    padding: 88px 0 72px;
    background: var(--bg);
}

.hero-content h1,
.page-hero h1 {
    font-size: clamp(40px, 5vw, 64px);
    letter-spacing: -2.5px;
}

.hero-content h1 em,
.page-hero h1 em {
    color: var(--green);
    font-style: normal;
}

.hero-lead {
    margin: 22px 0 8px;
    color: var(--muted);
    font-size: 18px;
    max-width: 580px;
}

.hero-tagline {
    margin: 0 0 28px;
    font-size: 14px;
    font-weight: 600;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 24px;
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.hero-trust div {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 500;
}

.hero-trust i { color: var(--green); font-size: 16px; }

.media-frame {
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    background: #d8e4dc;
}

.media-image {
    display: block;
    width: 100%;
    min-height: 360px;
    object-fit: cover;
}

.page-hero {
    padding: 72px 0 56px;
    background: var(--bg);
}

.page-hero.compact { padding-bottom: 40px; }

/* Reusable inner-page photo banner */
.inner-banner {
    position: relative;
    display: flex;
    min-height: 360px;
    overflow: hidden;
    align-items: center;
    color: var(--white);
    background: var(--charcoal);
}

.inner-banner-image,
.inner-banner-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.inner-banner-image {
    object-fit: cover;
    object-position: center 48%;
}

.inner-banner-overlay {
    background: rgba(15, 27, 19, 0.58);
}

.inner-banner-container {
    position: relative;
    z-index: 1;
}

.inner-banner-content {
    max-width: 620px;
    padding: 64px 0;
}

.inner-banner-eyebrow {
    display: inline-flex;
    margin: 0 0 14px;
    padding: 7px 12px;
    color: var(--white);
    background: var(--green);
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.13em;
    line-height: 1;
    text-transform: uppercase;
}

.inner-banner h1 {
    max-width: 590px;
    margin: 0;
    color: var(--white);
    font-size: clamp(38px, 5vw, 60px);
    font-weight: 700;
    letter-spacing: -2px;
    line-height: 1.05;
}

.inner-banner h1 em {
    color: var(--green);
    font-style: normal;
}

.inner-banner-content > p:last-child:not(.inner-banner-eyebrow) {
    max-width: 520px;
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 16px;
}

/* About page overview */
.about-overview-section {
    background: var(--white);
}

.about-overview-panel {
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

.about-overview-media {
    position: relative;
    height: 100%;
    min-height: 570px;
    overflow: hidden;
    background: var(--charcoal);
}

.about-overview-image {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 570px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

.about-overview-panel:hover .about-overview-image {
    transform: scale(1.025);
}

.about-media-note {
    position: absolute;
    right: 24px;
    bottom: 24px;
    left: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    color: var(--white);
    background: var(--green);
    border-radius: var(--radius-sm);
    box-shadow: 0 12px 28px rgba(31, 36, 33, 0.24);
    font-size: 13px;
    font-weight: 600;
}

.about-media-note i {
    font-size: 24px;
    line-height: 1;
}

.about-overview-content {
    display: flex;
    min-height: 570px;
    flex-direction: column;
    justify-content: center;
    padding: 52px 54px;
}

.about-section-kicker {
    margin: 0 0 13px;
    color: var(--green);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.about-overview-content h2 {
    max-width: 470px;
    margin: 0 0 22px;
    color: var(--charcoal);
    font-size: clamp(34px, 4vw, 48px);
    font-weight: 700;
    letter-spacing: -1.7px;
    line-height: 1.08;
}

.about-overview-content h2 em {
    display: block;
    color: var(--green);
    font-style: normal;
}

.about-overview-content > p {
    margin: 0 0 14px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.75;
}

.about-overview-content .about-overview-lead {
    color: var(--charcoal);
    font-size: 15px;
    font-weight: 500;
}

.about-principles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin: 18px 0 0;
    padding: 18px 0 0;
    border-top: 1px solid var(--line);
    list-style: none;
}

.about-principles li {
    display: flex;
    min-width: 0;
    align-items: flex-start;
    gap: 7px;
    padding: 0 11px;
    color: var(--charcoal);
    font-size: 11.5px;
    font-weight: 600;
    line-height: 1.45;
    border-right: 1px solid var(--line);
}

.about-principles li:first-child { padding-left: 0; }
.about-principles li:last-child {
    padding-right: 0;
    border-right: 0;
}

.about-principles i {
    flex: 0 0 19px;
    display: grid;
    width: 19px;
    height: 19px;
    color: var(--white);
    background: var(--green);
    border-radius: 50%;
    font-size: 12px;
    place-items: center;
}

/* About page vision and mission */
.about-purpose-section {
    padding-top: 18px;
}

.about-purpose-section .section-heading {
    max-width: 780px;
    margin-right: auto;
    margin-left: auto;
}

.purpose-card {
    position: relative;
    display: grid;
    min-height: 290px;
    overflow: hidden;
    grid-template-columns: 64px 1fr;
    gap: 24px;
    align-items: flex-start;
    padding: 42px;
    color: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.purpose-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.purpose-card-vision { background: var(--charcoal); }
.purpose-card-mission { background: var(--green); }

.purpose-card-icon {
    display: grid;
    width: 64px;
    height: 64px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    font-size: 27px;
    place-items: center;
}

.purpose-card h3 {
    margin: 4px 0 14px;
    color: var(--white);
    font-size: 30px;
    font-weight: 700;
}

.purpose-card > div > p:last-child {
    max-width: 450px;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    line-height: 1.75;
}

.purpose-card-mark {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 84px;
    height: 8px;
    background: var(--green);
}

.purpose-card-mission .purpose-card-mark {
    background: var(--charcoal);
}

/* About page objective media cards */
.about-objectives-section .section-heading {
    max-width: 760px;
    margin-bottom: 46px;
}

.objective-media-card {
    position: relative;
    display: grid;
    min-height: 220px;
    overflow: hidden;
    grid-template-columns: 41% 1fr;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.objective-media-card::after {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 59%;
    height: 4px;
    background: var(--green);
    content: "";
}

.row > div:nth-child(even) > .objective-media-card::after {
    background: var(--charcoal);
}

.objective-media-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.objective-media {
    position: relative;
    min-height: 220px;
    overflow: hidden;
    background: var(--charcoal);
}

.objective-media-image {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.objective-media-card:hover .objective-media-image {
    transform: scale(1.045);
}

.objective-index {
    position: absolute;
    top: 14px;
    left: 14px;
    display: grid;
    width: 38px;
    height: 38px;
    color: var(--white);
    background: var(--green);
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    place-items: center;
}

.objective-media-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 28px 26px 30px;
}

.objective-media-body h3 {
    margin: 0 0 11px;
    color: var(--charcoal);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
}

.objective-media-body p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
}

/* Partnership page */
.partnership-models-section .section-heading,
.partnership-process-section .section-heading,
.partnership-audience-section .section-heading {
    margin-bottom: 42px;
}

.partnership-models-section .section-heading {
    max-width: 820px;
    margin-right: auto;
    margin-left: auto;
}

.partnership-model-card {
    overflow: hidden;
    color: var(--white);
    background: var(--green);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.partnership-model-card-dark {
    background: var(--charcoal);
}

.partnership-model-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.partnership-model-media {
    height: 285px;
    overflow: hidden;
}

.partnership-model-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.partnership-model-card:hover .partnership-model-image {
    transform: scale(1.035);
}

.partnership-model-body {
    position: relative;
    padding: 34px;
}

.partnership-model-icon {
    display: grid;
    width: 52px;
    height: 52px;
    margin-bottom: 20px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 13px;
    font-size: 23px;
    place-items: center;
}

.partnership-model-body h3 {
    margin: 0 0 13px;
    color: var(--white);
    font-size: 23px;
    font-weight: 700;
    line-height: 1.3;
}

.partnership-model-body > p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 13.5px;
    line-height: 1.75;
}

.partnership-model-body ul {
    display: grid;
    gap: 10px;
    margin: 22px 0 0;
    padding: 18px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    list-style: none;
}

.partnership-model-body li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 12.5px;
    font-weight: 500;
}

.partnership-model-body li i {
    margin-top: 2px;
}

.partnership-process-row {
    position: relative;
}

.partnership-process-card {
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.partnership-process-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.partnership-process-icon {
    display: grid;
    height: 94px;
    color: var(--white);
    background: var(--green);
    font-size: 29px;
    place-items: center;
}

.partnership-process-icon-dark {
    background: var(--charcoal);
}

.partnership-process-body {
    padding: 25px 22px 27px;
}

.partnership-process-body h3 {
    margin: 0 0 10px;
    font-size: 17px;
    font-weight: 700;
}

.partnership-process-body p {
    margin: 0;
    color: var(--muted);
    font-size: 12.5px;
    line-height: 1.7;
}

.partnership-audience-card {
    position: relative;
    overflow: hidden;
    padding: 32px 28px;
    background: var(--white);
    border: 1px solid var(--line);
    border-bottom: 4px solid var(--charcoal);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.partnership-audience-card-green {
    color: var(--white);
    background: var(--green);
    border-color: var(--green);
    border-bottom-color: var(--charcoal);
}

.partnership-audience-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.partnership-audience-icon {
    display: grid;
    width: 50px;
    height: 50px;
    margin-bottom: 22px;
    color: var(--green);
    background: var(--green-pale);
    border-radius: 13px;
    font-size: 22px;
    place-items: center;
}

.partnership-audience-card-green .partnership-audience-icon {
    color: var(--white);
    background: rgba(255, 255, 255, 0.15);
}

.partnership-audience-card h3 {
    margin: 0 0 10px;
    color: inherit;
    font-size: 18px;
    font-weight: 700;
}

.partnership-audience-card p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
}

.partnership-audience-card-green p {
    color: rgba(255, 255, 255, 0.82);
}

/* Support page */
.support-channels-section .section-heading,
.support-process-section .section-heading,
.support-categories-section .section-heading,
.services-lifecycle-section .section-heading,
.partnership-comparison-section .section-heading,
.digital-environment-section .section-heading,
.why-partner-section .section-heading {
    margin-bottom: 42px;
}

/* Partnership model comparison */
.comparison-intro {
    margin-bottom: 36px;
}

.comparison-intro h2 {
    max-width: 620px;
    margin-bottom: 14px;
    font-size: clamp(28px, 3.5vw, 40px);
}

.comparison-lead {
    max-width: 580px;
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}

.comparison-intro-note {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 22px 20px;
    background: var(--green);
    border-radius: var(--radius-sm);
    color: var(--white);
}

.comparison-intro-note i {
    flex-shrink: 0;
    margin-top: 2px;
    font-size: 22px;
}

.comparison-intro-note p {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
}

.comparison-stack {
    position: relative;
}

.comparison-vs {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    color: var(--charcoal);
    background: var(--white);
    border: 3px solid var(--line);
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.04em;
    transform: translate(-50%, -50%);
}

/* Model comparison panels */
.comparison-panel {
    overflow: hidden;
    padding: 0;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-md);
}

.comparison-panel-head {
    padding: 22px 26px 18px;
}

.comparison-panel-head-traditional {
    background: #f3f4f3;
    border-bottom: 1px solid var(--line);
}

.comparison-panel-head-lytlabs {
    background: var(--charcoal);
    color: var(--white);
}

.comparison-panel-badge {
    display: inline-block;
    margin-bottom: 8px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.comparison-panel-head-traditional .comparison-panel-badge {
    color: var(--muted);
    background: var(--white);
}

.comparison-panel-head-lytlabs .comparison-panel-badge {
    color: var(--white);
    background: var(--green);
}

.comparison-panel-head h3 {
    margin: 0;
    font-size: 20px;
}

.comparison-panel-head-traditional h3 { color: var(--charcoal); }

.comparison-panel-head-lytlabs h3 { color: var(--white); }

.comparison-panel-traditional { background: var(--white); }

.comparison-panel-lytlabs { background: var(--white); }

.comparison-subtitle {
    margin: 0;
    padding: 16px 26px 0;
    font-size: 13px;
    font-weight: 600;
    color: var(--muted);
}

.comparison-list {
    margin: 0;
    padding: 8px 26px 22px;
    list-style: none;
}

.comparison-panel-traditional .comparison-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
    line-height: 1.5;
    color: var(--muted);
}

.comparison-panel-traditional .comparison-list li i {
    flex-shrink: 0;
    margin-top: 2px;
    color: #b54a4a;
    font-size: 14px;
}

.comparison-panel-lytlabs .comparison-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
    line-height: 1.5;
    color: var(--charcoal);
}

.comparison-panel-lytlabs .comparison-list li i {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--green);
    font-size: 16px;
}

.comparison-list li:last-child { border-bottom: 0; }

.comparison-list li span { flex: 1; }

@media (max-width: 991.98px) {
    .comparison-vs {
        position: static;
        transform: none;
        margin: 0 auto 16px;
    }

    .comparison-stack { padding-top: 0; }
}

/* Focus callout */
.focus-callout-section { padding-block: 48px; }

.focus-callout {
    text-align: center;
    padding: 42px 36px;
    background: var(--green);
    border-radius: var(--radius);
    color: var(--white);
}

.focus-callout h2 {
    margin: 0 0 12px;
    color: var(--white);
    font-size: clamp(22px, 3vw, 30px);
    line-height: 1.35;
}

.focus-callout h2 em {
    font-style: normal;
    color: #b8e6c4;
}

.focus-callout p {
    margin: 0 auto;
    max-width: 560px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 16px;
}

/* Benefits kicker */
.benefits-kicker {
    margin: 18px 0 10px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--green);
}

.benefit-list-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 8px 24px;
    box-shadow: var(--shadow-sm);
}

.no-upfront-section .row > [class*="col-"] {
    min-width: 0;
}

.no-upfront-benefits-panel {
    height: 100%;
    padding: 28px 24px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

.no-upfront-benefits-panel .benefits-kicker {
    margin: 0 0 16px;
}

.no-upfront-benefits-panel .benefit-list-card {
    margin: 0;
    padding: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
}

.no-upfront-benefits-panel .benefit-list {
    margin-top: 0;
}

.no-upfront-benefits-panel .benefit-list li {
    padding: 14px 0;
    font-size: 15px;
    line-height: 1.5;
}

.no-upfront-benefits-panel .benefit-list li span {
    flex: 1;
    min-width: 0;
}

/* Why partner cards */
.why-partner-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 18px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.why-partner-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.why-partner-card-dark {
    background: var(--charcoal);
    border-color: var(--charcoal);
    color: var(--white);
}

.why-partner-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: var(--green-pale);
    color: var(--green);
    font-size: 20px;
}

.why-partner-card-dark .why-partner-icon {
    background: rgba(255, 255, 255, 0.12);
    color: #6fd48a;
}

.why-partner-card p {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.45;
    color: var(--charcoal);
}

.why-partner-card-dark p { color: var(--white); }

/* Smart lab preview — diagonal text / photo split */
.smart-lab-preview-panel {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    min-height: 340px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

.smart-lab-preview-content {
    position: relative;
    z-index: 2;
    display: flex;
    max-width: 54%;
    min-height: 340px;
    flex-direction: column;
    justify-content: center;
    padding: 36px 40px;
}

.smart-lab-preview-content h2 { margin-bottom: 14px; }

.smart-lab-preview-content p {
    margin-bottom: 22px;
    color: var(--muted);
}

.smart-lab-preview-media {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 52%;
    clip-path: polygon(22% 0, 100% 0, 100% 100%, 0 100%);
}

.smart-lab-preview-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 991.98px) {
    .smart-lab-preview-panel {
        display: flex;
        flex-direction: column;
        min-height: 0;
    }

    .smart-lab-preview-content {
        max-width: none;
        min-height: 0;
        padding: 28px 24px;
        order: 2;
    }

    .smart-lab-preview-media {
        position: relative;
        width: 100%;
        height: 240px;
        clip-path: none;
        order: 1;
    }
}

/* Digital learning platform features */
.platform-feature-card {
    padding: 28px 24px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.platform-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.platform-feature-card-dark {
    background: var(--charcoal);
    border-color: var(--charcoal);
    color: var(--white);
}

.platform-feature-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin-bottom: 16px;
    border-radius: 11px;
    background: var(--green-pale);
    color: var(--green);
    font-size: 22px;
}

.platform-feature-card-dark .platform-feature-icon {
    background: rgba(255, 255, 255, 0.1);
    color: #6fd48a;
}

.platform-feature-card h3 {
    margin: 0 0 10px;
    font-size: 17px;
    color: inherit;
}

.platform-feature-intro {
    margin: 0 0 10px;
    font-size: 13px;
    color: var(--muted);
}

.platform-feature-card-dark .platform-feature-intro {
    color: rgba(255, 255, 255, 0.75);
}

.platform-feature-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.platform-feature-card ul li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 6px 0;
    font-size: 13px;
    line-height: 1.5;
    color: var(--muted);
}

.platform-feature-card-dark ul li { color: rgba(255, 255, 255, 0.82); }

.platform-feature-card ul li i {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--green);
    font-size: 14px;
}

.platform-feature-card-dark ul li i { color: #6fd48a; }

/* Smart lab full section */
.smart-lab-section .benefit-list { margin-top: 0; }

.smart-lab-built-block {
    margin-top: 48px;
    padding-top: 42px;
    border-top: 1px solid var(--line);
}

.smart-lab-built-head {
    margin-bottom: 28px;
}

.smart-lab-built-head h3 {
    margin: 0;
    font-size: clamp(22px, 2.8vw, 28px);
    font-weight: 700;
    letter-spacing: -0.6px;
    color: var(--charcoal);
}

.smart-lab-built-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px 18px;
    background: var(--white);
    border: 1px solid var(--line);
    border-bottom: 3px solid var(--green);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.smart-lab-built-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.smart-lab-built-card-dark {
    background: var(--charcoal);
    border-color: var(--charcoal);
    border-bottom-color: var(--charcoal);
}

.smart-lab-built-icon {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    background: var(--green-pale);
    color: var(--green);
    font-size: 21px;
}

.smart-lab-built-card-dark .smart-lab-built-icon {
    background: rgba(255, 255, 255, 0.1);
    color: #6fd48a;
}

.smart-lab-built-card p {
    margin: 0;
    padding-top: 4px;
    color: var(--charcoal);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.45;
}

.smart-lab-built-card-dark p { color: var(--white); }

@media (max-width: 767.98px) {
    .smart-lab-built-block {
        margin-top: 36px;
        padding-top: 32px;
    }
    .focus-callout { padding: 32px 22px; }
    .smart-lab-preview-media { height: 220px; }
    .comparison-list { padding: 8px 20px 20px; }
    .comparison-subtitle { padding: 16px 20px 0; }
    .comparison-panel-head { padding: 20px 20px 16px; }
}


.support-channel-card {
    display: flex;
    flex-direction: column;
    padding: 32px 28px;
    background: var(--white);
    border: 1px solid var(--line);
    border-bottom: 4px solid var(--charcoal);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.support-channel-card-green {
    color: var(--white);
    background: var(--green);
    border-color: var(--green);
    border-bottom-color: var(--charcoal);
}

.support-channel-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.support-channel-icon {
    display: grid;
    width: 52px;
    height: 52px;
    margin-bottom: 22px;
    color: var(--green);
    background: var(--green-pale);
    border-radius: 13px;
    font-size: 22px;
    place-items: center;
}

.support-channel-card-green .support-channel-icon {
    color: var(--white);
    background: rgba(255, 255, 255, 0.15);
}

.support-channel-card h3 {
    margin: 0 0 10px;
    color: inherit;
    font-size: 19px;
    font-weight: 700;
}

.support-channel-card p {
    margin: 0 0 22px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
}

.support-channel-card-green p {
    color: rgba(255, 255, 255, 0.82);
}

.support-channel-card > a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: auto;
    color: var(--green);
    font-size: 13px;
    font-weight: 700;
}

.support-channel-card-green > a {
    color: var(--white);
}

/* Statistics */
.stats-band {
    position: relative;
    z-index: 5;
    padding: 30px 0;
    background: var(--bg);
}

.stats-panel {
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.stat-card {
    display: flex;
    min-height: 160px;
    align-items: center;
    gap: 16px;
    padding: 28px 24px;
    background: var(--white);
    border-right: 1px solid var(--line);
    transition: background-color 0.25s ease;
}

.stats-row > div:last-child .stat-card {
    border-right: 0;
}

.stat-card:hover {
    background: var(--green-pale);
}

.stat-icon {
    display: grid;
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    color: var(--green);
    background: var(--green-pale);
    border-radius: 12px;
    place-items: center;
    font-size: 20px;
}

.stat-value {
    margin: 0;
    color: var(--charcoal);
    font-size: clamp(30px, 3vw, 42px);
    font-weight: 700;
    letter-spacing: -1.5px;
    line-height: 1;
}

.stat-label {
    margin: 9px 0 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.45;
}

/* Cards */
.feature-card,
.info-card,
.process-card,
.enquiry-card,
.support-card,
.objective-card,
.value-card,
.split-card {
    padding: 28px 24px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature-card:hover,
.info-card:hover,
.process-card:hover,
.enquiry-card:hover,
.support-card:hover,
.objective-card:hover,
.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: #c5d5cb;
}

.feature-card,
.info-card,
.process-card,
.enquiry-card,
.support-card,
.objective-card,
.value-card {
    /* padding from shared card rule */
}

.feature-card-accent-green {
    border-bottom: 4px solid var(--green);
}

.feature-card-accent-charcoal {
    border-bottom: 4px solid var(--charcoal);
}

.info-card-green {
    color: var(--white);
    background: var(--green);
    border-color: var(--green);
}

.info-card-green:hover {
    background: var(--green-dark);
    border-color: var(--green-dark);
}

.info-card.info-card-green .card-icon {
    color: var(--white);
    background: rgba(255, 255, 255, 0.14);
}

.info-card.info-card-green h3,
.info-card.info-card-green p {
    color: var(--white);
}

.home-intro {
    padding-top: 48px;
    padding-bottom: 56px;
}

.home-intro-dark {
    margin-top: 48px;
    padding: 36px 40px;
    color: var(--white);
    background: var(--charcoal);
    border-radius: var(--radius);
}

.home-intro-dark h3 {
    margin: 0 0 10px;
    color: var(--white);
    font-size: clamp(20px, 2.4vw, 26px);
    font-weight: 700;
    line-height: 1.35;
}

.home-intro-dark h3 em {
    color: #6fd48a;
    font-style: normal;
}

.home-intro-dark > .row > .col-lg-7 > p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14.5px;
    line-height: 1.65;
}

.home-intro-dark-points {
    margin: 0;
    padding: 0;
    list-style: none;
}

.home-intro-dark-points li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
}

.home-intro-dark-points li:last-child { border-bottom: 0; }

.home-intro-dark-points i {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: rgba(111, 212, 138, 0.15);
    color: #6fd48a;
    font-size: 16px;
}

/* Dual image layout (TaaS section) */
.dual-media-grid {
    position: relative;
    min-height: 420px;
}

.dual-media-primary,
.dual-media-secondary {
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
}

.dual-media-primary {
    width: 78%;
    aspect-ratio: 4 / 3;
}

.dual-media-primary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dual-media-secondary {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 58%;
    aspect-ratio: 4 / 3;
    border: 4px solid var(--bg);
}

.dual-media-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-icon,
.card-icon {
    display: grid;
    width: 52px;
    height: 52px;
    margin-bottom: 20px;
    color: var(--green);
    background: var(--green-pale);
    border-radius: 12px;
    place-items: center;
    font-size: 22px;
}

.feature-card h3,
.info-card h3,
.process-card h3,
.enquiry-card h3,
.support-card h3,
.objective-card h3,
.value-card h3 {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 600;
}

.feature-card p,
.info-card p,
.process-card p,
.enquiry-card p,
.support-card p,
.objective-card p,
.value-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 18px;
    color: var(--green);
    font-size: 13px;
    font-weight: 600;
}

.card-link:hover { text-decoration: underline; }

.card-number {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--green);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Split sections */
.split-section .row { align-items: center; }

.split-section .row > [class*="col-"] {
    min-width: 0;
}

.split-content h2 {
    margin: 0 0 16px;
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 700;
    letter-spacing: -1.2px;
}

.split-content p { color: var(--muted); }

.benefit-list {
    margin-top: 24px;
    padding: 0;
    list-style: none;
}

.benefit-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
}

.benefit-list li:last-child { border-bottom: 0; }

.benefit-list i {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--green);
}

/* Process */
.process-card { height: 100%; }

.process-card .step-num {
    display: inline-block;
    margin-bottom: 14px;
    color: #8ea598;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}

.home-process-section {
    overflow: hidden;
    background: var(--bg);
}

.home-process-section .section-heading {
    margin-bottom: 42px;
}

.process-flow-col {
    position: relative;
}

.process-flow-card {
    height: 100%;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.process-flow-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.process-flow-icon {
    display: grid;
    height: 104px;
    color: var(--white);
    background: var(--green);
    place-items: center;
}

.process-flow-icon-dark {
    background: var(--charcoal);
}

.process-flow-icon i {
    font-size: 34px;
    transition: transform 0.25s ease;
}

.process-flow-card:hover .process-flow-icon i {
    transform: scale(1.1);
}

.process-flow-body {
    padding: 25px 23px 28px;
}

.process-flow-body h3 {
    margin: 0 0 10px;
    font-size: 17px;
    font-weight: 600;
}

.process-flow-body p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.65;
}

@media (min-width: 992px) {
    .process-flow-col:not(:last-child)::after {
        position: absolute;
        z-index: 3;
        top: 48px;
        right: -13px;
        display: grid;
        width: 28px;
        height: 28px;
        color: var(--green);
        background: var(--white);
        border: 1px solid var(--line);
        border-radius: 50%;
        content: "\2192";
        place-items: center;
        font-size: 14px;
        font-weight: 600;
        box-shadow: var(--shadow-sm);
    }
}

/* Service detail */
.service-detail {
    padding: 72px 0;
    border-bottom: 1px solid var(--line);
}

.service-detail:last-of-type { border-bottom: 0; }

.service-detail .service-points {
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.service-detail .service-points li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    color: var(--muted);
    font-size: 14px;
}

.service-detail .service-points i {
    color: var(--green);
    margin-top: 4px;
}

/* CTA panel */
.cta-panel {
    padding: 48px;
    color: var(--white);
    background: var(--green);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

.cta-panel h2 { color: var(--white); }

.cta-panel p {
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.88);
}

/* Contact */
.contact-enquiries-section .section-heading {
    margin-bottom: 42px;
}

.contact-enquiry-card {
    display: flex;
    height: 100%;
    min-height: 250px;
    flex-direction: column;
    padding: 28px 24px;
    color: var(--charcoal);
    background: var(--white);
    border: 1px solid var(--line);
    border-bottom: 4px solid var(--charcoal);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-enquiry-card:hover {
    color: var(--charcoal);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.contact-enquiry-card-green,
.contact-enquiry-card-green:hover {
    color: var(--white);
    background: var(--green);
    border-color: var(--green);
    border-bottom-color: var(--charcoal);
}

.contact-enquiry-icon {
    display: grid;
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    color: var(--green);
    background: var(--green-pale);
    border-radius: 12px;
    font-size: 21px;
    place-items: center;
}

.contact-enquiry-card-green .contact-enquiry-icon {
    color: var(--white);
    background: rgba(255, 255, 255, 0.15);
}

.contact-enquiry-card h3 {
    margin: 0 0 9px;
    color: inherit;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.35;
}

.contact-enquiry-card p {
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 12.5px;
    line-height: 1.65;
}

.contact-enquiry-card-green p {
    color: rgba(255, 255, 255, 0.82);
}

.contact-enquiry-card > span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    color: var(--green);
    font-size: 12px;
    font-weight: 700;
}

.contact-enquiry-card-green > span {
    color: var(--white);
}

.contact-main-panel {
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

.contact-details-card {
    padding: 44px 38px;
    color: var(--white);
    background: var(--charcoal);
}

.contact-details-kicker {
    margin: 0 0 11px;
    color: var(--green-light);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.contact-details-card h2 {
    margin: 0 0 12px;
    color: var(--white);
    font-size: 34px;
    font-weight: 700;
}

.contact-response-note {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    line-height: 1.65;
}

.contact-details-card .contact-list li {
    border-color: rgba(255, 255, 255, 0.13);
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    line-height: 1.65;
}

.contact-details-card .contact-list i {
    color: var(--white);
    background: rgba(255, 255, 255, 0.11);
}

.contact-details-card .contact-list a {
    color: var(--white);
}

.contact-form-column {
    padding: 42px;
}

.mail-form-heading {
    margin-bottom: 26px;
}

.mail-form-heading h2 {
    margin: 0 0 10px;
    font-size: 32px;
    font-weight: 700;
}

.mail-form-heading > p:last-child {
    max-width: 580px;
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.65;
}

.embedded-mail-form .card-form {
    padding: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.enquiry-card {
    display: block;
    padding: 28px 24px;
    height: 100%;
    color: inherit;
}

.enquiry-card:hover { color: inherit; }

.enquiry-card .card-icon { margin-bottom: 16px; }

.contact-panel {
    padding: 36px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.contact-panel h2 {
    margin: 0 0 20px;
    font-size: 22px;
    font-weight: 600;
}

.contact-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.contact-list li {
    display: flex;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
}

.contact-list li:last-child { border-bottom: 0; }

.contact-list i {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    color: var(--green);
    background: var(--green-pale);
    border-radius: 10px;
    display: grid;
    place-items: center;
}

.contact-list a { color: var(--green); font-weight: 500; }

.card-form {
    padding: 32px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.form-label {
    font-size: 13px;
    font-weight: 500;
}

.form-control,
.form-select {
    min-height: 48px;
    border-color: var(--line);
    border-radius: var(--radius-sm);
    font-size: 14px;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(46, 119, 66, 0.12);
}

/* FAQ */
.faq-accordion .accordion-item {
    margin-bottom: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm) !important;
    overflow: hidden;
}

.faq-accordion .accordion-button {
    font-weight: 600;
    font-size: 15px;
    box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--green);
    background: var(--green-pale);
}

/* Footer */
.site-footer {
    padding: 64px 0 28px;
    color: #c8d2cc;
    background: var(--charcoal);
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--white);
}

.footer-about,
.footer-tagline {
    font-size: 14px;
    line-height: 1.7;
}

.footer-tagline {
    margin-top: 12px;
    color: #9db0a4;
    font-weight: 500;
}

.footer-heading {
    margin: 0 0 16px;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
}

.footer-links {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
    color: #b4c0b9;
    font-size: 14px;
}

.footer-links a:hover { color: var(--white); }

.footer-contact {
    margin: 0;
    font-style: normal;
    font-size: 14px;
}

.footer-contact a { color: #b4c0b9; }
.footer-contact a:hover { color: var(--white); }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
    margin: 0;
    font-size: 12px;
}

.back-to-top {
    display: grid;
    width: 40px;
    height: 40px;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius-sm);
    place-items: center;
    transition: background-color 0.2s ease;
}

.back-to-top:hover {
    color: var(--charcoal);
    background: var(--white);
}

/* Floating WhatsApp button */
.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1040;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px 14px 16px;
    color: var(--white);
    background: #25d366;
    border-radius: 999px;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.whatsapp-float:hover {
    color: var(--white);
    background: #1ebe57;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.42);
}

.whatsapp-float i {
    font-size: 24px;
    line-height: 1;
}

.whatsapp-float-label {
    letter-spacing: 0.01em;
}

@media (max-width: 575.98px) {
    .whatsapp-float {
        right: 16px;
        bottom: 16px;
        padding: 14px;
    }

    .whatsapp-float-label {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-delay { transition-delay: 0.12s; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 991.98px) {
    .site-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
    }

    #main-content {
        padding-top: var(--header-offset, 126px);
    }

    .stats-row > div:nth-child(2n) .stat-card { border-right: 0; }
    .stats-row > div:nth-child(-n + 2) .stat-card { border-bottom: 1px solid var(--line); }
    .about-overview-media,
    .about-overview-image { min-height: 470px; }
    .about-overview-content {
        min-height: 0;
        padding: 44px;
    }
    .about-purpose-section { padding-top: 10px; }
    .partnership-model-media { height: 250px; }
    .contact-details-card,
    .contact-form-column { padding: 38px 34px; }
    .hero-section { padding: 72px 0 56px; }
    .section-block { padding: 72px 0; }
    .home-intro { padding-top: 44px; padding-bottom: 48px; }
    .home-intro-dark { margin-top: 36px; padding: 28px 24px; }
    .cta-panel { padding: 36px 28px; }
    .navbar-collapse {
        margin-top: 12px;
        padding: 12px 0 18px;
        border-top: 1px solid var(--line);
    }
    .navbar-nav .btn { margin-top: 8px; width: 100%; }
}

@media (max-width: 767.98px) {
    html { scroll-padding-top: var(--header-offset, 126px); }
    .inner-banner { min-height: 300px; }
    .inner-banner-image { object-position: 58% center; }
    .inner-banner-overlay { background: rgba(15, 27, 19, 0.68); }
    .inner-banner-content { padding: 50px 0; }
    .inner-banner h1 {
        max-width: 520px;
        font-size: clamp(34px, 10vw, 46px);
        letter-spacing: -1.4px;
    }
    .inner-banner-content > p:last-child:not(.inner-banner-eyebrow) {
        max-width: 390px;
        font-size: 14px;
    }
    .about-overview-section { padding: 52px 0; }
    .about-overview-media,
    .about-overview-image { min-height: 380px; }
    .about-media-note {
        right: 16px;
        bottom: 16px;
        left: 16px;
        padding: 13px 14px;
    }
    .about-overview-content { padding: 34px 24px; }
    .home-intro-dark { padding: 24px 20px; }
    .dual-media-grid { min-height: 300px; }
    .dual-media-primary { width: 72%; }
    .dual-media-secondary { width: 62%; border-width: 3px; }
    .about-overview-content h2 { font-size: 34px; }
    .about-principles {
        grid-template-columns: 1fr;
        gap: 11px;
    }
    .about-principles li {
        padding: 0;
        border-right: 0;
    }
    .about-purpose-section { padding-top: 6px; }
    .purpose-card {
        min-height: 0;
        grid-template-columns: 52px 1fr;
        gap: 18px;
        padding: 30px 24px;
    }
    .purpose-card-icon {
        width: 52px;
        height: 52px;
        font-size: 22px;
    }
    .purpose-card h3 { font-size: 25px; }
    .objective-media-card {
        min-height: 190px;
        grid-template-columns: 38% 1fr;
    }
    .objective-media,
    .objective-media-image { min-height: 190px; }
    .objective-media-body { padding: 23px 20px 25px; }
    .partnership-model-body { padding: 28px 24px; }
    .partnership-model-media { height: 230px; }
    .support-channel-card { padding: 28px 24px; }
    .contact-enquiry-card { min-height: 225px; }
    .contact-details-card,
    .contact-form-column { padding: 32px 24px; }
    .contact-details-card h2,
    .mail-form-heading h2 { font-size: 28px; }
    .top-bar-inner {
        min-height: 42px;
        justify-content: flex-end;
    }

    .top-contact { display: none; }
    .top-socials a { width: 30px; }
    .section-heading .section-title-ribbon {
        padding: 14px 18px;
        font-size: 28px;
    }
    .stats-band {
        padding: 20px 0;
    }
    .stat-card {
        min-height: 184px;
        align-items: flex-start;
        flex-direction: column;
        padding: 22px 18px;
    }
    .stat-icon {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
        font-size: 18px;
    }
    .stat-value { font-size: 29px; }
    .home-slider,
    .home-slider .carousel,
    .home-slider .carousel-inner,
    .home-slider .carousel-item,
    .home-slide-container {
        min-height: 680px;
    }
    .home-slide-container {
        align-items: center;
        padding-top: 72px;
        padding-bottom: 112px;
    }
    .home-slide-image { object-position: 62% center; }
    .home-slide-overlay { background: rgba(13, 24, 17, 0.72); }
    .home-slide-title {
        font-size: clamp(29px, 8vw, 38px);
        letter-spacing: -2px;
    }
    .home-slide-lead {
        margin-top: 18px;
        font-size: 15px;
        line-height: 1.65;
    }
    .home-slide-actions {
        display: grid;
        grid-template-columns: 1fr;
    }
    .home-slide-actions .btn { width: 100%; }
    .home-slider .carousel-control-prev,
    .home-slider .carousel-control-next {
        right: 18px;
        bottom: 20px;
        width: 44px;
        height: 44px;
    }
    .home-slider .carousel-control-prev { right: 70px; }
    .slider-control-icon {
        width: 42px;
        height: 42px;
    }
    .hero-actions { display: grid !important; grid-template-columns: 1fr; }
    .hero-actions .btn { width: 100%; }
    .hero-trust { gap: 12px 16px; }
    .media-image { min-height: 280px; }
    .card-form { padding: 24px 20px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* Consultation modal */
.consult-modal .modal-dialog {
    width: calc(100% - 32px);
    max-width: 620px;
    min-height: calc(100% - 24px);
    margin: 12px auto;
}

.consult-modal .modal-content {
    max-height: calc(100dvh - 24px);
    border: 0;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(31, 36, 33, 0.35);
}

.consult-modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    padding: 18px 22px 16px;
    color: var(--white);
    background: var(--green);
}

.consult-modal-kicker {
    margin: 0 0 3px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
}

.consult-modal-header .modal-title {
    font-size: clamp(20px, 2.5vw, 24px);
    font-weight: 700;
    color: var(--white);
}

.consult-modal-sub {
    margin: 4px 0 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
}

.consult-modal-close {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    font-size: 15px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    transition: background-color 0.2s ease;
}

.consult-modal-close:hover,
.consult-modal-close:focus {
    background: rgba(255, 255, 255, 0.28);
}

.consult-modal-body {
    padding: 17px 22px 18px;
}

.consult-modal .form-label {
    margin-bottom: 4px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--charcoal);
}

.consult-modal .form-control,
.consult-modal .form-select {
    min-height: 39px;
    padding: 8px 11px;
    font-size: 13.5px;
    border: 1px solid #d5ddd7;
    border-radius: 10px;
}

.consult-modal .form-control:focus,
.consult-modal .form-select:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(46, 119, 66, 0.15);
}

.consult-hp,
.form-honeypot {
    position: absolute !important;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-submit-status {
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.55;
    border-radius: 10px;
}

.form-submit-status:not(.d-none) {
    display: flex;
}

.form-submit-status i {
    flex-shrink: 0;
    font-size: 17px;
}

.contact-form button[type="submit"]:disabled,
#consultationForm button[type="submit"]:disabled {
    cursor: wait;
    opacity: 0.75;
}

.consult-captcha-q {
    color: var(--green);
    font-weight: 700;
}

.consult-captcha-row {
    display: flex;
    align-items: stretch;
    gap: 8px;
}

.consult-captcha-row .form-control { flex: 1; }

.consult-captcha-refresh {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    font-size: 15px;
    color: var(--green);
    background: var(--green-pale);
    border: 1px solid #d5ddd7;
    border-radius: 10px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.consult-captcha-refresh:hover,
.consult-captcha-refresh:focus {
    color: var(--white);
    background: var(--green);
    border-color: var(--green);
}

.was-validated .consult-captcha-row:has(:invalid) + .invalid-feedback { display: block; }

.consult-privacy {
    margin: 8px 0 0;
    font-size: 11px;
    text-align: center;
    color: #6b746e;
}

.consult-modal .alert-success {
    color: var(--green-dark);
    background: var(--green-light);
    border: 1px solid rgba(46, 119, 66, 0.3);
}

.consult-modal .form-submit-status.d-none { display: none; }

@media (max-width: 575.98px) {
    .objective-media-card {
        grid-template-columns: 1fr;
    }
    .objective-media,
    .objective-media-image { min-height: 210px; }
    .objective-media-card::after { width: 100%; }
    .consult-modal .modal-dialog {
        width: calc(100% - 20px);
        min-height: calc(100% - 16px);
        margin: 8px auto;
    }
    .consult-modal .modal-content { max-height: calc(100dvh - 16px); }
    .consult-modal-header { padding: 15px 16px 13px; }
    .consult-modal-body { padding: 14px 16px 16px; }
    .consult-modal-sub { display: none; }
}

@media (max-height: 700px) and (min-width: 768px) {
    .consult-modal-header { padding-block: 13px 11px; }
    .consult-modal-sub { display: none; }
    .consult-modal-body { padding-block: 12px 14px; }
    .consult-modal textarea.form-control { min-height: 62px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }
    .reveal { opacity: 1; transform: none; }
}
