:root {
    --lf-primary: #1A7A4C;
    --lf-primary-dark: #145F3A;
    --lf-primary-light: #E8F5EE;
    --lf-accent: #C47A2B;
    --lf-bg: #FAFAF7;
    --lf-bg-alt: #F2F4EE;
    --lf-surface: #FFFFFF;
    --lf-dark-base: #0D1F14;
    --lf-dark-mid: #1B3424;
    --lf-dark-border: #2E5040;
    --lf-heading: #0F2B1A;
    --lf-text: #3A4A40;
    --lf-muted: #6B7E74;
    --lf-heading-light: #E6EFE9;
    --lf-text-light: #B8CCBF;
    --lf-text-light-muted: #7A9E87;
    --lf-border: #D6E0D8;
    --lf-radius: 8px;
    --lf-radius-lg: 14px;
    --lf-radius-pill: 100px;
    --lf-shadow: 0 2px 16px rgba(13, 31, 20, 0.08);
    --lf-shadow-md: 0 6px 28px rgba(13, 31, 20, 0.12);
    --lf-shadow-lg: 0 16px 56px rgba(13, 31, 20, 0.16);
    --lf-transition: 0.22s ease;
}

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.65;
    color: #3A4A40;
    background-color: #FAFAF7;
    margin: 0;
    padding: 0;
}









h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #0F2B1A;
    margin-top: 0;
}

h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.3px;
}

h3 {
    font-size: 26px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0;
}

h4 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0;
}

h5 {
    font-size: 17px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.1px;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

a {
    color: #1A7A4C;
    text-decoration: none;
    transition: color var(--lf-transition);
}

a:hover {
    color: #145F3A;
}

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

.lf-section {
    padding: 80px 0;
}

.lf-section-alt {
    background-color: #F2F4EE;
}

.lf-section-white {
    background-color: #FFFFFF;
}

.lf-section-dark {
    background-color: #0D1F14;
}

.lf-section-dark-mid {
    background-color: #1B3424;
}

.lf-section-compact {
    padding: 56px 0;
}

.lf-eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #1A7A4C;
    margin-bottom: 16px;
}

.lf-eyebrow-light {
    color: #7A9E87;
}

.lf-section-header {
    margin-bottom: 48px;
}

.lf-text-accent {
    color: #C47A2B;
}

.lf-divider {
    width: 48px;
    height: 3px;
    background-color: #1A7A4C;
    margin: 16px 0 0;
    border: none;
}

.lf-btn-primary {
    display: inline-block;
    background-color: #1A7A4C;
    color: #FFFFFF;
    padding: 13px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.4px;
    line-height: 1;
    border: none;
    cursor: pointer;
    transition: background-color var(--lf-transition), color var(--lf-transition);
    text-decoration: none;
}

.lf-btn-primary:hover {
    background-color: #145F3A;
    color: #FFFFFF;
}

.lf-btn-outline {
    display: inline-block;
    background-color: transparent;
    color: #1A7A4C;
    padding: 11px 26px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.4px;
    line-height: 1;
    border: 2px solid #1A7A4C;
    cursor: pointer;
    transition: background-color var(--lf-transition), color var(--lf-transition);
    text-decoration: none;
}

.lf-btn-outline:hover {
    background-color: rgba(26, 122, 76, 0.08);
    color: #1A7A4C;
}

.lf-btn-light {
    display: inline-block;
    background-color: #FFFFFF;
    color: #1A7A4C;
    padding: 13px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.4px;
    line-height: 1;
    border: none;
    cursor: pointer;
    transition: background-color var(--lf-transition), color var(--lf-transition);
    text-decoration: none;
}

.lf-btn-light:hover {
    background-color: #E8F5EE;
    color: #1A7A4C;
}

.lf-btn-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: none;
    color: #1A7A4C;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.2px;
    border: none;
    cursor: pointer;
    padding: 0;
    text-decoration: none;
    transition: color var(--lf-transition);
}

.lf-btn-text:hover {
    color: #145F3A;
    text-decoration: underline;
}

.lf-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 72px;
    background-color: transparent;
    transition: background-color var(--lf-transition), border-bottom var(--lf-transition), box-shadow var(--lf-transition);
}

.lf-nav.scrolled {
    background-color: #FFFFFF;
    border-bottom: 1px solid #D6E0D8;
    box-shadow: 0 2px 16px rgba(13, 31, 20, 0.08);
}

