﻿

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%
}

body {
    font-family: 'Segoe UI',system-ui,-apple-system,sans-serif;
    color: #2d3436;
    line-height: 1.6;
    overflow-x: hidden;
    background: #fff
}

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

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

ul {
    list-style: none
}

/* bbb COLOR SYSTEM (Sapling Global) bbb */
:root {
    --green-primary: #1B7A3D;
    --green-dark: #145C2E;
    --green-light: #E8F5EC;
    --green-accent: #22A94E;
    --navy: #0F1923;
    --navy-mid: #1A2A3A;
    --navy-light: #243447;
    --white: #FFFFFF;
    --off-white: #F7F9FA;
    --gray-100: #F1F3F5;
    --gray-200: #E9ECEF;
    --gray-300: #DEE2E6;
    --gray-500: #6C757D;
    --gray-700: #495057;
    --gray-900: #212529;
    --text-primary: #1A2A3A;
    --text-secondary: #4A5568;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
    --radius: 10px;
    --radius-lg: 16px;
}

/* bbb TYPOGRAPHY bbb */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-primary)
}

h1 {
    font-size: clamp(2rem,4.5vw,3.2rem);
    letter-spacing: -0.02em
}

h2 {
    font-size: 25px;
    letter-spacing: -0.01em;
    padding: 0;
    margin: 0 0px 31px 0;
}

h3 {
    font-size: clamp(1.15rem,2vw,1.4rem)
}

p {
    color: var(--text-secondary);
    line-height: 1.7
}

/* bbb LAYOUT bbb */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    background: transparent;
}

section {
    padding: 52px 0;
}

@media(max-width:768px) {
    section {
        padding: 56px 0
    }
}


.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.25s ease
}

.btn-primary {
    background: var(--green-primary);
    color: #fff
}

    .btn-primary:hover {
        background: var(--green-dark);
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(27,122,61,0.3)
    }

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.5)
}

    .btn-outline:hover {
        border-color: #fff;
        background: rgba(255,255,255,0.1)
    }

.btn-outline-green {
    background: transparent;
    color: var(--green-primary);
    border: 2px solid var(--green-primary)
}

    .btn-outline-green:hover {
        background: var(--green-primary);
        color: #fff
    }

.btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0
}


.topbar {
    background: var(--navy);
    padding: 8px 0;
    font-size: 13px;
    color: rgba(255,255,255,0.7)
}

    .topbar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 8px
    }

    .topbar a {
        color: rgba(255,255,255,0.7);
        transition: color 0.2s
    }

        .topbar a:hover {
            color: #fff
        }

.topbar-social {
    display: flex;
    gap: 16px
}

    .topbar-social svg {
        width: 16px;
        height: 16px;
        fill: currentColor
    }


.navbar {
    background: #fff;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100
}

    .navbar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 12px;
        padding-bottom: 12px
    }

.logo {
    height: 42px
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px
}

    .nav-links a {
        font-size: 15px;
        font-weight: 500;
        color: var(--text-primary);
        transition: color 0.2s;
        white-space: nowrap
    }

        .nav-links a:hover {
            color: var(--green-primary)
        }

    .nav-links .btn {
        padding: 10px 24px;
        font-size: 14px
    }

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px
}

    .mobile-toggle svg {
        width: 28px;
        height: 28px;
        color: var(--text-primary)
    }

@media(max-width:900px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: #fff;
        padding: 20px 24px;
        box-shadow: var(--shadow-md);
        gap: 16px;
        align-items: stretch
    }

        .nav-links.active {
            display: flex
        }

    .mobile-toggle {
        display: block
    }
}


.hero {
    background: linear-gradient(135deg,var(--navy) 0%,var(--navy-mid) 50%,#1E3A28 100%);
    color: #fff;
    padding: 42px 0 80px;
    position: relative;
    overflow: hidden
}

    .hero::before {
        content: '';
        position: absolute;
        top: -200px;
        right: -200px;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle,rgba(27,122,61,0.15) 0%,transparent 70%);
        border-radius: 50%
    }

    .hero::after {
        content: '';
        position: absolute;
        bottom: -150px;
        left: -100px;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle,rgba(34,169,78,0.1) 0%,transparent 70%);
        border-radius: 50%
    }

    .hero .container {
        position: relative;
        z-index: 1;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
        background: transparent;
    }

