﻿
:root {
    --green-950: #012719;
    --green-900: #013a24;
    --green-800: #045333;
    --green-700: #087246;
    --green: #00a96b;
    --green-2: #16c784;
    --mint: #dff8ee;
    --mint-2: #effcf7;
    --ink: #0b2118;
    --muted: #5d7268;
    --line: #dcebe4;
    --white: #fff;
    --soft: #f7fbf9;
    --shadow: 0 24px 70px rgba(1,58,36,.12);
    --radius: 28px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body {
    font-family: Cambria, Cochin, Georgia, Times, Times New Roman, serif,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
    color: var(--ink);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden
}

a {
    color: inherit;
    text-decoration: none
}

.container {
    width: min(1180px,92%);
    margin: auto
}

/* Background accents */
.page-glow {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    overflow: hidden
}

    .page-glow::before {
        content: "";
        position: absolute;
        width: 650px;
        height: 650px;
        border-radius: 50%;
        background: radial-gradient(circle,rgba(0,169,107,.12),transparent 68%);
        top: -250px;
        right: -180px
    }

    .page-glow::after {
        content: "";
        position: absolute;
        width: 550px;
        height: 550px;
        border-radius: 50%;
        background: radial-gradient(circle,rgba(22,199,132,.08),transparent 68%);
        top: 700px;
        left: -260px
    }

/* Header */
header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255,255,255,.82);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(220,235,228,.8)
}

.nav {
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px
}

.brand img {
    width: 172px;
    height: auto;
    display: block
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    color: #385247;
    font-size: 14px;
    font-weight: 600
}

    .nav-links a {
        transition: .2s
    }

        .nav-links a:hover {
            color: var(--green-700)
        }

.nav-actions {
    display: flex;
    gap: 10px;
    align-items: center
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 13px 20px;
    border-radius: 18px;
    font-weight: 750;
    font-size: 14px;
    border: 1px solid transparent;
    transition: .25s;
    cursor: pointer
}

.btn-outline {
    border-color: #c9ded4;
    background: #fff;
    color: var(--green-900)
}

    .btn-outline:hover {
        border-color: var(--green);
        transform: translateY(-1px)
    }

.btn-primary {
    background: linear-gradient(135deg,var(--green-900),var(--green));
    color: #fff;
    box-shadow: 0 12px 28px rgba(0,169,107,.22)
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 16px 34px rgba(0,169,107,.28)
    }

/* Hero */
.hero {
    padding: 5px 0 5px;
    position: relative
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.04fr .96fr;
    align-items: center;
    gap: 75px
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 13px;
    border: 1px solid #cce9dd;
    background: var(--mint-2);
    border-radius: 999px;
    color: var(--green-900);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase
}

.eyebrow-dot {
    width: 7px;
    height: 7px;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(0,169,107,.1)
}

h1 {
    font-family: Georgia,"Times New Roman",serif;
    font-size: clamp(36px,6.2vw,36px);
    line-height: .97;
    letter-spacing: -.055em;
    color: var(--green-950);
    margin: 24px 0 25px
}

    h1 span {
        color: var(--green)
    }

.hero-copy {
    font-size: 18px;
    color: var(--muted);
    max-width: 590px
}

.hero-actions {
    display: flex;
    gap: 13px;
    flex-wrap: wrap;
    margin-top: 32px
}

    .hero-actions .btn {
        padding: 15px 20px;
    }

.trust {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 27px;
    color: #71847b;
    font-size: 13px
}