.lf-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    padding: 0 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.lf-nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.lf-nav-logo .logo-dark,
.lf-nav-logo .logo-light {
    max-height: 40px;
    width: auto;
    vertical-align: middle;
    transition: opacity 0.25s ease;
}

/* Default (lf-nav-light, unscrolled = transparent over light page): show dark logo */
.lf-nav-logo .logo-light { display: none; }
.lf-nav-logo .logo-dark { display: inline-block; }

/* Dark nav unscrolled (transparent over dark hero): show light logo */
.lf-nav-dark:not(.scrolled) .lf-nav-logo .logo-dark { display: none; }
.lf-nav-dark:not(.scrolled) .lf-nav-logo .logo-light { display: inline-block; }

/* Any nav scrolled (white bg): always show dark logo */
.lf-nav.scrolled .lf-nav-logo .logo-dark { display: inline-block; }
.lf-nav.scrolled .lf-nav-logo .logo-light { display: none; }

.lf-nav-logo-icon {
    width: 32px;
    height: 32px;
    background-color: #1A7A4C;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lf-nav-logo-icon svg {
    width: 18px;
    height: 18px;
    fill: #FFFFFF;
}

.lf-nav-wordmark {
    font-size: 17px;
    font-weight: 700;
    color: #0F2B1A;
    letter-spacing: -0.2px;
}

.lf-nav.scrolled .lf-nav-wordmark {
    color: #0F2B1A;
}

.lf-nav-dark .lf-nav-wordmark {
    color: #E6EFE9;
}

.lf-nav-dark.scrolled .lf-nav-wordmark {
    color: #0F2B1A;
}

.lf-nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.lf-nav-links a,
.lf-nav-links a:visited {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.2px;
    color: #3A4A40;
    text-decoration: none;
    transition: color var(--lf-transition);
}

.lf-nav-dark .lf-nav-links a,
.lf-nav-dark .lf-nav-links a:visited {
    color: #B8CCBF;
}

.lf-nav-dark.scrolled .lf-nav-links a,
.lf-nav-dark.scrolled .lf-nav-links a:visited {
    color: #3A4A40;
}

.lf-nav-links a:hover,
.lf-nav-links a.active {
    color: #1A7A4C;
}

.lf-nav-dark.scrolled .lf-nav-links a:hover,
.lf-nav-dark.scrolled .lf-nav-links a.active {
    color: #1A7A4C;
}

.lf-nav-dark .lf-nav-links a:hover,
.lf-nav-dark .lf-nav-links a.active {
    color: #7A9E87;
}

.lf-nav-cta {
    margin-left: 16px;
}

.lf-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: #3A4A40;
}

.lf-nav-dark .lf-nav-toggle {
    color: #E6EFE9;
}

.lf-nav-dark.scrolled .lf-nav-toggle {
    color: #3A4A40;
}

.lf-nav-mobile {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background-color: #FFFFFF;
    border-bottom: 1px solid #D6E0D8;
    box-shadow: 0 8px 24px rgba(13, 31, 20, 0.12);
    padding: 16px 24px 24px;
}

.lf-nav-mobile.open {
    display: block;
}

.lf-nav-mobile ul {
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
}

.lf-nav-mobile ul li {
    border-bottom: 1px solid #D6E0D8;
}

.lf-nav-mobile ul li a,
.lf-nav-mobile ul li a:visited {
    display: block;
    padding: 14px 0;
    font-size: 15px;
    font-weight: 500;
    color: #3A4A40;
    text-decoration: none;
}

.lf-nav-mobile ul li a:hover {
    color: #1A7A4C;
}

@media (max-width: 991px) {
    .lf-nav-links,
    .lf-nav-cta {
        display: none;
    }

    .lf-nav-toggle {
        display: block;
    }
}

.lf-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 72px;
    background-color: #0D1F14;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.lf-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(8, 20, 12, 0.82) 0%, rgba(8, 20, 12, 0.62) 45%, rgba(8, 20, 12, 0.25) 100%);
    z-index: 1;
}

.lf-hero .container {
    position: relative;
    z-index: 2;
}

.lf-hero-text {
    max-width: 620px;
    padding: 80px 0;
}

.lf-hero-text .lf-eyebrow {
    color: #7FD6A3;
}

