@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@500;600;700&display=swap");


/* ==================================================
   ROOT
================================================== */

:root {
    --primary: #2e7d32;
    --primary-dark: #225f26;
    --primary-light: #eaf4eb;

    --dark: #18212b;
    --heading: #1d2732;
    --text: #5f6b76;

    --white: #ffffff;
    --off-white: #f8faf9;
    --border: #e2e7e4;

    --container-width: 1200px;
    --header-height: 94px;

    --shadow-small:
        0 8px 24px rgba(24, 33, 43, 0.07);

    --shadow-medium:
        0 20px 50px rgba(24, 33, 43, 0.12);
}


/* ==================================================
   RESET
================================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

button,
input,
textarea {
    font: inherit;
}

button {
    border: 0;
    background: none;
}

.container {
    width: min(90%, var(--container-width));
    margin-inline: auto;
}


/* ==================================================
   TYPOGRAPHY
================================================== */

h1,
h2,
h3 {
    font-family: "Poppins", sans-serif;
    color: var(--heading);
}

h1 {
    max-width: 740px;
    font-size: clamp(3rem, 5.3vw, 5rem);
    line-height: 1.08;
    letter-spacing: -0.045em;
    font-weight: 600;
}

h2 {
    font-size: clamp(2.1rem, 3.5vw, 3.3rem);
    line-height: 1.2;
    letter-spacing: -0.03em;
    font-weight: 600;
}

h3 {
    font-size: 1rem;
    font-weight: 600;
}

p {
    font-size: 1rem;
}

.section-eyebrow,
.hero-eyebrow {
    margin-bottom: 20px;
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    color: var(--primary);
    font-size: 0.92rem;
    font-weight: 600;
}

.text-link span {
    transition: transform 0.25s ease;
}

.text-link:hover span {
    transform: translateX(4px);
}


/* ==================================================
   HEADER
================================================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--border);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 30px;
}

.brand-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.brand-logo img {
    width: 225px;
    height: 176px;
    object-fit: contain;
}

.main-navigation ul {
    display: flex;
    align-items: center;
    gap: 31px;
}

.main-navigation a {
    position: relative;
    display: block;
    padding: 35px 0 31px;
    color: var(--dark);
    font-size: 0.93rem;
    font-weight: 500;
    transition: color 0.25s ease;
}

.main-navigation a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 22px;
    left: 0;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

.main-navigation a:hover,
.main-navigation a.active {
    color: var(--primary);
}

.main-navigation a:hover::after,
.main-navigation a.active::after {
    transform: scaleX(1);
}

.header-profile-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    color: var(--white);
    background: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 4px;
    font-size: 0.88rem;
    font-weight: 600;
    white-space: nowrap;
    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.header-profile-button:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-1px);
}

.mobile-menu-button {
    display: none;
    width: 42px;
    height: 42px;
    cursor: pointer;
}

.mobile-menu-button span {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px auto;
    background: var(--dark);
}


/* ==================================================
   BUTTONS
================================================== */

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 28px;
    border: 1px solid transparent;
    border-radius: 4px;
    font-size: 0.94rem;
    font-weight: 600;
    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    color: var(--white);
    background: var(--primary);
    border-color: var(--primary);
}

.button-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

.button-secondary {
    color: var(--dark);
    background: var(--white);
    border-color: #bfc8c2;
}

.button-secondary:hover {
    color: var(--primary);
    border-color: var(--primary);
}


/* ==================================================
   HERO
================================================== */

.hero-section {
    position: relative;
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    padding: 82px 0 88px;
    background:
        linear-gradient(
            90deg,
            rgba(248, 250, 249, 0.98) 0%,
            rgba(248, 250, 249, 0.92) 50%,
            rgba(255, 255, 255, 0.98) 100%
        );
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: -130px;
    right: -160px;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(46, 125, 50, 0.10);
    border-radius: 50%;
}