.hero-content .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(27,122,61,0.2);
    border: 1px solid rgba(27,122,61,0.4);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: #6FCF97;
    margin-bottom: 24px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    display: none;
}

.hero-content h1 {
    color: #fff;
    margin-bottom: 8px
}

.hero-content .tagline {
    font-size: 20px;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 20px
}

.hero-content .hero-desc {
    font-size: 17px;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 540px
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center
}

.hero-graphic {
    width: 100%;
    max-width: 480px
}

@media(max-width:900px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center
    }

    .hero-content .hero-desc {
        margin-left: auto;
        margin-right: auto
    }

    .hero-buttons {
        justify-content: center
    }

    .hero-visual {
        display: none
    }
}


.services {
    background: var(--off-white);
    margin-bottom: 17px;
    padding-top: 20px;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0px auto 35px;
}

    .section-header .label {
        display: inline-block;
        font-size: 13px;
        font-weight: 700;
        color: var(--green-primary);
        letter-spacing: 0.08em;
        text-transform: uppercase;
        margin-bottom: 12px
    }

    .section-header p {
        margin-top: 16px;
        margin-bottom: 0px;
        padding-bottom: 0;
    }

.service-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 28px;
}

.service-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 36px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden
}

    .service-card:hover {
        border-color: var(--green-primary);
        box-shadow: var(--shadow-lg);
        transform: translateY(-4px)
    }

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--green-primary);
        opacity: 0;
        transition: opacity 0.3s
    }

    .service-card:hover::before {
        opacity: 1
    }

.card-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px
}

    .card-icon svg {
        width: 28px;
        height: 28px
    }

    .card-icon.hire {
        background: #E3F2FD;
        color: #1976D2
    }

        .card-icon.hire svg {
            fill: #1976D2
        }

    .card-icon.integrity {
        background: #FFF3E0;
        color: #E65100
    }

        .card-icon.integrity svg {
            fill: #E65100
        }

    .card-icon.leader {
        background: #F3E5F5;
        color: #7B1FA2
    }

        .card-icon.leader svg {
            fill: #7B1FA2
        }

    .card-icon.vendor {
        background: var(--green-light);
        color: var(--green-primary)
    }

        .card-icon.vendor svg {
            fill: var(--green-primary)
        }

.service-card h3 {
    margin-bottom: 4px
}

.service-card .card-sub {
    font-size: 14px;
    color: var(--green-primary);
    font-weight: 600;
    margin-bottom: 14px
}

.service-card .card-desc {
    font-size: 14.5px;
    margin-bottom: 20px
}

.check-list {
    display: flex;
    flex-direction: column;
    gap: 10px
}

    .check-list li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        font-size: 14px;
        color: var(--text-secondary)
    }

        .check-list li svg {
            width: 18px;
            height: 18px;
            flex-shrink: 0;
            margin-top: 2px
        }

.card-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 24px;
    font-size: 14px;
    font-weight: 600;
    color: var(--green-primary);
    transition: gap 0.2s
}

    .card-cta:hover {
        gap: 10px
    }

    .card-cta svg {
        width: 16px;
        height: 16px
    }

@media(max-width:768px) {
    .service-grid {
        grid-template-columns: 1fr
    }
}


.process {
    background: #fff;
    margin-bottom: 20px;
    padding-top: 0px;
    margin-top: 19px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 0;
    position: relative;
    margin-top: 16px
}

.process-step {
    text-align: center;
    padding: 32px 20px;
    position: relative
}

    .process-step:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 46px;
        right: -12px;
        width: 24px;
        height: 2px;
        background: var(--green-primary);
        z-index: 1
    }

.step-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--green-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    margin: 0 auto 16px;
    position: relative;
    z-index: 2
}

.process-step h4 {
    font-size: 14.5px;
    margin-bottom: 8px;
    color: var(--text-primary)
}

.process-step p {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.5
}

@media(max-width:900px) {
    .process-steps {
        grid-template-columns: 1fr;
        gap: 0
    }

    .process-step:not(:last-child)::after {
        display: none
    }

    .process-step {
        padding: 20px;
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 0 16px;
        text-align: left
    }

    .step-num {
        grid-row: 1/3;
        margin: 0;
        align-self: center
    }

    .process-step h4 {
        margin-bottom: 4px
    }
}

/* bbb WHY CHOOSE bbb */
.why-choose {
    background: var(--off-white);
    padding-bottom: 70px;
    padding-top: 20px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 28px
}