.lf-hero-text h1 {
    color: #FFFFFF;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.lf-hero-text p {
    color: #E1ECE5 !important;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.3);
}

.lf-hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.lf-hero-ctas .lf-btn-outline {
    color: #FFFFFF;
    border-color: #FFFFFF;
}

.lf-hero-ctas .lf-btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.12);
    color: #FFFFFF;
}

/* Legacy split layout (kept for backward compatibility, no longer used on index) */
.lf-hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    padding: 80px 0;
}

.lf-hero-image {
    position: relative;
}

.lf-hero-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 16px 56px rgba(13, 31, 20, 0.16);
}

.lf-hero-image-placeholder {
    width: 100%;
    height: 480px;
    background-color: #D6E0D8;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6B7E74;
    font-size: 14px;
}

/* Blog detail hero with background image */
.lf-hero-article {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: flex-end;
    padding-top: 72px;
    background-color: #0D1F14;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.lf-hero-article::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 20, 12, 0.55) 0%, rgba(8, 20, 12, 0.72) 60%, rgba(8, 20, 12, 0.9) 100%);
    z-index: 1;
}

.lf-hero-article .container {
    position: relative;
    z-index: 2;
}

.lf-hero-article .lf-hero-compact-inner {
    padding: 64px 0 56px;
    max-width: 820px;
}

.lf-hero-article h1 {
    color: #FFFFFF;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.lf-hero-article .lf-article-meta-top {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 20px;
    color: #E1ECE5;
    font-size: 14px;
}

.lf-hero-article .lf-article-category {
    display: inline-block;
    background-color: rgba(127, 214, 163, 0.2);
    color: #A8E6C0;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.lf-hero-article .lf-article-readtime {
    color: #B8CCBF;
}

.lf-hero-article .lf-article-readtime i {
    margin-right: 4px;
}

.lf-hero-article .lf-article-byline {
    color: #B8CCBF;
    font-size: 15px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.lf-hero-article .lf-byline-sep {
    color: #6B8778;
}

@media (max-width: 768px) {
    .lf-hero-article {
        min-height: 50vh;
    }
    .lf-hero-article .lf-hero-compact-inner {
        padding: 48px 0 40px;
    }
}

.lf-hero-compact {
    padding-top: 72px;
    background-color: #0D1F14;
    padding-bottom: 64px;
}

.lf-hero-compact.dark-mid {
    background-color: #1B3424;
}

.lf-hero-compact-inner {
    padding-top: 64px;
    max-width: 720px;
}

.lf-hero-compact h1 {
    color: #E6EFE9;
    margin-bottom: 16px;
}

.lf-hero-compact p {
    font-size: 18px;
    line-height: 1.7;
    color: #B8CCBF;
    margin-bottom: 0;
}

.lf-stats-bar {
    background-color: #0D1F14;
    padding: 56px 0;
}

.lf-stats-bar .lf-stat-item {
    text-align: center;
    padding: 24px 16px;
}

.lf-stat-number {
    font-size: 44px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -1px;
    color: #C47A2B;
    display: block;
}

.lf-stat-label {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0.5px;
    color: #7A9E87;
    text-transform: uppercase;
    margin-top: 8px;
    display: block;
}

.lf-feature-card {
    background-color: #FFFFFF;
    border-radius: 14px;
    padding: 36px 28px;
    border: 1px solid #D6E0D8;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: box-shadow var(--lf-transition), transform var(--lf-transition);
}

.lf-feature-card:hover {
    box-shadow: 0 6px 28px rgba(13, 31, 20, 0.12);
    transform: translateY(-2px);
}

.lf-feature-icon {
    width: 52px;
    height: 52px;
    background-color: #E8F5EE;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 22px;
    color: #1A7A4C;
    flex-shrink: 0;
}

.lf-feature-card h4 {
    margin-bottom: 12px;
    color: #0F2B1A;
}

.lf-feature-card p {
    color: #3A4A40;
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 0;
    flex: 1;
}

.lf-portfolio-card {
    background-color: #FFFFFF;
    border-radius: 14px;
    padding: 28px;
    border: 1px solid #D6E0D8;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: box-shadow var(--lf-transition);
}

.lf-portfolio-card:hover {
    box-shadow: 0 6px 28px rgba(13, 31, 20, 0.12);
}

.lf-portfolio-logo {
    width: 160px;
    height: 60px;
    background-color: #F2F4EE;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #6B7E74;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
    flex-shrink: 0;
}

.lf-portfolio-card h5 {
    color: #0F2B1A;
    margin-bottom: 6px;
}

.lf-portfolio-meta {
    font-size: 13px;
    color: #6B7E74;
    margin-bottom: 10px;
}

.lf-portfolio-card p {
    font-size: 14px;
    color: #3A4A40;
    line-height: 1.5;
    margin-bottom: 16px;
    flex: 1;
}

.lf-sector-tag {
    display: inline-block;
    padding: 4px 12px;
    background-color: #E8F5EE;
    color: #1A7A4C;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
    margin-top: auto;
    align-self: flex-start;
}

.lf-process-step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 28px 0;
    border-bottom: 1px solid #D6E0D8;
}

