﻿/* =====================================================
   RCAM HERO
===================================================== */

.rcam-hero {
    min-height: calc(100vh - 85px);
    display: flex;
    align-items: center;
    background: linear-gradient(135deg,#F7FCFF 0%,#EEF9F3 100%);
    position: relative;
    overflow: hidden;
}

    .rcam-hero::before {
        content: "";
        position: absolute;
        width: 650px;
        height: 650px;
        background: rgba(0,168,107,.08);
        border-radius: 50%;
        top: -220px;
        right: -180px;
    }

    .rcam-hero::after {
        content: "";
        position: absolute;
        width: 450px;
        height: 450px;
        background: rgba(10,61,98,.05);
        border-radius: 50%;
        bottom: -170px;
        left: -140px;
    }

.rcam-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    position: relative;
    z-index: 5;
}

.hero-label {
    display: inline-block;
    background: #E8F8F2;
    color: #00A86B;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 600;
    letter-spacing: .5px;
    margin-bottom: 25px;
}

.rcam-left h1 {
    font-size: 58px;
    line-height: 1.1;
    margin-bottom: 30px;
}

.rcam-left p {
    font-size: 18px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.rcam-right {
    text-align: center;
}

    .rcam-right img {
        width: 100%;
        max-width: 650px;
        animation: heroFloat 6s ease-in-out infinite;
    }

/* =====================================================
   ANIMATION
===================================================== */

@keyframes heroFloat {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width:992px) {

    .rcam-hero {
        padding: 100px 0;
    }

    .rcam-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .rcam-left h1 {
        font-size: 44px;
    }

    .rcam-right {
        margin-top: 50px;
    }
}

@media(max-width:576px) {

    .rcam-left h1 {
        font-size: 34px;
    }

    .hero-buttons {
        flex-direction: column;
    }
}

/*======================================================
PROBLEMS
======================================================*/

.rcam-problems {
    background: #F8FBFD;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 35px;
    margin-top: 60px;
}

.problem-card {
    background: white;
    padding: 40px;
    border-radius: 22px;
    transition: .35s;
    box-shadow: var(--shadow-sm);
    position: relative;
}

    .problem-card:hover {
        transform: translateY(-12px);
        box-shadow: var(--shadow-lg);
    }

.problem-number {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,#00A86B,#0A3D62);
    color: white;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
}

.problem-card h3 {
    margin-bottom: 20px;
    font-size: 24px;
}

.problem-card p {
    line-height: 1.8;
    color: #555;
}
/*=================================================
PROBLEM TODAY
=================================================*/

.problem-section {
    background: #F8FBFD;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
    margin-top: 60px;
}

.problem-card {
    background: white;
    border-radius: 24px;
    padding: 35px;
    transition: .35s;
    box-shadow: var(--shadow-sm);
    height: 100%;
}

    .problem-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-lg);
    }

.problem-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    background: linear-gradient(135deg,#00A86B,#0A3D62);
    color: white;
    margin-bottom: 25px;
}

.problem-card h3 {
    margin-bottom: 18px;
    font-size: 22px;
}

.problem-card p {
    line-height: 1.8;
    color: #555;
}
/*=========================================
WORKFLOW
=========================================*/

.workflow-section {
    background: #ffffff;
}

.workflow-wrapper {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 35px;
    margin-top: 60px;
}

.workflow-column {
    background: #f8fbfd;
    border-radius: 24px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
}

.workflow-heading {
    color: #fff;
    padding: 14px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 600;
    letter-spacing: .5px;
}

    .workflow-heading.input {
        background: #00A86B;
    }

    .workflow-heading.process {
        background: #0A3D62;
    }

    .workflow-heading.output {
        background: #2563EB;
    }

.workflow-card {
    background: #fff;
    border-radius: 18px;
    padding: 25px;
    margin-bottom: 25px;
    transition: .35s;
    box-shadow: var(--shadow-sm);
}

    .workflow-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
    }

.workflow-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg,#00A86B,#0A3D62);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 18px;
}

.workflow-card h4 {
    margin-bottom: 15px;
    font-size: 20px;
}

.workflow-card p {
    line-height: 1.8;
    color: #555;
}
/*==========================================
CORE DESIGN
==========================================*/

.core-design-section {
    background: #F8FBFD;
}

.architecture {
    display: grid;
    grid-template-columns: repeat(7,1fr);
    align-items: center;
    gap: 20px;
    margin-top: 60px;
}

.architecture-column {
    text-align: center;
}

    .architecture-column h3 {
        margin-bottom: 25px;
        color: #0A3D62;
    }

.architecture-box {
    padding: 18px;
    margin-bottom: 15px;
    background: #fff;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: .35s;
}

    .architecture-box:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-lg);
    }

    .architecture-box.success {
        background: linear-gradient(135deg,#00A86B,#0A3D62);
        color: #fff;
        font-weight: 600;
    }

.architecture-arrow {
    font-size: 42px;
    color: #00A86B;
    text-align: center;
}

.core-features {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
    margin-top: 70px;
}

.core-card {
    background: #fff;
    padding: 35px;
    border-radius: 22px;
    box-shadow: var(--shadow-sm);
    transition: .35s;
}

    .core-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
    }

    .core-card h4 {
        margin-bottom: 20px;
        color: #0A3D62;
    }

    .core-card p {
        line-height: 1.8;
    }
/*=========================================
STANDALONE STEPS
=========================================*/

.sa-steps-section {
    background: #ffffff;
}

.timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    overflow-x: auto;
    margin-top: 70px;
    padding-bottom: 20px;
}

.timeline-item {
    min-width: 220px;
    text-align: center;
}

.timeline-number {
    width: 75px;
    height: 75px;
    margin: auto;
    margin-bottom: 25px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg,#00A86B,#0A3D62);
}

.timeline-item h4 {
    margin-bottom: 15px;
}

.timeline-item p {
    line-height: 1.8;
}

.timeline-line {
    flex: 1;
    height: 4px;
    background: #00A86B;
    margin-top: 36px;
    min-width: 70px;
}
/*==========================================
CFS
==========================================*/

.cfs-section {
    background: #F8FBFD;
}

.cfs-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
    margin-top: 60px;
}

.cfs-card {
    background: white;
    padding: 35px;
    border-radius: 22px;
    box-shadow: var(--shadow-sm);
    transition: .35s;
}

    .cfs-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
    }

.step-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg,#00A86B,#0A3D62);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 25px;
}

.cfs-card h4 {
    margin-bottom: 20px;
}

.cfs-card p {
    line-height: 1.8;
}
/*==========================================
FEATURES
==========================================*/

.features-section {
    background: #ffffff;
}

.feature-columns {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 35px;
    margin-top: 60px;
}

.feature-column {
    background: #f8fbfd;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: .35s;
}

    .feature-column:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
    }

.feature-header {
    background: linear-gradient(135deg,#00A86B,#0A3D62);
    color: white;
    padding: 22px;
    text-align: center;
    font-size: 22px;
    font-weight: 600;
}

.feature-column ul {
    list-style: none;
    margin: 0;
    padding: 30px;
}

.feature-column li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 18px;
    line-height: 1.7;
}

    .feature-column li::before {
        content: "✔";
        position: absolute;
        left: 0;
        color: #00A86B;
        font-weight: 700;
    }


/*==========================================
USP
==========================================*/

.usp-section {
    background: #F8FBFD;
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 35px;
    margin-top: 60px;
}

.usp-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.usp-title {
    background: linear-gradient(135deg,#0A3D62,#00A86B);
    color: white;
    padding: 20px;
    font-size: 22px;
    font-weight: 600;
    text-align: center;
}

.comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.old {
    background: #FFF5F5;
    padding: 30px;
}

.new {
    background: #F3FFF8;
    padding: 30px;
}

.old h5 {
    color: #C62828;
    margin-bottom: 20px;
}

.new h5 {
    color: #00A86B;
    margin-bottom: 20px;
}

.old ul,
.new ul {
    padding-left: 20px;
}

.old li,
.new li {
    margin-bottom: 15px;
    line-height: 1.7;
}
/*==========================================
VERSIONS
==========================================*/

.versions-section {
    background: white;
}

.version-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
    margin-top: 60px;
}

.version-card {
    padding: 35px;
    border-radius: 22px;
    background: #f8fbfd;
    transition: .35s;
    box-shadow: var(--shadow-sm);
}

    .version-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
    }

    .version-card h3 {
        margin-bottom: 18px;
        color: #0A3D62;
    }

/*==========================================
SUCCESS
==========================================*/

.success-section {
    background: #F8FBFD;
}

.success-stats {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
    margin-top: 60px;
}

.success-card {
    background: white;
    padding: 40px;
    border-radius: 22px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

    .success-card h3 {
        color: #00A86B;
        font-size: 42px;
        margin-bottom: 10px;
    }

.case-study {
    margin-top: 70px;
    background: white;
    padding: 45px;
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
}

    .case-study h3 {
        margin-bottom: 30px;
    }

    .case-study ul {
        columns: 2;
    }

    .case-study li {
        margin-bottom: 15px;
    }
/*==========================================
RCAM TESTIMONIALS
==========================================*/

.rcam-testimonials {
    background: white;
}

.quote {
    font-size: 70px;
    color: #00A86B;
    line-height: 1;
    margin-bottom: 20px;
}

/*==========================================
DEMO
==========================================*/

.rcam-demo {
    background: linear-gradient(135deg,#0A3D62,#00A86B);
    color: white;
}

.demo-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.demo-content h2 {
    color: white;
    font-size: 48px;
    margin: 20px 0;
}

.demo-content p {
    color: #f5f5f5;
    line-height: 1.9;
    margin-bottom: 35px;
}

.demo-image {
    text-align: center;
}

    .demo-image img {
        width: 100%;
        max-width: 520px;
    }
/*=====================================================
RCAM SECTION NAVIGATION
======================================================*/

.rcam-section-nav {
    position: sticky;
    top: 80px;
    z-index: 999;
    background: #ffffff;
    border-bottom: 1px solid #e9ecef;
    box-shadow: 0 5px 15px rgba(0,0,0,.05);
}

    .rcam-section-nav ul {
        margin: 0;
        padding: 0;
        list-style: none;
        display: flex;
        overflow-x: auto;
        white-space: nowrap;
        scrollbar-width: none;
    }

        .rcam-section-nav ul::-webkit-scrollbar {
            display: none;
        }

    .rcam-section-nav li {
        flex-shrink: 0;
    }

    .rcam-section-nav a {
        display: block;
        padding: 18px 24px;
        color: #444;
        font-weight: 600;
        text-decoration: none;
        transition: .3s;
        border-bottom: 3px solid transparent;
    }

        .rcam-section-nav a:hover {
            color: var(--primary-green);
        }

        .rcam-section-nav a.active {
            color: var(--primary-green);
            border-bottom: 3px solid var(--primary-green);
        }