.hero-section::after {
    content: "";
    position: absolute;
    right: 90px;
    bottom: -230px;
    width: 440px;
    height: 440px;
    background: rgba(46, 125, 50, 0.035);
    border-radius: 50%;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns:
        minmax(0, 1.06fr)
        minmax(430px, 0.94fr);
    align-items: center;
    gap: 75px;
}

.hero-description {
    max-width: 690px;
    margin-top: 27px;
    color: var(--text);
    font-size: 1.08rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 36px;
}

.hero-trust-row {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 48px;
}

.trust-item {
    display: flex;
    flex-direction: column;
}

.trust-item strong {
    color: var(--dark);
    font-family: "Poppins", sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
}

.trust-item span {
    color: #87918b;
    font-size: 0.76rem;
}

.trust-divider {
    width: 1px;
    height: 36px;
    background: var(--border);
}


/* ==================================================
   HERO VISUAL
================================================== */

.hero-visual {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.technology-panel {
    position: relative;
    z-index: 2;
    width: min(100%, 515px);
    padding-bottom: 6px;
    background: var(--white);
    border: 1px solid #dce3df;
    border-radius: 10px;
    box-shadow: var(--shadow-medium);
    overflow: hidden;
}

.panel-topbar {
    display: flex;
    align-items: center;
    gap: 7px;
    height: 46px;
    padding: 0 18px;
    background: #f5f7f6;
    border-bottom: 1px solid var(--border);
}

.panel-dot {
    width: 8px;
    height: 8px;
    background: #c5ceca;
    border-radius: 50%;
}

.panel-content {
    padding: 31px;
}

.panel-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.panel-label {
    color: var(--dark);
    font-size: 0.9rem;
    font-weight: 600;
}

.panel-status {
    padding: 5px 10px;
    color: var(--primary);
    background: var(--primary-light);
    border-radius: 100px;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
}

.panel-chart {
    height: 180px;
    display: flex;
    align-items: end;
    gap: 13px;
    margin-top: 31px;
    padding: 20px 20px 0;
    background:
        repeating-linear-gradient(
            to bottom,
            transparent 0,
            transparent 39px,
            #edf1ef 40px
        );
    border-bottom: 1px solid #cfd7d2;
}

.panel-chart span {
    flex: 1;
    min-width: 17px;
    background:
        linear-gradient(
            to top,
            var(--primary-dark),
            #50ad56
        );
    border-radius: 3px 3px 0 0;
    opacity: 0.88;
}

.panel-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 28px;
}

.mini-card {
    display: flex;
    align-items: center;
    gap: 13px;
    min-height: 76px;
    padding: 14px;
    background: #fbfcfb;
    border: 1px solid var(--border);
    border-radius: 6px;
}

.mini-icon {
    width: 35px;
    height: 35px;
    display: grid;
    flex-shrink: 0;
    place-items: center;
    color: var(--primary);
    background: var(--primary-light);
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
}

.mini-card strong {
    display: block;
    color: var(--dark);
    font-size: 0.8rem;
    line-height: 1.4;
}

.mini-card small {
    display: block;
    margin-top: 2px;
    color: #8b958f;
    font-size: 0.65rem;
    line-height: 1.4;
}

.floating-card {
    position: absolute;
    z-index: 3;
    display: flex;
    flex-direction: column;
    min-width: 148px;
    padding: 16px 18px;
    background: var(--white);
    border-left: 3px solid var(--primary);
    border-radius: 5px;
    box-shadow: var(--shadow-small);
}

.floating-card-top {
    top: 51px;
    right: -22px;
}

.floating-card-bottom {
    bottom: 54px;
    left: -26px;
}

.floating-number {
    color: var(--dark);
    font-family: "Poppins", sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
}

.floating-card span:last-child {
    color: #7b8680;
    font-size: 0.68rem;
}


/* ==================================================
   SERVICES
================================================== */