.lf-process-step:last-child {
    border-bottom: none;
}

.lf-process-number {
    font-size: 44px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -1px;
    color: #E8F5EE;
    min-width: 64px;
    flex-shrink: 0;
}

.lf-process-step h4 {
    color: #0F2B1A;
    margin-bottom: 8px;
}

.lf-process-step p {
    color: #3A4A40;
    font-size: 15px;
    margin-bottom: 0;
}

.lf-team-card {
    background-color: #FFFFFF;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #D6E0D8;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: box-shadow var(--lf-transition);
}

.lf-team-card:hover {
    box-shadow: 0 6px 28px rgba(13, 31, 20, 0.12);
}

.lf-team-avatar {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.lf-team-avatar-placeholder {
    width: 100%;
    height: 220px;
    background-color: #D6E0D8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6B7E74;
    font-size: 13px;
}

.lf-team-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.lf-team-card-body h4 {
    color: #0F2B1A;
    margin-bottom: 4px;
    font-size: 18px;
}

.lf-team-title {
    font-size: 14px;
    font-weight: 500;
    color: #1A7A4C;
    margin-bottom: 12px;
}

.lf-team-card-body p {
    font-size: 14px;
    color: #3A4A40;
    line-height: 1.6;
    flex: 1;
    margin-bottom: 16px;
}

.lf-team-linkedin {
    color: #6B7E74;
    font-size: 18px;
    transition: color var(--lf-transition);
    margin-top: auto;
    align-self: flex-start;
}

.lf-team-linkedin:hover {
    color: #1A7A4C;
}

.lf-team-preview-card {
    background-color: #FFFFFF;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid #D6E0D8;
}

.lf-team-preview-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    background-color: #D6E0D8;
}

.lf-team-preview-info h5 {
    color: #0F2B1A;
    margin-bottom: 4px;
    font-size: 15px;
}

.lf-team-preview-info span {
    font-size: 13px;
    color: #6B7E74;
}

.lf-advisor-tile {
    background-color: #FFFFFF;
    border-radius: 8px;
    padding: 24px;
    border: 1px solid #D6E0D8;
    height: 100%;
}

.lf-advisor-tile h5 {
    color: #0F2B1A;
    margin-bottom: 4px;
}

.lf-advisor-tile .lf-advisor-org {
    font-size: 13px;
    font-weight: 500;
    color: #1A7A4C;
    margin-bottom: 8px;
}

.lf-advisor-tile p {
    font-size: 13px;
    color: #6B7E74;
    margin-bottom: 0;
}

.lf-cta-section {
    background-color: #0D1F14;
    padding: 80px 0;
    text-align: center;
}

.lf-cta-section h2 {
    color: #E6EFE9;
    margin-bottom: 16px;
}

.lf-cta-section p {
    font-size: 18px;
    color: #B8CCBF;
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.lf-contact-info-card {
    background-color: #FFFFFF;
    border-radius: 14px;
    padding: 36px;
    border: 1px solid #D6E0D8;
    height: 100%;
}

.lf-contact-info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 24px;
}

.lf-contact-info-item:last-child {
    margin-bottom: 0;
}

.lf-contact-info-icon {
    width: 40px;
    height: 40px;
    background-color: #E8F5EE;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1A7A4C;
    font-size: 16px;
    flex-shrink: 0;
}

.lf-contact-info-text {
    flex: 1;
}

