/* ═══════════════════════════════════════════
   GREENITIVE TECHNOLOGIES – GLOBAL STYLESHEET
   Theme: LIGHT / PROFESSIONAL
   Brand green: #1a7a3c / #22a857
   Background: white & soft gray
═══════════════════════════════════════════ */

:root {
    /* Brand greens */
    --g900: #0d4a24;
    --g800: #145e2e;
    --g700: #1a7a3c;
    --g600: #22a857;
    --g500: #2ec96a;
    --g400: #4dd17c;
    --g100: #ebf7f0;
    --g50: #f4fbf7;

    /* Light backgrounds */
    --bg: #ffffff;
    --bg-alt: #f7faf8;
    --bg-card: #ffffff;
    --bg-deep: #f0f6f2;

    /* Borders */
    --border: rgba(26, 122, 60, 0.12);
    --borderh: rgba(26, 122, 60, 0.35);
    --border-light: rgba(0, 0, 0, 0.07);

    /* Text */
    --tp: #0f2318;
    /* primary – very dark green-black */
    --ts: #3d5c48;
    /* secondary */
    --tm: #7a9986;
    /* muted */

    /* Amber accent */
    --amber: #d97706;

    /* Shadows */
    --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.07);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.09);
    --shadow-md: 0 8px 36px rgba(0, 0, 0, 0.12);
    --shadow-g: 0 4px 24px rgba(26, 122, 60, 0.18);

    /* Fonts */
    --fh: 'Plus Jakarta Sans', sans-serif;
    --fb: 'Inter', sans-serif;

    /* Radii */
    --r-sm: 8px;
    --r-md: 12px;
    --r-lg: 18px;
    --r-xl: 24px;

    --t: 0.22s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px
}

body {
    background: var(--bg);
    color: var(--tp);
    font-family: var(--fb);
    line-height: 1.65;
    overflow-x: hidden
}

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

ul {
    list-style: none
}

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit
}

.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 28px
}

/* ── GRADIENT TEXT ── */
.gt {
    background: linear-gradient(135deg, var(--g700), var(--g600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── BUTTONS ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    border-radius: 6px;
    font-size: .9rem;
    font-weight: 600;
    letter-spacing: .01em;
    transition: var(--t);
    position: relative;
    overflow: hidden;
}

.btn-p {
    background: var(--g700);
    color: #fff;
    box-shadow: 0 2px 10px rgba(26, 122, 60, 0.25);
    border: 1px solid var(--g700);
}

.btn-p:hover {
    background: var(--g800);
    box-shadow: var(--shadow-g);
}

.btn-g {
    background: transparent;
    color: var(--g700);
    border: 1.5px solid var(--g700);
}

.btn-g:hover {
    background: var(--g50);
}

.btn-lg {
    padding: 14px 32px;
    font-size: .95rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-white {
    background: #fff;
    color: var(--g700);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
    background: var(--g50);
}

/* ── SECTION ── */
section {
    padding: 96px 0
}

.s-head {
    text-align: center;
    margin-bottom: 60px
}

/* Badge */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 5px 16px;
    background: var(--g100);
    border: 1px solid rgba(26, 122, 60, 0.2);
    border-radius: 50px;
    color: var(--g700);
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 16px;
}

/* Section titles */
.s-title {
    font-family: var(--fh);
    font-size: clamp(1.85rem, 3.8vw, 2.65rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 14px;
    color: var(--tp);
}

.s-sub {
    font-size: 1.05rem;
    color: var(--ts);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.75;
}

/* Light subtle grid */
.bg-grid {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -2;
    background-image:
        linear-gradient(rgba(26, 122, 60, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(26, 122, 60, 0.03) 1px, transparent 1px);
    background-size: 48px 48px;
}

/* ══════════════════════════════════════
   NAVBAR
══════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--t);
    background: rgba(255, 255, 255, 0);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    padding: 11px 0;
}

.nav-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-logo img {
    height: 36px;
    width: auto;
}

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

.nav-link {
    padding: 7px 12px;
    border-radius: 6px;
    font-size: .855rem;
    font-weight: 500;
    color: var(--ts);
    transition: var(--t);
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: var(--g700);
    background: var(--g50);
}

.nav-cta {
    margin-left: auto;
    flex-shrink: 0;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    margin-left: auto;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--tp);
    border-radius: 2px;
    transition: var(--t);
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
    background: var(--tp);
    color: #c8ddd1;
    padding: 72px 0 28px;
}

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

.foot-logo {
    height: 34px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 16px;
}

.foot-brand p {
    font-size: .86rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.72;
    margin-bottom: 18px;
}

.foot-social {
    display: flex;
    gap: 10px;
}

.foot-social a {
    width: 34px;
    height: 34px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: .85rem;
    transition: var(--t);
}

.foot-social a:hover {
    background: var(--g700);
    border-color: var(--g700);
    color: #fff;
}

.foot-col h4 {
    font-size: .82rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: .07em;
}

.foot-col ul li {
    margin-bottom: 9px;
}

.foot-col ul li a {
    font-size: .86rem;
    color: rgba(255, 255, 255, 0.45);
    transition: var(--t);
}

.foot-col ul li a:hover {
    color: #fff;
    padding-left: 4px;
}

.foot-addr p {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: .84rem;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 10px;
    line-height: 1.55;
}

.foot-addr i {
    color: var(--g500);
    margin-top: 3px;
    flex-shrink: 0;
}

.foot-addr a {
    color: rgba(255, 255, 255, 0.45);
    transition: var(--t);
}

.foot-addr a:hover {
    color: #fff;
}

.foot-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .77rem;
    color: rgba(255, 255, 255, 0.28);
}

/* ══════════════════════════════════════
   SHARED CARD
══════════════════════════════════════ */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--r-lg);
    padding: 30px;
    transition: var(--t);
    position: relative;
    box-shadow: var(--shadow-sm);
}

.card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    border-color: var(--borderh);
}

.icon-box {
    width: 48px;
    height: 48px;
    background: var(--g100);
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--g700);
    margin-bottom: 16px;
    transition: var(--t);
    border: 1px solid rgba(26, 122, 60, 0.12);
}

