
.page-hero {
    background: linear-gradient(135deg, #18301e, #2f5d3a);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    text-align: center;
    padding: 0 2rem;
}

    .page-hero h1 {
        font-size: 3.5rem;
        margin: 0;
        color: white;
    }

.content-section,
.workflow-section,
.comparison-section,
.setup-section,
.deployment-section,
.future-section {
    padding: 5rem 2rem;
}

.workflow-section {
    background: #f7faf7;
}

.workflow-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.workflow-card {
    width: 700px;
    max-width: 95%;
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
    text-align: center;
}

.workflow-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.workflow-arrow {
    font-size: 3rem;
    color: #2f5d3a;
    font-weight: bold;
}

.workflow-vertical {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.workflow-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    border: 1px solid #dce4dc;
}

.workflow-arrow-vertical {
    font-size: 3rem;
    color: #2f5d3a;
    font-weight: bold;
    line-height: 1;
}

.comparison-section {
    background: white;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat( auto-fit, minmax(320px, 1fr) );
    gap: 2rem;
    margin-top: 3rem;
}

.comparison-card {
    background: #f7faf7;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba( 0, 0, 0, .08 );
}

.comparison-card h3 {
    margin-bottom: 1rem;
}

.comparison-card ul {
    list-style: none;
    padding: 0;
}

.comparison-card li {
    padding: .75rem 0;
    border-bottom: 1px solid #e5e5e5;
}

.comparison-card.featured {
    background: linear-gradient( 135deg, #2f5d3a, #3f7448 );
    color: white;
}

.comparison-card.featured li {
    border-color: rgba( 255, 255, 255, .2 );
}

.deployment-section {
    padding: 6rem 2rem;
}

.deployment-showcase {
    max-width: 850px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 12px 35px rgba(0,0,0,.08);
}

.deployment-badge-wrapper {
    position: relative;
    width: fit-content;
    margin: 0 auto 2rem auto;
}

.deployment-badge {
    background: #2f5d3a;
    color: white;
    padding: .6rem 1.2rem;
    border-radius: 999px;
    font-weight: 600;
}

.deployment-logo {
    width: 90px;
    position: absolute;
    left: 136px;
    top: -68px;
    z-index: 10;
}

.deployment-showcase h2 {
    margin-bottom: 1rem;
}

.deployment-showcase p {
    max-width: 650px;
    margin: 0 auto 2rem auto;
    line-height: 1.8;
}

.deployment-highlights {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.highlight {
    background: #eef5ef;
    padding: .8rem 1.2rem;
    border-radius: 999px;
    font-weight: 600;
}

.deployment-button {
    display: inline-block;
    background: #2f5d3a;
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    transition: .2s;
}

.deployment-button:hover {
    transform: translateY(-2px);
    background: #23462c;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
    text-align: center;
    font-weight: 600;
}

.pilot-section {
    background: linear-gradient( 135deg, #18301e, #2f5d3a );
    color: white;
    text-align: center;
    padding: 5rem 2rem;
}

.pilot-section h2 {
    color: white;
}

.pilot-section p {
    max-width: 700px;
    margin: 1rem auto 2rem;
    color: rgba(255,255,255,.9);
}

.pilot-section .btn {
    background: white;
    color: #18301e;
}