.lf-contact-info-text strong {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #0F2B1A;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.lf-contact-info-text span,
.lf-contact-info-text a {
    font-size: 15px;
    color: #3A4A40;
    text-decoration: none;
}

.lf-contact-info-text a:hover {
    color: #1A7A4C;
}

.lf-contact-note {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #D6E0D8;
    font-size: 14px;
    color: #6B7E74;
    font-style: italic;
}

.lf-contact-form {
    background-color: #FFFFFF;
    border-radius: 14px;
    padding: 36px;
    border: 1px solid #D6E0D8;
}

.lf-form-group {
    margin-bottom: 16px;
}

.lf-form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #0F2B1A;
    margin-bottom: 6px;
}

.lf-form-group input,
.lf-form-group textarea,
.lf-form-group select {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid #D6E0D8;
    border-radius: 8px;
    font-size: 15px;
    color: #3A4A40;
    background-color: #FFFFFF;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: border-color var(--lf-transition), box-shadow var(--lf-transition);
    outline: none;
}

.lf-form-group input:focus,
.lf-form-group textarea:focus,
.lf-form-group select:focus {
    border-color: #1A7A4C;
    box-shadow: 0 0 0 3px rgba(26, 122, 76, 0.12);
}

.lf-form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.lf-form-group input::placeholder,
.lf-form-group textarea::placeholder {
    color: #6B7E74;
}

.lf-form-submit {
    width: 100%;
    padding: 13px;
    background-color: #1A7A4C;
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.4px;
    cursor: pointer;
    transition: background-color var(--lf-transition);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.lf-form-submit:hover {
    background-color: #145F3A;
}

.lf-blog-card {
    background-color: #FFFFFF;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #D6E0D8;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: box-shadow var(--lf-transition);
}

.lf-blog-card:hover {
    box-shadow: 0 6px 28px rgba(13, 31, 20, 0.12);
}

.lf-blog-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.lf-blog-card-img-placeholder {
    width: 100%;
    height: 200px;
    background-color: #D6E0D8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6B7E74;
    font-size: 13px;
}

.lf-blog-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.lf-blog-card-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.lf-blog-card-date {
    font-size: 13px;
    color: #6B7E74;
}

.lf-blog-card-readtime {
    font-size: 13px;
    color: #6B7E74;
    display: flex;
    align-items: center;
    gap: 4px;
}

.lf-blog-card-body h5 {
    color: #0F2B1A;
    margin-bottom: 10px;
    font-size: 17px;
    line-height: 1.4;
}

.lf-blog-card-body h5 a {
    color: #0F2B1A;
    text-decoration: none;
    transition: color var(--lf-transition);
}

.lf-blog-card-body h5 a:hover {
    color: #1A7A4C;
}

.lf-blog-card-body p {
    font-size: 14px;
    color: #3A4A40;
    line-height: 1.6;
    flex: 1;
    margin-bottom: 16px;
}

.lf-read-more {
    font-size: 14px;
    font-weight: 600;
    color: #1A7A4C;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    transition: color var(--lf-transition);
}

.lf-read-more:hover {
    color: #145F3A;
}

.lf-portfolio-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 40px;
}

.lf-filter-btn {
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid #D6E0D8;
    background-color: #FFFFFF;
    color: #3A4A40;
    cursor: pointer;
    transition: all var(--lf-transition);
}

.lf-filter-btn:hover,
.lf-filter-btn.active {
    background-color: #1A7A4C;
    color: #FFFFFF;
    border-color: #1A7A4C;
}

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

.lf-sector-card {
    background-color: #FFFFFF;
    border-radius: 14px;
    padding: 32px;
    border: 1px solid #D6E0D8;
    text-align: center;
}

.lf-sector-card h4 {
    color: #0F2B1A;
    margin-bottom: 8px;
}

.lf-sector-count {
    font-size: 44px;
    font-weight: 700;
    color: #C47A2B;
    line-height: 1;
    letter-spacing: -1px;
    display: block;
    margin-bottom: 8px;
}

.lf-sector-card p {
    font-size: 14px;
    color: #6B7E74;
    margin-bottom: 0;
}

.lf-story-col {
    font-size: 16px;
    line-height: 1.7;
    color: #3A4A40;
}

.lf-story-col p + p {
    margin-top: 20px;
}

.lf-story-stats {
    background-color: #F2F4EE;
    border-radius: 14px;
    padding: 32px;
}

