/* 
LynOps Resource Engine
Calculator Styling
*/


/* Main calculator cards */

.lynops-calculator,
.lynops-roi-calculator,
.lynops-health-calculator {

    max-width: 650px;

    margin: 100px auto;

    padding: 40px;

    background: #ffffff;

    border-radius: 16px;

    box-shadow: 0 15px 40px rgba(0,0,0,0.08);

}


/* Headings */

.lynops-calculator h2,
.lynops-roi-calculator h2,
.lynops-health-calculator h2 {

    color: #1E293B;

    margin-bottom: 12px;

    font-size: 28px;

}


/* Description text */

.lynops-calculator p,
.lynops-roi-calculator p,
.lynops-health-calculator p {

    line-height: 1.7;

    color: #475569;

}


/* Form spacing */

.lynops-calculator label,
.lynops-roi-calculator label,
.lynops-health-calculator label {

    display: block;

    margin-top: 20px;

    margin-bottom: 8px;

    font-weight: 600;

    color: #1E293B;

}


/* Inputs */

.lynops-calculator input,
.lynops-roi-calculator input,
.lynops-health-calculator input {

    width: 100%;

    padding: 14px;

    border: 1px solid #d6d3d1;

    border-radius: 8px;

    font-size: 16px;

    box-sizing: border-box;

}


/* Buttons */

#lynops-calculate,
#lynops-roi-submit,
#lynops-health-submit {


    margin-top: 25px;

    background: #8c756a;

    color: #ffffff;

    border: none;

    padding: 15px 30px;

    border-radius: 8px;

    cursor: pointer;

    font-size: 16px;

    font-weight: 600;

    transition: 0.3s ease;

}


#lynops-calculate:hover,
#lynops-roi-submit:hover,
#lynops-health-submit:hover {

    opacity: 0.85;

}


/* Results */

#lynops-results,
#lynops-roi-result,
#lynops-health-result {


    margin-top: 35px;

    padding: 25px;

    background: #f7f5f2;

    border-radius: 12px;

}


/* Result headings */

#lynops-results h3,
#lynops-roi-result h3,
#lynops-health-result h3 {

    color: #1E293B;

    margin-bottom: 15px;

}


/* Mobile */

@media (max-width: 600px) {


    .lynops-calculator,
    .lynops-roi-calculator,
    .lynops-health-calculator {

        padding: 25px;

        margin: 25px 15px;

    }


}
/* ROI Calculator Section Spacing */

.lynops-roi-calculator h3 {
    margin-top: 40px;
    margin-bottom: 20px;
}

.lynops-roi-calculator h3:first-of-type {
    margin-top: 10px;
}


/* Space before the Lyn Ops section */

.lynops-roi-cta {
    margin-top: 40px;
}
/* ---------------------------------------------------------
   Operations Opportunity Results
--------------------------------------------------------- */

.lynops-results-card {
    color: #1E293B;
}


/* Hero result */

.lynops-opportunity-hero {
    text-align: center;
    padding: 10px 10px 30px;
}

.lynops-opportunity-hero h3 {
    margin-bottom: 15px;
}

.lynops-main-result {
    font-size: 46px;
    font-weight: 700;
    line-height: 1.1;
    color: #8c756a;
    margin: 10px 0 15px;
}


/* Result sections */

.lynops-result-section {
    margin-top: 35px;
}

.lynops-result-section h4 {
    margin-bottom: 12px;
    color: #1E293B;
    font-size: 20px;
}


/* Opportunity cards */

.lynops-opportunity-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 20px;
}

.lynops-opportunity-card {
    padding: 22px;
    background: #ffffff;
    border: 1px solid #e5e1dd;
    border-radius: 12px;
}

.lynops-opportunity-card h4 {
    font-size: 17px;
    margin-bottom: 15px;
}

.lynops-card-value {
    font-size: 28px;
    font-weight: 700;
    color: #8c756a;
    margin-bottom: 5px;
}

.lynops-card-label {
    display: block;
    font-size: 13px;
    color: #64748B;
    margin-bottom: 12px;
}


/* Recovery scenarios */

.lynops-recovery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 20px;
}

.lynops-recovery-card {
    padding: 18px 10px;
    text-align: center;
    background: #ffffff;
    border: 1px solid #e5e1dd;
    border-radius: 10px;
}

.lynops-recovery-card span {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #64748B;
    margin-bottom: 8px;
}

.lynops-recovery-card strong {
    display: block;
    font-size: 18px;
    color: #1E293B;
}


/* Three-year opportunity */

.lynops-three-year-section {
    margin-top: 45px;
    padding-top: 30px;
    border-top: 1px solid #e5e1dd;
}

.lynops-three-year-result {
    margin-top: 20px;
    font-size: 34px;
    font-weight: 700;
    color: #8c756a;
}


/* What this could mean */

.lynops-meaning-section {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #e5e1dd;
}


/* Disclaimer */

.lynops-result-disclaimer {
    margin-top: 35px;
    padding-top: 20px;
    border-top: 1px solid #e5e1dd;
    font-size: 13px;
    color: #64748B;
}


/* Mobile results */

@media (max-width: 600px) {

    .lynops-main-result {
        font-size: 38px;
    }

    .lynops-opportunity-grid {
        grid-template-columns: 1fr;
    }

    .lynops-recovery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lynops-three-year-result {
        font-size: 30px;
    }

}