.trust-avatars {
    display: flex
}

    .trust-avatars i {
        width: 28px;
        height: 28px;
        border-radius: 50%;
        border: 2px solid #fff;
        background: linear-gradient(135deg,#b6e9d5,#2cae7d);
        margin-left: -7px
    }

        .trust-avatars i:first-child {
            margin-left: 0;
            background: linear-gradient(135deg,#d7f3e8,#78cfae)
        }

        .trust-avatars i:nth-child(2) {
            background: linear-gradient(135deg,#e0f5ef,#58b997)
        }

        .trust-avatars i:nth-child(3) {
            background: linear-gradient(135deg,#c8eee0,#239a6d)
        }

/* Hero visual — abstract CRM, not a dashboard */
.hero-art {
    position: relative;
    min-height: 460px
}

.art-shell {
    position: absolute;
    inset: 15px 0 0 10px;
    border-radius: 40px;
    background: linear-gradient(145deg,#eefbf6,#f9fcfb 55%,#e3f6ee);
    border: 1px solid #d8eee5;
    box-shadow: var(--shadow);
    overflow: hidden
}

    .art-shell::before {
        content: "";
        position: absolute;
        width: 360px;
        height: 360px;
        border-radius: 50%;
        background: rgba(0,169,107,.09);
        right: -100px;
        top: -130px
    }

    .art-shell::after {
        content: "";
        position: absolute;
        width: 300px;
        height: 300px;
        border-radius: 50%;
        background: rgba(1,58,36,.06);
        left: -170px;
        bottom: -170px
    }

.float-card {
    position: absolute;
    background: rgba(255,255,255,.95);
    border: 1px solid rgba(207,229,219,.95);
    box-shadow: 0 20px 55px rgba(1,58,36,.13);
    border-radius: 24px;
    backdrop-filter: blur(12px)
}

.card-main {
    left: 44px;
    right: 44px;
    top: 72px;
    height: 285px;
    padding: 24px;
    transform: rotate(-1deg)
}

.card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px
}

.card-title {
    font-weight: 850;
    color: var(--green-950)
}

.card-chip {
    font-size: 11px;
    font-weight: 800;
    color: var(--green-900);
    background: var(--mint);
    padding: 6px 10px;
    border-radius: 999px
}

.pipeline {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 10px;
    height: 180px;
    align-items: end
}

.bar {
    border-radius: 12px 12px 5px 5px;
    background: linear-gradient(180deg,var(--green-800),#6ad5ac);
    position: relative;
    min-height: 42px
}

    .bar::after {
        content: "";
        position: absolute;
        left: 10px;
        right: 10px;
        top: 11px;
        height: 4px;
        border-radius: 4px;
        background: rgba(255,255,255,.42)
    }

    .bar:nth-child(1) {
        height: 42%
    }

    .bar:nth-child(2) {
        height: 66%
    }

    .bar:nth-child(3) {
        height: 84%
    }

    .bar:nth-child(4) {
        height: 57%
    }

.axis {
    height: 1px;
    background: #d9e9e2;
    margin-top: -1px
}

.card-small {
    width: 210px;
    padding: 18px;
    top: 332px;
    left: 36px
}

    .card-small.right {
        left: auto;
        right: 36px;
        top: 335px;
        width: 225px
    }

.mini-label {
    font-size: 11px;
    color: #70857a;
    font-weight: 700
}

.mini-value {
    font-size: 28px;
    line-height: 1.1;
    font-weight: 900;
    color: var(--green-950);
    margin-top: 5px
}

.progress {
    height: 7px;
    background: #e4f0eb;
    border-radius: 99px;
    margin-top: 13px;
    overflow: hidden
}

    .progress b {
        display: block;
        height: 100%;
        width: 78%;
        border-radius: 99px;
        background: linear-gradient(90deg,var(--green-900),var(--green-2))
    }

.activity {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 14px
}

.activity-icon {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: var(--mint);
    color: var(--green-900);
    font-weight: 900
}

.activity strong {
    font-size: 12px;
    display: block
}

.activity small {
    font-size: 10px;
    color: #809188
}

.badge {
    position: absolute;
    padding: 13px 17px;
    border-radius: 17px;
    background: var(--green-950);
    color: #fff;
    box-shadow: 0 18px 40px rgba(1,39,25,.22);
    font-size: 12px;
    font-weight: 800
}

    .badge.one {
        right: 10px;
        top: 38px
    }

    .badge.two {
        left: -2px;
        bottom: 65px;
        background: #fff;
        color: var(--green-950);
        border: 1px solid #dcece5
    }

    .badge b {
        display: block;
        font-size: 20px;
        line-height: 1.1;
        margin-top: 2px;
        color: var(--green-2)
    }

/* Stats */
.stats {
    padding: 12px 0 80px
}

.stat-row {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    border: 1px solid var(--line);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 15px 45px rgba(1,58,36,.05)
}

.stat {
    padding: 28px 30px;
    border-right: 1px solid var(--line)
}

    .stat:last-child {
        border-right: 0
    }

    .stat strong {
        display: block;
        font-size: 30px;
        color: var(--green-950);
        letter-spacing: -.04em
    }

    .stat span {
        font-size: 13px;
        color: #71847b
    }

/* Features */
.section {
    padding: 96px 0
}

.section-soft {
    background: var(--soft);
    border-top: 1px solid #edf4f1;
    border-bottom: 1px solid #edf4f1
}

.section-head {
    max-width: 720px;
    margin-bottom: 48px
}

.kicker {
    color: var(--green-700);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .13em;
    text-transform: uppercase
}

h2 {
    font-family: Georgia,"Times New Roman",serif;
    font-size: clamp(40px,4.5vw,62px);
    line-height: 1.02;
    letter-spacing: -.045em;
    color: var(--green-950);
    margin: 12px 0 16px
}

.section-head p {
    color: var(--muted);
    font-size: 17px
}

.features {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px
}

.feature {
    padding: 32px;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 25px;
    transition: .25s
}

    .feature:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 50px rgba(1,58,36,.09);
        border-color: #bfe4d5
    }

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: var(--mint);
    display: grid;
    place-items: center;
    color: var(--green-900);
    font-size: 22px;
    margin-bottom: 22px
}

.feature h3 {
    font-size: 19px;
    margin-bottom: 9px;
    color: var(--green-950)
}

.feature p {
    font-size: 14px;
    color: var(--muted)
}

/* Workflow */
.workflow {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 70px;
    align-items: center
}

.workflow-list {
    display: grid;
    gap: 13px
}

.step {
    display: grid;
    grid-template-columns: 45px 1fr;
    gap: 16px;
    align-items: start;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #fff
}

.step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--green-950);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 13px;
    font-weight: 900
}

.step h3 {
    font-size: 16px;
    margin-bottom: 3px;
    color: var(--green-950)
}

.step p {
    font-size: 13px;
    color: var(--muted)
}

.workflow-visual {
    min-height: 410px;
    border-radius: 34px;
    background: linear-gradient(145deg,var(--green-950),#075d3a);
    position: relative;
    overflow: hidden;
    padding: 35px;
    box-shadow: 0 25px 70px rgba(1,58,36,.22)
}

    .workflow-visual::before {
        content: "";
        position: absolute;
        width: 390px;
        height: 390px;
        border: 1px solid rgba(255,255,255,.11);
        border-radius: 50%;
        right: -120px;
        top: -100px
    }

    .workflow-visual::after {
        content: "";
        position: absolute;
        width: 310px;
        height: 310px;
        border: 1px solid rgba(255,255,255,.08);
        border-radius: 50%;
        left: -170px;
        bottom: -150px
    }

.flow-box {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 14px;
    margin-top: 10px
}

.flow-card {
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.14);
    padding: 19px;
    border-radius: 20px;
    color: #fff;
    backdrop-filter: blur(7px)
}

    .flow-card strong {
        display: block;
        font-size: 15px
    }

    .flow-card span {
        font-size: 12px;
        color: #b9d9cb
    }

.flow-arrow {
    height: 20px;
    text-align: center;
    color: #6be0b3;
    font-size: 18px
}

/* CTA */
.cta {
    padding: 105px 0
}

.cta-box {
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    background: linear-gradient(135deg,var(--green-950),#087b4c);
    padding: 68px;
    text-align: center;
    color: #fff;
    box-shadow: 0 30px 80px rgba(1,58,36,.22)
}

    .cta-box::before, .cta-box::after {
        content: "";
        position: absolute;
        border: 1px solid rgba(255,255,255,.1);
        border-radius: 50%
    }

    .cta-box::before {
        width: 420px;
        height: 420px;
        right: -130px;
        top: -250px
    }

    .cta-box::after {
        width: 300px;
        height: 300px;
        left: -150px;
        bottom: -220px
    }

    .cta-box > * {
        position: relative;
        z-index: 1
    }

    .cta-box h2 {
        color: #fff;
        max-width: 750px;
        margin: 10px auto 15px
    }

    .cta-box p {
        color: #c8e5d9;
        max-width: 610px;
        margin: auto
    }

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
    flex-wrap: wrap
}

.btn-light {
    background: #fff;
    color: var(--green-950)
}

    .btn-light:hover {
        transform: translateY(-2px)
    }

.btn-ghost {
    border-color: rgba(255,255,255,.25);
    color: #fff;
    background: rgba(255,255,255,.08)
}

/* Footer */
footer {
    padding: 4px 0 4px
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 42px
}

.footer-brand img {
    width: 155px;
    margin-bottom: 17px
}

.footer-brand p {
    font-size: 13px;
    color: var(--muted);
    max-width: 300px
}

.footer-col h4 {
    font-size: 13px;
    color: var(--green-950);
    margin-bottom: 15px
}

.footer-col a {
    display: block;
    font-size: 13px;
    color: #6d8178;
    margin: 9px 0
}

    .footer-col a:hover {
        color: var(--green-700)
    }

.footer-bottom {
    padding-top: 12px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: #809188;
    font-size: 12px
}

@media(max-width:980px) {
    .nav-links {
        display: none
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 35px
    }

    .hero-art {
        min-height: 500px
    }

    .hero {
        padding-top: 65px
    }

    .stat-row {
        grid-template-columns: repeat(2,1fr)
    }

    .stat:nth-child(2) {
        border-right: 0
    }

    .stat:nth-child(-n+2) {
        border-bottom: 1px solid var(--line)
    }

    .features {
        grid-template-columns: 1fr 1fr
    }

    .workflow {
        grid-template-columns: 1fr
    }

    .footer-top {
        grid-template-columns: 2fr 1fr 1fr
    }
}

@media(max-width:650px) {
    .nav {
        height: 68px
    }

    .brand img {
        width: 125px
    }

    .nav-actions .btn-outline {
        display: none
    }

    .hero {
        padding: 48px 0 55px
    }

    h1 {
        font-size: 52px
    }

    .hero-copy {
        font-size: 16px
    }

    .hero-art {
        min-height: 450px
    }

    .art-shell {
        inset: 10px 0 0 0
    }

    .card-main {
        left: 18px;
        right: 18px;
        top: 55px;
        height: 245px;
        padding: 18px
    }

    .card-small {
        left: 18px;
        top: 305px;
        width: 170px;
        padding: 14px
    }

        .card-small.right {
            right: 18px;
            top: 305px;
            width: 180px;
            padding: 14px
        }

    .badge.one {
        right: 0;
        top: 22px
    }

    .badge.two {
        left: 0;
        bottom: 38px
    }

    .stat-row {
        grid-template-columns: 1fr
    }

    .stat {
        border-right: 0 !important;
        border-bottom: 1px solid var(--line)
    }

        .stat:last-child {
            border-bottom: 0
        }

    .features {
        grid-template-columns: 1fr
    }

    .section {
        padding: 72px 0
    }

    .workflow-visual {
        min-height: 350px;
        padding: 24px
    }

    .cta {
        padding: 72px 0
    }

    .cta-box {
        padding: 48px 22px;
        border-radius: 28px
    }

    .footer-top {
        grid-template-columns: 1fr 1fr
    }

    .footer-brand {
        grid-column: 1/-1
    }

    .footer-bottom {
        flex-direction: column
    }

    .pipeline {
        height: 150px
    }
}