.lf-story-stat {
    margin-bottom: 28px;
}

.lf-story-stat:last-child {
    margin-bottom: 0;
}

.lf-story-stat-number {
    font-size: 44px;
    font-weight: 700;
    color: #C47A2B;
    line-height: 1;
    letter-spacing: -1px;
    display: block;
    margin-bottom: 4px;
}

.lf-story-stat-label {
    font-size: 14px;
    color: #6B7E74;
    display: block;
}

.lf-alternating-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    padding: 48px 0;
    border-bottom: 1px solid #D6E0D8;
}

.lf-alternating-row:last-child {
    border-bottom: none;
}

.lf-alternating-row.reverse .lf-alt-image {
    order: 2;
}

.lf-alternating-row.reverse .lf-alt-text {
    order: 1;
}

.lf-alt-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 6px 28px rgba(13, 31, 20, 0.12);
}

.lf-alt-image-placeholder {
    width: 100%;
    height: 320px;
    background-color: #D6E0D8;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6B7E74;
    font-size: 14px;
}

.lf-alt-text h3 {
    color: #0F2B1A;
    margin-bottom: 16px;
}

.lf-alt-text p {
    color: #3A4A40;
    font-size: 16px;
    line-height: 1.7;
}

.lf-values-card {
    background-color: #FFFFFF;
    border-radius: 14px;
    padding: 32px;
    border: 1px solid #D6E0D8;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.lf-values-icon {
    width: 48px;
    height: 48px;
    background-color: #E8F5EE;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #1A7A4C;
    margin-bottom: 18px;
    flex-shrink: 0;
}

.lf-values-card h4 {
    color: #0F2B1A;
    margin-bottom: 12px;
}

.lf-values-card p {
    font-size: 15px;
    color: #3A4A40;
    line-height: 1.65;
    margin-bottom: 0;
    flex: 1;
}

.lf-footer {
    background-color: #0D1F14;
    padding: 64px 0 48px;
}

.lf-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 48px;
}

.lf-footer-brand p {
    font-size: 15px;
    color: #B8CCBF;
    line-height: 1.7;
    margin-top: 16px;
    margin-bottom: 0;
}

.lf-footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.lf-footer-logo-icon {
    width: 30px;
    height: 30px;
    background-color: #1A7A4C;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lf-footer-logo-icon svg {
    width: 16px;
    height: 16px;
    fill: #FFFFFF;
}

.lf-footer-wordmark {
    font-size: 16px;
    font-weight: 700;
    color: #E6EFE9;
    letter-spacing: -0.2px;
}

.lf-footer-col h6 {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #7A9E87;
    margin-bottom: 20px;
}

.lf-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lf-footer-col ul li {
    margin-bottom: 10px;
}

.lf-footer-col ul li a {
    font-size: 15px;
    color: #B8CCBF;
    text-decoration: none;
    transition: color var(--lf-transition);
}

.lf-footer-col ul li a:hover {
    color: #E6EFE9;
}

.lf-footer-contact-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 14px;
}

.lf-footer-contact-item:last-child {
    margin-bottom: 0;
}

.lf-footer-contact-item i {
    color: #7A9E87;
    font-size: 14px;
    margin-top: 2px;
    flex-shrink: 0;
}

.lf-footer-contact-item span,
.lf-footer-contact-item a {
    font-size: 14px;
    color: #B8CCBF;
    text-decoration: none;
    line-height: 1.5;
}

.lf-footer-contact-item a:hover {
    color: #E6EFE9;
}

.lf-footer-bottom {
    border-top: 1px solid #2E5040;
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.lf-footer-copyright {
    font-size: 14px;
    color: #7A9E87;
}

.lf-footer-legal {
    display: flex;
    gap: 24px;
}

.lf-footer-legal a {
    font-size: 14px;
    color: #7A9E87;
    text-decoration: none;
    transition: color var(--lf-transition);
}

.lf-footer-legal a:hover {
    color: #B8CCBF;
}

.lf-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background-color: #0F2B1A;
    border-top: 1px solid #2E5040;
    padding: 16px 24px;
}

.lf-cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.lf-cookie-text {
    font-size: 14px;
    color: #E6EFE9;
    line-height: 1.5;
    flex: 1;
    min-width: 280px;
}