.card:hover .icon-box {
    background: var(--g700);
    color: #fff;
}

/* ══════════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════════ */
.page-hero {
    padding: 150px 0 72px;
    text-align: center;
    background: linear-gradient(165deg, var(--g50) 0%, #ffffff 60%);
    border-bottom: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(26, 122, 60, 0.07), transparent);
    pointer-events: none;
}

.page-hero h1 {
    font-family: var(--fh);
    font-size: clamp(2.1rem, 4.5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.12;
    margin-bottom: 18px;
    color: var(--tp);
}

.page-hero p {
    font-size: 1.08rem;
    color: var(--ts);
    max-width: 620px;
    margin: 0 auto 32px;
    line-height: 1.75;
}

/* ══════════════════════════════════════
   CTA BAND
══════════════════════════════════════ */
.cta-band {
    background: linear-gradient(135deg, var(--g900), var(--g700));
    padding: 88px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(255, 255, 255, 0.04), transparent);
    pointer-events: none;
}

.cta-band h2 {
    font-family: var(--fh);
    font-size: clamp(1.7rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.2;
}

.cta-band .gt {
    background: linear-gradient(135deg, #a8f0c6, #52e08a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-band p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 580px;
    margin: 0 auto 32px;
    line-height: 1.75;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* ══════════════════════════════════════
   PIPELINE WIDGET (shared)
══════════════════════════════════════ */
.pipeline-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: var(--r-lg);
    padding: 26px;
    box-shadow: var(--shadow);
}

.pipe-hd {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: .85rem;
    font-weight: 600;
    color: var(--ts);
}

.pdot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--g600);
    box-shadow: 0 0 6px var(--g500);
}

@keyframes blink {

    0%,
    100% {}

    50% {}
}

.pipe-row {
    margin-bottom: 13px;
}

.pipe-row>span {
    display: block;
    font-size: .76rem;
    color: var(--tm);
    font-weight: 500;
    margin-bottom: 5px;
}

.pbar {
    height: 24px;
    background: var(--bg-alt);
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--g800), var(--g600));
    border-radius: 6px;
    display: flex;
    align-items: center;
    padding-left: 10px;
    font-size: .72rem;
    font-weight: 600;
    color: #fff;
    transition: width 1s ease;
}

.bar-fill.amber-fill {
    background: linear-gradient(90deg, #92400e, var(--amber));
    color: #fff;
}

.pipe-ft {
    margin-top: 14px;
    font-size: .74rem;
    color: var(--tm);
    display: flex;
    align-items: center;
    gap: 7px;
    border-top: 1px solid var(--border-light);
    padding-top: 12px;
}

.pipe-ft i {
    color: var(--g600);
}

/* ══════════════════════════════════════
   REVEAL ANIMATION
══════════════════════════════════════ */
.rev {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
}

.rev.vis {
    opacity: 1;
    transform: translateY(0);
}

/* ══════════════════════════════════════
   UTILITIES
══════════════════════════════════════ */
.mt-1 {
    margin-top: 14px
}

.mt-2 {
    margin-top: 26px
}

.mt-3 {
    margin-top: 40px
}

.txt-c {
    text-align: center
}

.chip {
    display: inline-block;
    padding: 3px 11px;
    background: var(--g100);
    color: var(--g700);
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    border-radius: 50px;
}

.amber-ib {
    background: rgba(217, 119, 6, 0.1) !important;
    border-color: rgba(217, 119, 6, 0.2) !important;
    color: var(--amber) !important;
}

/* ══════════════════════════════════════
   SCROLLBAR
══════════════════════════════════════ */
::-webkit-scrollbar {
    width: 5px
}

::-webkit-scrollbar-track {
    background: #f0f4f1
}

::-webkit-scrollbar-thumb {
    background: var(--g600);
    border-radius: 3px
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media(max-width:1024px) {
    .foot-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}

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

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        border-bottom: 1px solid var(--border-light);
        padding: 16px 24px;
        gap: 3px;
        box-shadow: var(--shadow);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .foot-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .foot-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media(max-width:480px) {
    .s-title {
        font-size: 1.7rem;
    }

    .page-hero h1 {
        font-size: 1.95rem;
    }
}