.trust-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 32px;
    border: 1px solid var(--gray-200);
    text-align: center;
    transition: box-shadow 0.3s
}

    .trust-card:hover {
        box-shadow: var(--shadow-md)
    }

.trust-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--green-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px
}

    .trust-icon svg {
        width: 24px;
        height: 24px;
        fill: var(--green-primary)
    }

.trust-card h4 {
    font-size: 15px;
    margin-bottom: 8px
}

.trust-card p {
    font-size: 13.5px
}

@media(max-width:768px) {
    .trust-grid {
        grid-template-columns: 1fr
    }
}


.compliance {
    background: var(--navy);
    color: #fff;
    position: relative;
    overflow: hidden;
    padding-bottom: 80px;
    padding-top: 20px;
}

    .compliance::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle,rgba(27,122,61,0.12) 0%,transparent 70%);
        border-radius: 50%
    }

    .compliance .section-header h2 {
        color: #fff
    }

    .compliance .section-header p {
        color: rgba(255,255,255,0.65)
    }

    .compliance .section-header .label {
        color: #6FCF97
    }

.compliance-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
    position: relative;
    z-index: 1
}

.compliance-item {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 28px;
    transition: background 0.3s
}

    .compliance-item:hover {
        background: rgba(255,255,255,0.1)
    }

    .compliance-item svg {
        width: 24px;
        height: 24px;
        fill: #6FCF97;
        margin-bottom: 14px;
        display: block
    }

    .compliance-item h4 {
        font-size: 15px;
        color: #fff;
        margin-bottom: 8px
    }

    .compliance-item p {
        font-size: 13.5px;
        color: rgba(255,255,255,0.6);
        line-height: 1.6
    }

@media(max-width:768px) {
    .compliance-grid {
        grid-template-columns: 1fr
    }
}

/* bbb INDUSTRIES bbb */
.industries {
    background: #fff;
    padding-bottom: 70px;
    padding-top: 20px;
}

.industry-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 8px
}

.industry-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--off-white);
    border: 1px solid var(--gray-200);
    border-radius: 100px;
    padding: 14px 28px;
    font-size: 14.5px;
    font-weight: 500;
    color: var(--text-primary);
    transition: all 0.25s
}

    .industry-tag:hover {
        border-color: var(--green-primary);
        background: var(--green-light);
        color: var(--green-primary)
    }

    .industry-tag svg {
        width: 20px;
        height: 20px;
        flex-shrink: 0
    }


.final-cta {
    background: linear-gradient(135deg,var(--green-dark) 0%,var(--green-primary) 50%,#1E8C47 100%);
    color: #fff;
    text-align: center;
    padding: 20px 0 80px 0px;
}

    .final-cta h2 {
        color: #fff;
        margin-bottom: 16px
    }

    .final-cta p {
        color: rgba(255,255,255,0.85);
        font-size: 17px;
        max-width: 600px;
        margin: 0 auto 36px;
        line-height: 1.7;
        padding-top: 15px;
    }

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap
}

.btn-white {
    background: #fff;
    color: var(--green-primary);
    font-weight: 700
}

    .btn-white:hover {
        background: rgba(255,255,255,0.9);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0,0,0,0.15);
        color: #186a35;
    }


footer {
    background: var(--navy);
    color: rgba(255,255,255,0.7);
    padding: 56px 0 24px
}

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

footer h4 {
    color: #fff;
    font-size: 15px;
    margin-bottom: 20px
}

footer a {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    transition: color 0.2s
}

    footer a:hover {
        color: #6FCF97
    }

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.footer-about p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px
}

.footer-social {
    display: flex;
    gap: 12px
}

    .footer-social a {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: rgba(255,255,255,0.08);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background 0.2s
    }

        .footer-social a:hover {
            background: var(--green-primary)
        }

    .footer-social svg {
        width: 16px;
        height: 16px;
        fill: #fff
    }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 13px
}

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

    .footer-contact-item svg {
        width: 16px;
        height: 16px;
        fill: #6FCF97;
        flex-shrink: 0;
        margin-top: 3px
    }

@media(max-width:768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px
    }
}

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


.fade-up {
    transform: translateY(30px);
    transition: opacity 0.6s ease,transform 0.6s ease
}

    .fade-up.visible {
        opacity: 1;
        transform: translateY(0)
    }

@media(prefers-reduced-motion:reduce) {
    .fade-up {
        opacity: 1;
        transform: none;
        transition: none
    }
}