.lf-cookie-text a {
    color: #7A9E87;
    text-decoration: underline;
}

.lf-cookie-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-shrink: 0;
}

.lf-cookie-dismiss {
    font-size: 14px;
    color: #7A9E87;
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: underline;
    padding: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.lf-cookie-dismiss:hover {
    color: #B8CCBF;
}

.lf-legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 24px;
}

.lf-legal-content h1 {
    font-size: 36px;
    color: #0F2B1A;
    margin-bottom: 8px;
}

.lf-legal-updated {
    font-size: 13px;
    color: #6B7E74;
    margin-bottom: 40px;
}

.lf-legal-content h2 {
    font-size: 22px;
    color: #0F2B1A;
    margin-top: 40px;
    margin-bottom: 12px;
}

.lf-legal-content p {
    font-size: 15px;
    color: #3A4A40;
    line-height: 1.7;
    margin-bottom: 16px;
}

.lf-legal-content ul {
    padding-left: 20px;
    margin-bottom: 16px;
}

.lf-legal-content ul li {
    font-size: 15px;
    color: #3A4A40;
    line-height: 1.7;
    margin-bottom: 8px;
}

.lf-legal-content a {
    color: #1A7A4C;
}

.lf-404-section {
    min-height: calc(100vh - 72px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 72px;
    background-color: #FAFAF7;
}

.lf-404-inner {
    text-align: center;
    max-width: 520px;
    padding: 40px 24px;
}

.lf-404-number {
    font-size: 96px;
    font-weight: 700;
    color: #1A7A4C;
    line-height: 1;
    letter-spacing: -4px;
    display: block;
    margin-bottom: 16px;
}

.lf-404-inner h2 {
    color: #0F2B1A;
    margin-bottom: 16px;
}

.lf-404-inner p {
    font-size: 16px;
    color: #6B7E74;
    line-height: 1.65;
    margin-bottom: 32px;
}

.lf-portfolio-preview-section {
    background-color: #F2F4EE;
    padding: 80px 0;
}

.lf-portfolio-preview-section .lf-portfolio-logo {
    height: 50px;
}

.lf-process-list {
    max-width: 760px;
}

.lf-team-preview-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

@media (max-width: 767px) {
    h1 {
        font-size: 34px;
    }

    h2 {
        font-size: 28px;
    }

    h3 {
        font-size: 22px;
    }

    .lf-hero-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .lf-hero-image img {
        height: 280px;
    }

    .lf-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .lf-alternating-row {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .lf-alternating-row.reverse .lf-alt-image {
        order: 0;
    }

    .lf-alternating-row.reverse .lf-alt-text {
        order: 0;
    }

    .lf-sectors-grid {
        grid-template-columns: 1fr;
    }

    .lf-team-preview-row {
        grid-template-columns: 1fr;
    }

    .lf-hero-ctas {
        flex-direction: column;
        align-items: flex-start;
    }

    .lf-cookie-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 991px) {
    .lf-footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .lf-hero-split {
        padding: 60px 0;
    }

    .lf-alternating-row {
        gap: 40px;
    }

    .lf-team-preview-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .lf-footer-grid {
        grid-template-columns: 1fr;
    }

    .lf-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}


/* vc0502-dark-section-safeguard -- prevent dark-bg sections from inheriting default dark text */
[class*="-dark"] h1,
[class*="-dark"] h2,
[class*="-dark"] h3,
[class*="-dark"] h4,
[class*="-dark"] h5,
[class*="-dark"] h6,
[class*="dark-"] h1,
[class*="dark-"] h2,
[class*="dark-"] h3,
[class*="dark-"] h4,
[class*="dark-"] h5,
[class*="dark-"] h6,
[class*="-night"] h1,
[class*="-night"] h2,
[class*="-night"] h3 {
  color: #E8F2EC !important;
}
[class*="-dark"] p,
[class*="-dark"] .lead,
[class*="dark-"] p,
[class*="dark-"] .lead {
  color: color-mix(in srgb, #E8F2EC 82%, transparent) !important;
}
[class*="-dark"] .eyebrow,
[class*="-dark"] .kicker,
[class*="-dark"] [class*="section-label"],
[class*="dark-"] .eyebrow,
[class*="dark-"] .kicker,
[class*="dark-"] [class*="section-label"] {
  color: #4AA87A !important;
}