.services-preview-section {
    padding: 110px 0;
    background: var(--off-white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.section-heading-row,
.portfolio-heading {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 70px;
    margin-bottom: 55px;
}

.section-heading-row {
    grid-template-columns: 1fr 0.8fr;
}

.section-heading-row h2,
.portfolio-heading h2 {
    max-width: 700px;
}

.section-heading-description {
    padding-bottom: 7px;
}

.section-heading-description p {
    max-width: 520px;
    line-height: 1.85;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}

.service-card {
    position: relative;
    min-height: 360px;
    padding: 38px 34px;
    background: var(--white);
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.service-card:hover {
    z-index: 2;
    border-color: transparent;
    box-shadow: var(--shadow-medium);
    transform: translateY(-5px);
}

.service-number {
    position: absolute;
    top: 27px;
    right: 29px;
    color: #aab4ae;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.service-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    margin-bottom: 27px;
    color: var(--primary);
    background: var(--primary-light);
    border-radius: 5px;
    font-size: 0.72rem;
    font-weight: 700;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.service-card p {
    font-size: 0.91rem;
    line-height: 1.8;
}

.service-link {
    position: absolute;
    bottom: 31px;
    left: 34px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-size: 0.84rem;
    font-weight: 600;
}

.service-link span,
.project-link span {
    transition: transform 0.25s ease;
}

.service-link:hover span,
.project-link:hover span {
    transform: translateX(4px);
}


/* ==================================================
   PORTFOLIO SECTIONS
================================================== */

.portfolio-section,
.marketing-work-section {
    padding: 110px 0;
}

.portfolio-section {
    background: var(--white);
}

.marketing-work-section {
    background: var(--off-white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

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

.project-card {
    background: var(--white);
    border: 1px solid var(--border);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-medium);
}

.project-image {
    display: block;
    height: 265px;
    padding: 14px;
    background: #f1f4f2;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.025);
}

.marketing-project-card .project-image img {
    object-fit: cover;
}

.project-content {
    padding: 27px 27px 30px;
}

.project-category,
.leadership-role {
    margin-bottom: 10px;
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.project-content h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.project-content p {
    font-size: 0.88rem;
    line-height: 1.75;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    color: var(--primary);
    font-size: 0.84rem;
    font-weight: 600;
}


/* ==================================================
   ABOUT
================================================== */

.introduction-section {
    padding: 110px 0;
    background: var(--white);
}

.introduction-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 105px;
    align-items: start;
}

.introduction-grid h2 {
    max-width: 570px;
}

.introduction-grid > div:last-child {
    padding-top: 42px;
}

.introduction-grid > div:last-child p {
    max-width: 620px;
    margin-bottom: 17px;
    font-size: 1.02rem;
    line-height: 1.9;
}


/* ==================================================
   WHY US
================================================== */

.why-us-section {
    padding: 110px 0;
    background: #18211c;
}

.centered-section-heading {
    max-width: 760px;
    margin: 0 auto 58px;
    text-align: center;
}

.centered-section-heading h2 {
    color: var(--white);
}

.centered-section-heading > p:last-child {
    max-width: 620px;
    margin: 20px auto 0;
    color: #aab6af;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.advantage-card {
    min-height: 285px;
    padding: 35px 28px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.advantage-number {
    display: block;
    margin-bottom: 35px;
    color: #57ad5c;
    font-size: 0.74rem;
    font-weight: 700;
}

.advantage-card h3 {
    margin-bottom: 15px;
    color: var(--white);
    font-size: 1.08rem;
}

.advantage-card p {
    color: #aab6af;
    font-size: 0.86rem;
    line-height: 1.8;
}


/* ==================================================
   INDUSTRIES
================================================== */

.industries-section {
    padding: 105px 0;
    background: var(--off-white);
}

.industries-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    align-items: center;
    gap: 90px;
}

.industries-heading p:last-child {
    max-width: 500px;
    margin-top: 23px;
    line-height: 1.85;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}

.industry-item {
    min-height: 76px;
    display: flex;
    align-items: center;
    padding: 0 24px;
    color: var(--dark);
    background: var(--white);
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    font-size: 0.93rem;
    font-weight: 600;
    transition:
        color 0.25s ease,
        background 0.25s ease;
}

.industry-item:hover {
    color: var(--primary);
    background: var(--primary-light);
}


/* ==================================================
   LEADERSHIP
================================================== */

.leadership-preview-section {
    padding: 110px 0;
    background: var(--white);
}

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

.leadership-card {
    min-height: 320px;
    padding: 35px;
    background: var(--off-white);
    border: 1px solid var(--border);
}

.leadership-initials {
    width: 76px;
    height: 76px;
    display: grid;
    place-items: center;
    margin-bottom: 35px;
    color: var(--white);
    background: var(--primary);
    font-family: "Poppins", sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
}

.leadership-details h3 {
    margin-bottom: 14px;
    font-size: 1.25rem;
}

.leadership-details > p:last-child {
    font-size: 0.88rem;
    line-height: 1.8;
}


/* ==================================================
   FACTS
================================================== */

.company-facts-section {
    padding: 0;
    background: var(--primary);
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.fact-item {
    min-height: 155px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
    border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.fact-item:last-child {
    border-right: 0;
}

.fact-item strong {
    color: var(--white);
    font-family: "Poppins", sans-serif;
    font-size: 1.45rem;
    font-weight: 600;
}

.fact-item span {
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.78rem;
}


/* ==================================================
   PROFILE CTA
================================================== */

.profile-cta-section {
    padding: 95px 0;
    background: #edf3ef;
}

.profile-cta {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 70px;
}

.profile-cta h2 {
    max-width: 730px;
}

.profile-cta p:last-child {
    max-width: 680px;
    margin-top: 20px;
    line-height: 1.8;
}

.profile-download-button {
    min-width: 245px;
    color: var(--white);
    background: var(--primary);
    border-color: var(--primary);
}


/* ==================================================
   CONTACT
================================================== */

.home-contact-section {
    padding: 110px 0;
    background: var(--white);
}

.home-contact-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 90px;
    align-items: start;
}

.home-contact-heading p:last-child {
    max-width: 490px;
    margin-top: 23px;
    line-height: 1.85;
}

.contact-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}

.contact-detail-card {
    min-height: 145px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 27px;
    background: var(--off-white);
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    transition: background 0.25s ease;
}

a.contact-detail-card:hover {
    background: var(--primary-light);
}

.contact-label {
    margin-bottom: 9px;
    color: var(--primary);
    font-size: 0.71rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.contact-detail-card strong {
    color: var(--dark);
    font-size: 0.91rem;
    overflow-wrap: anywhere;
}


/* ==================================================
   FOOTER
================================================== */

.site-footer {
    padding: 68px 0 0;
    color: #cbd3ce;
    background: #18211c;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.65fr 0.7fr;
    gap: 55px;
    padding-bottom: 55px;
}

.footer-brand img {
    width: 230px;
    height: 178px;
    padding: 5px 8px;
    background: var(--white);
    border-radius: 3px;
    object-fit: contain;
}

.footer-brand p {
    max-width: 360px;
    margin-top: 21px;
    color: #aeb9b2;
    line-height: 1.8;
}

.footer-contact,
.footer-links,
.footer-socials {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
}

.footer-contact h3,
.footer-links h3,
.footer-socials h3 {
    margin-bottom: 10px;
    color: var(--white);
    font-size: 0.95rem;
}

.footer-contact a,
.footer-links a,
.footer-contact p,
.footer-socials span,
.footer-socials p {
    color: #aeb9b2;
    font-size: 0.84rem;
    transition: color 0.25s ease;
}

.footer-contact a:hover,
.footer-links a:hover {
    color: var(--white);
}

.social-note {
    margin-top: 9px;
    font-size: 0.72rem !important;
}

.footer-bottom {
    padding: 22px 0;
    border-top:
        1px solid rgba(255, 255, 255, 0.10);
}

.footer-bottom p {
    color: #87948c;
    font-size: 0.78rem;
    text-align: center;
}