

/* Section Tag */
.section-tag {
    color: #ff3b30;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.section-heading {
    font-size: 46px;
    font-weight: 600;
    color: #002964;
    margin: 15px 0;
    line-height: 1.3;
}

.section-heading span {
    color: #ff3b30;
}


/* ====================================
Refrigerator Freezer Banner
====================================*/
.freezer-banner-section {
    min-height: 700px;
    padding: 80px 0;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 85% 50%,
            rgba(0, 41, 100, .10),
            transparent 32%
        ),
        linear-gradient(135deg, #ffffff 0%, #f5f9ff 100%);
}


/* =========================
   HERO ROW
========================= */

.freezer-banner-section .hero-row {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
    gap: 40px;
}


/* =========================
   LEFT CONTENT
========================= */

.hero-content {
    position: relative;
    z-index: 5;
}

.banner-sub-heading {
    display: inline-block;
    color: #ff3b30;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.hero-content h1 {
    color: #002964;
    font-size: 52px;
    line-height: 1.12;
    font-weight: 600;
    margin: 0 0 25px;
}

.hero-content h1 span {
    color: #ff3b30;
}

.hero-content p {
    max-width: 590px;
    color: #64748b;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 32px;
}


/* =========================
   BUTTONS
========================= */

.hero-buttons {
    display: flex;
    gap: 14px;
    margin-bottom: 35px;
}

.hero-buttons a {
    padding: 14px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: .3s ease;
}

.hero-buttons .primary {
    color: #fff;
    background: #ff3b30;
}

.hero-buttons .primary:hover {
    background: #e72d24;
    transform: translateY(-3px);
}

.hero-buttons .secondary {
    color: #ff3b30;
    background: #fff;
    border: 1px solid #ff3b30;
}

.hero-buttons .secondary:hover {
    color: #fff;
    background: #ff3b30;
    transform: translateY(-3px);
}


/* =========================
   FEATURES
========================= */

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 11px 15px;
    background: rgba(255, 255, 255, .9);
    border: 1px solid #e3eaf4;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 41, 100, .07);
    transition: .3s ease;
}

.hero-feature:hover {
    transform: translateY(-4px);
    border-color: #ff3b30;
}

.hero-feature i {
    color: #ff3b30;
    font-size: 14px;
}

.hero-feature span {
    color: #002964;
    font-size: 13px;
    font-weight: 500;
}


/* =========================
   RIGHT IMAGE
========================= */

.hero-image {
    min-height: 540px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* Big background glow */

.hero-image-glow {
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(0, 41, 100, .16) 0%,
            rgba(0, 41, 100, .07) 40%,
            transparent 70%
        );
}


/* Product */

.hero-image img {
    position: relative;
    z-index: 2;
    width: 115%;
    max-width: 580px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(
        0 30px 35px rgba(0, 41, 100, .20)
    );
    transition: .5s ease;
}

.hero-image:hover img {
    transform: translateY(-8px) scale(1.02);
}


/* =========================
   FLOATING CARDS
========================= */

.floating-card {
    position: absolute;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, .94);
    border: 1px solid rgba(0, 41, 100, .08);
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0, 41, 100, .12);
    color: #002964;
    font-size: 12px;
}

.floating-card i {
    color: #ff3b30;
    font-size: 18px;
}

.floating-card strong {
    font-size: 13px;
}

.card-one {
    top: 100px;
    right: 15px;
}

.card-two {
    bottom: 100px;
    left: 10px;
}


/* =========================
   TABLET
========================= */

@media (max-width: 991px) {

    .freezer-banner-section {
        padding: 70px 0;
    }

    .freezer-banner-section .hero-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hero-content {
        order: 1;
        text-align: center;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-image {
        order: 2;
        min-height: 450px;
    }

    .hero-image img {
        width: 90%;
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

    .freezer-banner-section {
        padding: 55px 20px;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .hero-content p {
        font-size: 15px;
        line-height: 1.7;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons a {
        width: 100%;
        text-align: center;
    }

    .hero-features {
        flex-direction: column;
    }

    .hero-feature {
        width: 100%;
        justify-content: center;
    }

    .hero-image {
        min-height: 330px;
    }

    .hero-image img {
        width: 110%;
    }

    .hero-image-glow {
        width: 330px;
        height: 330px;
    }

    .floating-card {
        transform: scale(.85);
    }

    .card-one {
        top: 20px;
        right: -5px;
    }

    .card-two {
        bottom: 20px;
        left: -5px;
    }
}

/*====================================
QuickCheck Display Section Start
====================================*/

.quickcheck-display-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: #f4f8ff;
}

/* Container */

.quickcheck-display-section .container {
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

/* Main Card */

.quickcheck-card {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: stretch;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #dfe7f3;
    border-radius: 28px;
    box-shadow: 0 25px 65px rgba(6, 46, 130, 0.1);
}

/* Left Content */

.quickcheck-content {
    padding: 55px;
    box-sizing: border-box;
}

/* Heading */

.quickcheck-content .section-heading {
    margin: 0 0 35px;
    color: #002964;
    font-size: 46px;
    font-weight: 600;
    line-height: 1.3;
    text-align: left;
}

.quickcheck-content .section-heading span {
    color: #ff3b30;
}

/* Features Grid */

.quickcheck-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

/* Feature */

.quickcheck-feature {
    position: relative;
    display: flex;
    min-height: 68px;
    padding: 16px 16px 16px 40px;
    align-items: center;
    color: #646f88;
    background: #f8fbff;
    border: 1px solid #dfe7f3;
    border-radius: 11px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    box-sizing: border-box;
    transition: 0.3s ease;
}

/* Feature Dot */

.quickcheck-feature::before {
    content: "";
    position: absolute;
    left: 17px;
    width: 8px;
    height: 8px;
    background: #ff3b30;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(255, 59, 48, 0.1);
}

.quickcheck-feature:hover {
    color: #002964;
    background: #ffffff;
    border-color: #002964;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(6, 46, 130, 0.08);
}

/* Buttons */

.quickcheck-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 35px;
}

.quickcheck-buttons a {
    display: inline-flex;
    min-height: 50px;
    padding: 0 25px;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

/* Quote Button */

.quote-button {
    color: #ffffff;
    background: #ff3b30;
    border: 1px solid #ff3b30;
}

.quote-button:hover {
    color: #ffffff;
    background: #002964;
    border-color: #002964;
    transform: translateY(-3px);
}

/* Purchase Button */

.purchase-button {
    color: #002964;
    background: #ffffff;
    border: 1px solid #002964;
}

.purchase-button:hover {
    color: #ffffff;
    background: #002964;
    transform: translateY(-3px);
}

/* Right Visual */

.quickcheck-visual {
    position: relative;
    display: flex;
    min-height: 650px;
    padding: 45px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(
        145deg,
        #002964 0%,
        #0a468f 100%
    );
    box-sizing: border-box;
}

/* Decorative Circles */

.quickcheck-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.quickcheck-visual .circle-one {
    top: -110px;
    right: -100px;
    width: 300px;
    height: 300px;
}

.quickcheck-visual .circle-two {
    bottom: -140px;
    left: -110px;
    width: 360px;
    height: 360px;
}

/* Monitor Image */

.quickcheck-visual img {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    max-width: 500px;
    max-height: 460px;
    object-fit: contain;
    filter: drop-shadow(
        0 28px 38px rgba(0, 0, 0, 0.3)
    );
    transition: 0.4s ease;
}

.quickcheck-visual:hover img {
    transform: translateY(-8px) scale(1.02);
}

/* Tablet */

@media (max-width: 991px) {
    .quickcheck-display-section {
        padding: 80px 0;
    }

    .quickcheck-display-section .container {
        padding: 0 25px;
    }

    .quickcheck-card {
        grid-template-columns: 1fr;
    }

    .quickcheck-content .section-heading {
        font-size: 40px;
    }

    .quickcheck-visual {
        min-height: 500px;
    }
}

/* Mobile */

@media (max-width: 600px) {
    .quickcheck-display-section {
        padding: 60px 0;
    }

    .quickcheck-display-section .container {
        padding: 0 20px;
    }

    .quickcheck-card {
        border-radius: 20px;
    }

    .quickcheck-content {
        padding: 35px 22px;
    }

    .quickcheck-content .section-heading {
        margin-bottom: 25px;
        font-size: 32px;
    }

    .quickcheck-features {
        grid-template-columns: 1fr;
    }

    .quickcheck-feature {
        min-height: 62px;
        font-size: 14px;
    }

    .quickcheck-buttons {
        flex-direction: column;
    }

    .quickcheck-buttons a {
        width: 100%;
        box-sizing: border-box;
    }

    .quickcheck-visual {
        min-height: 390px;
        padding: 30px 20px;
    }

    .quickcheck-visual img {
        max-height: 320px;
    }
}

/* Small Mobile */

@media (max-width: 400px) {
    .quickcheck-display-section .container {
        padding: 0 15px;
    }

    .quickcheck-content .section-heading {
        font-size: 28px;
    }
}

/*====================================
QuickCheck Display Section End
====================================*/
/*====================================
Cleanroom Users Section Start
====================================*/

.cleanroom-users-section {
    position: relative;
    overflow: hidden;
    padding: 90px 0;
    background: linear-gradient(135deg, #f8fbff 0%, #eef5ff 100%);
}

.cleanroom-users-section .container {
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.cleanroom-users-wrapper {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 80px;
}

/* Content */

.cleanroom-users-content {
    position: relative;
    z-index: 2;
}

.cleanroom-users-section .section-tag {
    display: block;
    margin-bottom: 14px;
    color: #ff3b30;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.cleanroom-users-section .section-heading {
    max-width: 540px;
    margin: 0 0 35px;
    color: #002964;
    font-size: 46px;
    font-weight: 600;
    line-height: 1.3;
}

.cleanroom-users-section .section-heading span {
    display: block;
    color: #ff3b30;
}

/* Industries Grid */

.cleanroom-industries {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.cleanroom-industry {
    position: relative;
    padding: 17px 20px 17px 45px;
    color: #002964;
    background: #ffffff;
    border: 1px solid #e1e9f5;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 41, 100, 0.05);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    transition: 0.3s ease;
}

.cleanroom-industry::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 20px;
    width: 9px;
    height: 9px;
    border: 3px solid #ff3b30;
    border-radius: 50%;
    transform: translateY(-50%);
}

.cleanroom-industry:hover {
    color: #ffffff;
    background: #002964;
    border-color: #002964;
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 41, 100, 0.14);
}

/* Monitor Visual */

.cleanroom-monitor-visual {
    position: relative;
    display: flex;
    min-height: 500px;
    align-items: center;
    justify-content: center;
}

.monitor-glow {
    position: absolute;
    width: 480px;
    height: 480px;
    background: rgba(0, 41, 100, 0.08);
    border-radius: 50%;
    filter: blur(12px);
}

.cleanroom-monitor-image {
    position: relative;
    z-index: 2;
    display: block;
    width: 580px;
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 25px 30px rgba(0, 41, 100, 0.16));
    transition: 0.4s ease;
}

.cleanroom-monitor-visual:hover .cleanroom-monitor-image {
    transform: translateY(-8px);
}

/* Status Label */

.monitor-status {
    position: absolute;
    right: 5px;
    bottom: 45px;
    z-index: 3;
    display: flex;
    padding: 13px 18px;
    align-items: center;
    gap: 10px;
    color: #002964;
    background: #ffffff;
    border: 1px solid #e1e9f5;
    border-radius: 8px;
    box-shadow: 0 12px 35px rgba(0, 41, 100, 0.12);
    font-size: 14px;
    font-weight: 600;
}

.monitor-status span {
    width: 10px;
    height: 10px;
    background: #23b26d;
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(35, 178, 109, 0.13);
}

/* Tablet */

@media (max-width: 991px) {
    .cleanroom-users-section {
        padding: 80px 0;
    }

    .cleanroom-users-section .container {
        padding: 0 25px;
    }

    .cleanroom-users-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .cleanroom-users-section .section-heading {
        font-size: 40px;
    }

    .cleanroom-monitor-visual {
        min-height: 420px;
    }

    .cleanroom-monitor-image {
        width: 560px;
    }

    .monitor-status {
        right: 10%;
        bottom: 15px;
    }
}

/* Mobile */

@media (max-width: 600px) {
    .cleanroom-users-section {
        padding: 60px 0;
    }

    .cleanroom-users-section .container {
        padding: 0 20px;
    }

    .cleanroom-users-wrapper {
        gap: 40px;
    }

    .cleanroom-users-section .section-tag {
        font-size: 13px;
    }

    .cleanroom-users-section .section-heading {
        margin-bottom: 28px;
        font-size: 32px;
    }

    .cleanroom-industries {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .cleanroom-industry {
        padding: 15px 18px 15px 43px;
        font-size: 14px;
    }

    .cleanroom-monitor-visual {
        min-height: 320px;
    }

    .monitor-glow {
        width: 290px;
        height: 290px;
    }

    .monitor-status {
        right: 0;
        bottom: 0;
        padding: 11px 14px;
        font-size: 12px;
    }
}

/*====================================
Cleanroom Users Section End
====================================*/
/*====================================
Protection Compliance Section Start
====================================*/

.protection-compliance-section {
    position: relative;
    overflow: hidden;
    padding: 90px 0;
    background: #ffffff;
}

.protection-compliance-section::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -180px;
    width: 450px;
    height: 450px;
    background: rgba(0, 41, 100, 0.04);
    border-radius: 50%;
}

.protection-compliance-section .container {
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.protection-compliance-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    align-items: center;
    gap: 70px;
}

/* Content */

.protection-compliance-section .section-tag {
    display: block;
    margin-bottom: 14px;
    color: #ff3b30;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.protection-compliance-section .section-heading {
    margin: 0 0 28px;
    color: #002964;
    font-size: 46px;
    font-weight: 600;
    line-height: 1.3;
}

.protection-compliance-section .section-heading span {
    color: #ff3b30;
}

.protection-compliance-content p {
    margin: 0 0 18px;
    color: #646f88;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
}

/* Highlight Message */

.monitor-highlight {
    position: relative;
    margin: 28px 0;
    padding: 20px 24px 20px 28px;
    color: #002964;
    background: #f3f7ff;
    border-left: 4px solid #ff3b30;
    border-radius: 0 10px 10px 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.6;
}

.installation-note {
    padding-top: 20px;
    border-top: 1px solid #dfe7f3;
    font-weight: 500 !important;
}

/* Display Card */

.quickcheck-display-card {
    position: relative;
    padding: 25px;
    background: linear-gradient(145deg, #002964 0%, #063d88 100%);
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0, 41, 100, 0.18);
}

.display-card-label {
    margin-bottom: 20px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}

.display-image-wrapper {
    position: relative;
    display: flex;
    min-height: 360px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #f8fbff;
    border-radius: 16px;
}

.display-glow {
    position: absolute;
    width: 290px;
    height: 290px;
    background: rgba(0, 41, 100, 0.08);
    border-radius: 50%;
    filter: blur(12px);
}

.display-image-wrapper img {
    position: relative;
    z-index: 2;
    display: block;
    width: 440px;
    max-width: 92%;
    height: auto;
    transition: 0.4s ease;
}

.quickcheck-display-card:hover .display-image-wrapper img {
    transform: scale(1.03);
}

/* Information Boxes */

.display-information {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 20px;
}

.display-info-item {
    padding: 14px 8px;
    text-align: center;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;
}

.display-info-item strong {
    display: block;
    margin-bottom: 5px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
}

.display-info-item span {
    display: block;
    color: #d8e5f8;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.4;
}

/* Tablet Responsive */

@media (max-width: 991px) {
    .protection-compliance-section {
        padding: 80px 0;
    }

    .protection-compliance-section .container {
        padding: 0 25px;
    }

    .protection-compliance-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .protection-compliance-section .section-heading {
        font-size: 40px;
    }

    .quickcheck-display-card {
        width: 100%;
        max-width: 650px;
        margin: 0 auto;
        box-sizing: border-box;
    }
}

/* Mobile Responsive */

@media (max-width: 600px) {
    .protection-compliance-section {
        padding: 60px 0;
    }

    .protection-compliance-section .container {
        padding: 0 20px;
    }

    .protection-compliance-wrapper {
        gap: 40px;
    }

    .protection-compliance-section .section-tag {
        font-size: 13px;
    }

    .protection-compliance-section .section-heading {
        margin-bottom: 22px;
        font-size: 32px;
    }

    .protection-compliance-content p {
        font-size: 15px;
        line-height: 1.8;
    }

    .monitor-highlight {
        margin: 24px 0;
        padding: 17px 18px;
        font-size: 15px;
    }

    .quickcheck-display-card {
        padding: 15px;
        border-radius: 16px;
    }

    .display-image-wrapper {
        min-height: 260px;
        border-radius: 12px;
    }

    .display-information {
        grid-template-columns: 1fr;
    }

    .display-info-item {
        padding: 12px;
    }
}

/*====================================
Protection Compliance Section End
====================================*/
/*====================================
Monitor Alarm Section Start
====================================*/

.monitor-alarm-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fbff 0%, #eef5ff 100%);
}

.monitor-alarm-section .container {
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.monitor-alarm-wrapper {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;
    gap: 85px;
}

/* Image Area */

.monitor-alarm-visual {
    position: relative;
    min-height: 590px;
}

.visual-shape {
    position: absolute;
    top: 15px;
    left: 15px;
    width: calc(100% - 15px);
    height: calc(100% - 15px);
    background: #002964;
    border-radius: 30px 100px 30px 100px;
    transform: rotate(-4deg);
}

.cleanroom-image-card {
    position: absolute;
    inset: 0 20px 25px 0;
    z-index: 2;
    padding: 12px;
    background: #ffffff;
    border-radius: 24px 90px 24px 90px;
    box-shadow: 0 25px 60px rgba(0, 41, 100, 0.18);
}

.cleanroom-image-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px 78px 16px 78px;
}

.image-status {
    position: absolute;
    right: -25px;
    bottom: 35px;
    display: flex;
    padding: 14px 20px;
    align-items: center;
    gap: 11px;
    color: #002964;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 12px 35px rgba(0, 41, 100, 0.15);
    font-size: 14px;
    font-weight: 600;
}

.status-dot {
    width: 10px;
    height: 10px;
    background: #24b26b;
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(36, 178, 107, 0.15);
}

/* Heading */

.monitor-alarm-section .section-tag {
    display: block;
    margin-bottom: 14px;
    color: #ff3b30;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.monitor-alarm-section .section-heading {
    max-width: 620px;
    margin: 0 0 38px;
    color: #002964;
    font-size: 46px;
    font-weight: 600;
    line-height: 1.3;
}

.monitor-alarm-section .section-heading span {
    color: #ff3b30;
}

/* Content Timeline */

.monitor-content-list {
    position: relative;
    display: grid;
    gap: 18px;
}

.monitor-content-list::before {
    content: "";
    position: absolute;
    top: 30px;
    bottom: 30px;
    left: 27px;
    width: 1px;
    background: #d8e3f3;
}

.monitor-content-item {
    position: relative;
    display: grid;
    grid-template-columns: 55px 1fr;
    gap: 20px;
    padding: 22px;
    background: #ffffff;
    border: 1px solid #e1e9f5;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 41, 100, 0.05);
    transition: 0.35s ease;
}

.monitor-content-item:hover {
    border-color: rgba(255, 59, 48, 0.4);
    transform: translateX(8px);
    box-shadow: 0 16px 40px rgba(0, 41, 100, 0.09);
}

.item-number {
    position: relative;
    z-index: 2;
    display: flex;
    width: 55px;
    height: 55px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #002964;
    border: 5px solid #eef5ff;
    border-radius: 50%;
    box-sizing: border-box;
    font-size: 13px;
    font-weight: 700;
    transition: 0.3s ease;
}

.monitor-content-item:hover .item-number {
    background: #ff3b30;
}

.monitor-content-item p {
    margin: 0;
    color: #646f88;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
}

/* Tablet Responsive */

@media (max-width: 991px) {
    .monitor-alarm-section {
        padding: 80px 0;
    }

    .monitor-alarm-section .container {
        padding: 0 25px;
    }

    .monitor-alarm-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .monitor-alarm-content {
        order: 1;
    }

    .monitor-alarm-visual {
        order: 2;
        width: 100%;
        max-width: 650px;
        min-height: 500px;
        margin: 0 auto;
    }

    .monitor-alarm-section .section-heading {
        font-size: 40px;
    }
}

/* Mobile Responsive */

@media (max-width: 600px) {
    .monitor-alarm-section {
        padding: 60px 0;
    }

    .monitor-alarm-section .container {
        padding: 0 20px;
    }

    .monitor-alarm-wrapper {
        gap: 45px;
    }

    .monitor-alarm-section .section-tag {
        font-size: 13px;
    }

    .monitor-alarm-section .section-heading {
        margin-bottom: 30px;
        font-size: 32px;
    }

    .monitor-content-list::before {
        display: none;
    }

    .monitor-content-item {
        grid-template-columns: 42px 1fr;
        gap: 14px;
        padding: 18px 15px;
    }

    .item-number {
        width: 42px;
        height: 42px;
        border-width: 3px;
        font-size: 11px;
    }

    .monitor-content-item p {
        font-size: 15px;
        line-height: 1.75;
    }

    .monitor-content-item:hover {
        transform: translateY(-4px);
    }

    .monitor-alarm-visual {
        min-height: 390px;
    }

    .cleanroom-image-card {
        inset: 0 10px 20px 0;
        border-radius: 18px 55px 18px 55px;
    }

    .cleanroom-image-card img {
        border-radius: 12px 45px 12px 45px;
    }

    .visual-shape {
        border-radius: 22px 65px 22px 65px;
    }

    .image-status {
        right: -5px;
        bottom: 15px;
        padding: 11px 14px;
        font-size: 12px;
    }
}

/*====================================
Monitor Alarm Section End
====================================*/
/*====================================
Optional Mount Video Section Start
====================================*/

.mount-video-section {
    position: relative;
    overflow: hidden;
    padding: 90px 0;
    background: #ffffff;
}

.mount-video-section .container {
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.mount-video-wrapper {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    align-items: center;
    gap: 70px;
    padding: 55px;
    background: linear-gradient(135deg, #f8fbff 0%, #eef5ff 100%);
    border: 1px solid #e1e9f5;
    border-radius: 24px;
}

/* Content */

.mount-video-section .section-tag {
    display: block;
    margin-bottom: 14px;
    color: #ff3b30;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.mount-video-section .section-heading {
    margin: 0 0 22px;
    color: #002964;
    font-size: 46px;
    font-weight: 600;
    line-height: 1.3;
}

.mount-video-section .section-heading span {
    display: inline;
    color: #ff3b30;
}

.mount-video-content p {
    margin: 0 0 30px;
    color: #646f88;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
}

/* Buy Button */

.mount-buy-button {
    display: inline-flex;
    padding: 14px 24px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #ff3b30;
    border: 1px solid #ff3b30;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.mount-buy-button:hover {
    color: #ffffff;
    background: #002964;
    border-color: #002964;
    transform: translateY(-3px);
}

/* Video Card */

.mount-video-card {
    padding: 12px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0, 41, 100, 0.14);
}

.mount-video-frame {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #002964;
    border-radius: 12px;
    aspect-ratio: 16 / 9;
}

.mount-video-frame iframe {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-label {
    display: flex;
    padding: 16px 8px 6px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #002964;
    font-size: 15px;
    font-weight: 600;
}

.video-status {
    width: 9px;
    height: 9px;
    background: #ff3b30;
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(255, 59, 48, 0.12);
}

/* Tablet */

@media (max-width: 991px) {
    .mount-video-section {
        padding: 80px 0;
    }

    .mount-video-section .container {
        padding: 0 25px;
    }

    .mount-video-wrapper {
        grid-template-columns: 1fr;
        gap: 45px;
        padding: 40px;
    }

    .mount-video-section .section-heading {
        font-size: 40px;
    }
}

/* Mobile */

@media (max-width: 600px) {
    .mount-video-section {
        padding: 60px 0;
    }

    .mount-video-section .container {
        padding: 0 20px;
    }

    .mount-video-wrapper {
        gap: 35px;
        padding: 25px 18px;
        border-radius: 16px;
    }

    .mount-video-section .section-tag {
        font-size: 13px;
    }

    .mount-video-section .section-heading {
        font-size: 32px;
    }

    .mount-video-content p {
        font-size: 15px;
        line-height: 1.8;
    }

    .mount-buy-button {
        width: 100%;
        box-sizing: border-box;
    }

    .mount-video-card {
        padding: 7px;
        border-radius: 12px;
    }
}

/*====================================
Optional Mount Video Section End
====================================*/
/*====================================
Data History Section Start
====================================*/

.data-history-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: #f8fbff;
}

.data-history-section::before {
    content: "";
    position: absolute;
    top: -180px;
    left: -160px;
    width: 430px;
    height: 430px;
    background: rgba(0, 41, 100, 0.05);
    border-radius: 50%;
}

.data-history-section .container {
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.data-history-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 0.65fr 1.35fr;
    align-items: stretch;
    gap: 30px;
}

/* Intro Card */

.data-history-intro {
    display: flex;
    min-height: 100%;
    padding: 45px 38px;
    flex-direction: column;
    background: linear-gradient(145deg, #002964 0%, #073f89 100%);
    border-radius: 24px;
    box-shadow: 0 22px 55px rgba(0, 41, 100, 0.16);
    box-sizing: border-box;
}

.data-history-section .section-tag {
    display: block;
    margin-bottom: 15px;
    color: #ff827a;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.data-history-section .section-heading {
    margin: 0 0 35px;
    color: #ffffff;
    font-size: 46px;
    font-weight: 600;
    line-height: 1.3;
}

.data-history-section .section-heading span {
    display: block;
    color: #ff3b30;
}

/* Small Laboratory Image */

.history-lab-image {
    position: relative;
    min-height: 270px;
    margin-top: auto;
    overflow: hidden;
    border: 7px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
}

.history-lab-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 41, 100, 0.38),
        transparent 60%
    );
}

.history-lab-image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 270px;
    object-fit: cover;
    transition: 0.5s ease;
}

.data-history-intro:hover .history-lab-image img {
    transform: scale(1.06);
}

/* Main Content */

.data-history-main {
    display: grid;
    gap: 30px;
}

.data-history-content {
    padding: 35px 40px;
    background: #ffffff;
    border: 1px solid #e1e9f5;
    border-radius: 20px;
    box-shadow: 0 12px 35px rgba(0, 41, 100, 0.06);
}

.data-history-content p {
    margin: 0 0 16px;
    color: #646f88;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
}

.data-history-content p:last-of-type {
    margin-bottom: 25px;
}

.history-specs-link {
    position: relative;
    display: inline-flex;
    padding-bottom: 5px;
    color: #ff3b30;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.history-specs-link::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 2px;
    background: #ff3b30;
    transition: 0.3s ease;
}

.history-specs-link:hover {
    color: #002964;
}

.history-specs-link:hover::after {
    background: #002964;
}

/* Monitor Card */

.history-monitor-card {
    padding: 18px;
    background: #ffffff;
    border: 1px solid #e1e9f5;
    border-radius: 20px;
    box-shadow: 0 18px 45px rgba(0, 41, 100, 0.09);
}

.monitor-card-header {
    display: flex;
    padding: 4px 8px 18px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: #002964;
    font-size: 14px;
    font-weight: 600;
}

.monitor-card-header div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.monitor-card-header > span {
    color: #646f88;
    font-size: 12px;
    font-weight: 500;
}

.live-indicator {
    width: 9px;
    height: 9px;
    background: #24b26b;
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(36, 178, 107, 0.13);
}

.history-monitor-image {
    position: relative;
    display: flex;
    min-height: 400px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(145deg, #eef5ff 0%, #f8fbff 100%);
    border-radius: 14px;
}

.monitor-background-shape {
    position: absolute;
    width: 480px;
    height: 310px;
    background: rgba(0, 41, 100, 0.07);
    border-radius: 50%;
    filter: blur(12px);
}

.history-monitor-image img {
    position: relative;
    z-index: 2;
    display: block;
    width: 650px;
    max-width: 92%;
    height: auto;
    filter: drop-shadow(0 20px 22px rgba(0, 41, 100, 0.15));
    transition: 0.4s ease;
}

.history-monitor-card:hover .history-monitor-image img {
    transform: translateY(-7px);
}

/* Tablet */

@media (max-width: 991px) {
    .data-history-section {
        padding: 80px 0;
    }

    .data-history-section .container {
        padding: 0 25px;
    }

    .data-history-wrapper {
        grid-template-columns: 1fr;
    }

    .data-history-intro {
        min-height: auto;
    }

    .data-history-section .section-heading {
        font-size: 40px;
    }

    .history-lab-image {
        min-height: 350px;
    }

    .history-lab-image img {
        min-height: 350px;
    }
}

/* Mobile */

@media (max-width: 600px) {
    .data-history-section {
        padding: 60px 0;
    }

    .data-history-section .container {
        padding: 0 20px;
    }

    .data-history-wrapper,
    .data-history-main {
        gap: 20px;
    }

    .data-history-intro {
        padding: 30px 22px;
        border-radius: 16px;
    }

    .data-history-section .section-tag {
        font-size: 13px;
    }

    .data-history-section .section-heading {
        margin-bottom: 25px;
        font-size: 32px;
    }

    .history-lab-image,
    .history-lab-image img {
        min-height: 230px;
    }

    .data-history-content {
        padding: 25px 20px;
        border-radius: 15px;
    }

    .data-history-content p {
        font-size: 15px;
        line-height: 1.8;
    }

    .monitor-card-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .history-monitor-image {
        min-height: 270px;
    }

    .history-monitor-card {
        padding: 10px;
        border-radius: 15px;
    }
}

/*====================================
Data History Section End
====================================*/
/*====================================
Cleanroom Sensors Section Start
====================================*/

.cleanroom-sensors-section {
    position: relative;
    overflow: hidden;
    padding: 90px 0;
    background: #ffffff;
}

.cleanroom-sensors-section::after {
    content: "";
    position: absolute;
    right: -160px;
    bottom: -220px;
    width: 450px;
    height: 450px;
    background: rgba(0, 41, 100, 0.04);
    border-radius: 50%;
}

.cleanroom-sensors-section .container {
    position: relative;
    z-index: 2;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

/* Heading and Content */

.cleanroom-sensors-wrapper {
    display: grid;
    grid-template-columns: 0.65fr 1.35fr;
    align-items: start;
    gap: 80px;
    margin-bottom: 55px;
}

.cleanroom-sensors-heading {
    position: relative;
    padding-left: 24px;
}

.cleanroom-sensors-heading::before {
    content: "";
    position: absolute;
    top: 5px;
    bottom: 5px;
    left: 0;
    width: 4px;
    background: linear-gradient(
        to bottom,
        #ff3b30 0%,
        #ff3b30 50%,
        #002964 50%,
        #002964 100%
    );
    border-radius: 10px;
}

.cleanroom-sensors-section .section-tag {
    display: block;
    margin-bottom: 12px;
    color: #ff3b30;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.cleanroom-sensors-section .section-heading {
    margin: 0;
    color: #002964;
    font-size: 46px;
    font-weight: 600;
    line-height: 1.3;
}

.cleanroom-sensors-section .section-heading span {
    display: block;
    color: #ff3b30;
}

.cleanroom-sensors-content {
    padding: 30px 35px;
    background: #f8fbff;
    border: 1px solid #e1e9f5;
    border-radius: 16px;
}

.cleanroom-sensors-content p {
    margin: 0 0 18px;
    color: #646f88;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
}

.cleanroom-sensors-content p:last-child {
    margin-bottom: 0;
}

/* Specifications */

.sensor-specifications {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.sensor-spec-card {
    position: relative;
    display: flex;
    min-height: 175px;
    padding: 28px;
    align-items: flex-start;
    gap: 20px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #dfe7f3;
    border-radius: 16px;
    box-shadow: 0 12px 35px rgba(0, 41, 100, 0.06);
    box-sizing: border-box;
    transition: 0.35s ease;
}

.sensor-spec-card::after {
    content: "";
    position: absolute;
    right: -50px;
    bottom: -55px;
    width: 120px;
    height: 120px;
    background: rgba(0, 41, 100, 0.04);
    border-radius: 50%;
    transition: 0.35s ease;
}

.sensor-spec-card:hover {
    border-color: #002964;
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 41, 100, 0.11);
}

.sensor-spec-card:hover::after {
    background: rgba(255, 59, 48, 0.08);
    transform: scale(1.25);
}

.sensor-number {
    position: relative;
    z-index: 2;
    display: flex;
    min-width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #002964;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    transition: 0.3s ease;
}

.sensor-spec-card:hover .sensor-number {
    background: #ff3b30;
}

.sensor-spec-content {
    position: relative;
    z-index: 2;
}

.sensor-spec-content h3 {
    margin: 0 0 12px;
    color: #002964;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
}

.sensor-spec-content p {
    margin: 0 0 6px;
    color: #ff3b30;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
}

.sensor-spec-content span {
    color: #646f88;
    font-size: 13px;
    font-weight: 500;
}

/* Tablet */

@media (max-width: 991px) {
    .cleanroom-sensors-section {
        padding: 80px 0;
    }

    .cleanroom-sensors-section .container {
        padding: 0 25px;
    }

    .cleanroom-sensors-wrapper {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .cleanroom-sensors-section .section-heading {
        font-size: 40px;
    }

    .sensor-specifications {
        grid-template-columns: repeat(2, 1fr);
    }

    .sensor-spec-card:last-child {
        grid-column: 1 / -1;
    }
}

/* Mobile */

@media (max-width: 600px) {
    .cleanroom-sensors-section {
        padding: 60px 0;
    }

    .cleanroom-sensors-section .container {
        padding: 0 20px;
    }

    .cleanroom-sensors-wrapper {
        margin-bottom: 35px;
    }

    .cleanroom-sensors-section .section-tag {
        font-size: 13px;
    }

    .cleanroom-sensors-section .section-heading {
        font-size: 32px;
    }

    .cleanroom-sensors-content {
        padding: 24px 20px;
    }

    .cleanroom-sensors-content p {
        font-size: 15px;
        line-height: 1.8;
    }

    .sensor-specifications {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .sensor-spec-card,
    .sensor-spec-card:last-child {
        grid-column: auto;
    }

    .sensor-spec-card {
        min-height: auto;
        padding: 22px 18px;
    }

    .sensor-spec-content h3 {
        font-size: 17px;
    }
}

/*====================================
Cleanroom Sensors Section End
====================================*/

/*====================================
No Maintenance Section Start
====================================*/

.no-maintenance-section {
    position: relative;
    overflow: hidden;
    padding: 90px 0;
    background: linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
}

.no-maintenance-section .container {
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.no-maintenance-card {
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e1e9f5;
    border-radius: 24px;
    box-shadow: 0 25px 65px rgba(0, 41, 100, 0.1);
}

/* Highlight Side */

.no-maintenance-highlight {
    position: relative;
    display: flex;
    min-height: 540px;
    padding: 55px 45px;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(145deg, #002964 0%, #073f89 100%);
    box-sizing: border-box;
}

.no-maintenance-highlight::before {
    content: "";
    position: absolute;
    top: -110px;
    right: -120px;
    width: 300px;
    height: 300px;
    border: 45px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.no-maintenance-highlight::after {
    content: "";
    position: absolute;
    right: -65px;
    bottom: -80px;
    width: 230px;
    height: 230px;
    background: rgba(255, 59, 48, 0.12);
    border-radius: 50%;
}

.highlight-label {
    position: relative;
    z-index: 2;
    display: block;
    margin-bottom: 15px;
    color: #ff827a;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.no-maintenance-section .section-heading {
    position: relative;
    z-index: 2;
    margin: 0 0 38px;
    color: #ffffff;
    font-size: 46px;
    font-weight: 600;
    line-height: 1.3;
}

.no-maintenance-section .section-heading span {
    display: block;
    color: #ff3b30;
}

/* No Fee Message */

.no-fee-message {
    position: relative;
    z-index: 2;
    padding: 22px 24px;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 12px;
    backdrop-filter: blur(8px);
}

.no-fee-message strong {
    display: block;
    margin-bottom: 6px;
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
}

.no-fee-message span {
    color: #d8e5f8;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
}

/* Content Side */

.no-maintenance-content {
    display: flex;
    padding: 55px;
    flex-direction: column;
    justify-content: center;
    gap: 22px;
}

.maintenance-content-block {
    display: grid;
    grid-template-columns: 48px 1fr;
    align-items: start;
    gap: 20px;
    padding-bottom: 22px;
    border-bottom: 1px solid #e3eaf4;
}

.content-number {
    display: flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #002964;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    transition: 0.3s ease;
}

.maintenance-content-block:hover .content-number {
    background: #ff3b30;
    transform: rotate(-5deg);
}

.maintenance-content-block p,
.calibration-notice p {
    margin: 0;
    color: #646f88;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
}

/* Calibration Notice */

.calibration-notice {
    position: relative;
    display: grid;
    grid-template-columns: 14px 1fr;
    align-items: start;
    gap: 15px;
    padding: 22px 24px;
    background: #f8fbff;
    border-left: 4px solid #ff3b30;
    border-radius: 0 12px 12px 0;
}

.notice-mark {
    width: 10px;
    height: 10px;
    margin-top: 9px;
    background: #24b26b;
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(36, 178, 107, 0.13);
}

/* Tablet */

@media (max-width: 991px) {
    .no-maintenance-section {
        padding: 80px 0;
    }

    .no-maintenance-section .container {
        padding: 0 25px;
    }

    .no-maintenance-card {
        grid-template-columns: 1fr;
    }

    .no-maintenance-highlight {
        min-height: auto;
        padding: 45px 40px;
    }

    .no-maintenance-section .section-heading {
        font-size: 40px;
    }

    .no-maintenance-content {
        padding: 45px 40px;
    }
}

/* Mobile */

@media (max-width: 600px) {
    .no-maintenance-section {
        padding: 60px 0;
    }

    .no-maintenance-section .container {
        padding: 0 20px;
    }

    .no-maintenance-card {
        border-radius: 16px;
    }

    .no-maintenance-highlight {
        padding: 35px 24px;
    }

    .highlight-label {
        font-size: 13px;
    }

    .no-maintenance-section .section-heading {
        margin-bottom: 28px;
        font-size: 32px;
    }

    .no-maintenance-content {
        padding: 30px 20px;
        gap: 20px;
    }

    .maintenance-content-block {
        grid-template-columns: 40px 1fr;
        gap: 14px;
    }

    .content-number {
        width: 40px;
        height: 40px;
        font-size: 11px;
    }

    .maintenance-content-block p,
    .calibration-notice p {
        font-size: 15px;
        line-height: 1.8;
    }

    .calibration-notice {
        grid-template-columns: 1fr;
        padding: 20px;
    }
}

/*====================================
No Maintenance Section End
====================================*/
/*====================================
Backup Charts Section Start
====================================*/

.backup-charts-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: #ffffff;
}

.backup-charts-section::before {
    content: "";
    position: absolute;
    top: -220px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: rgba(0, 41, 100, 0.04);
    border-radius: 50%;
}

.backup-charts-section .container {
    position: relative;
    z-index: 2;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.backup-charts-wrapper {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 75px;
}

/* Content */

.backup-charts-section .section-tag {
    display: block;
    margin-bottom: 14px;
    color: #ff3b30;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.backup-charts-section .section-heading {
    margin: 0 0 28px;
    color: #002964;
    font-size: 46px;
    font-weight: 600;
    line-height: 1.3;
}

.backup-charts-section .section-heading span {
    display: block;
    color: #ff3b30;
}

.backup-charts-content > p {
    margin: 0 0 18px;
    color: #646f88;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
}

/* Backup Feature Boxes */

.backup-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 30px;
}

.backup-feature {
    position: relative;
    padding: 18px 15px;
    overflow: hidden;
    background: #f8fbff;
    border: 1px solid #e1e9f5;
    border-radius: 10px;
    transition: 0.3s ease;
}

.backup-feature::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    background: #002964;
    transition: 0.3s ease;
}

.backup-feature:hover {
    background: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 41, 100, 0.09);
}

.backup-feature:hover::before {
    background: #ff3b30;
}

.backup-feature strong {
    display: block;
    margin-bottom: 6px;
    color: #002964;
    font-size: 15px;
    font-weight: 700;
}

.backup-feature span {
    display: block;
    color: #646f88;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
}

/* Software Card */

.backup-software-card {
    padding: 12px;
    overflow: hidden;
    background: #002964;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 41, 100, 0.2);
}

.software-card-header {
    display: flex;
    padding: 8px 8px 18px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: #d8e5f8;
    font-size: 13px;
    font-weight: 600;
}

.software-window-buttons {
    display: flex;
    gap: 7px;
}

.software-window-buttons span {
    width: 9px;
    height: 9px;
    background: rgba(255, 255, 255, 0.45);
    border-radius: 50%;
}

.software-window-buttons span:first-child {
    background: #ff3b30;
}

.software-window-buttons span:nth-child(2) {
    background: #ffc02e;
}

.software-window-buttons span:last-child {
    background: #24b26b;
}

.backup-software-image {
    display: flex;
    min-height: 440px;
    padding: 20px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #f8fbff;
    border-radius: 12px;
    box-sizing: border-box;
}

.backup-software-image img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 410px;
    object-fit: contain;
    transition: 0.4s ease;
}

.backup-software-card:hover .backup-software-image img {
    transform: scale(1.025);
}

.software-card-status {
    display: flex;
    padding: 16px 8px 6px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
}

.status-light {
    width: 9px;
    height: 9px;
    background: #24b26b;
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(36, 178, 107, 0.18);
}

/* Resource Links */

.backup-resource-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 55px;
    overflow: hidden;
    background: #f8fbff;
    border: 1px solid #e1e9f5;
    border-radius: 12px;
}

.backup-resource-links a {
    position: relative;
    display: flex;
    min-height: 72px;
    padding: 15px 20px;
    align-items: center;
    justify-content: center;
    color: #002964;
    border-right: 1px solid #e1e9f5;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: 0.3s ease;
}

.backup-resource-links a:last-child {
    border-right: 0;
}

.backup-resource-links a:hover {
    color: #ffffff;
    background: #002964;
}

/* Tablet */

@media (max-width: 991px) {
    .backup-charts-section {
        padding: 80px 0;
    }

    .backup-charts-section .container {
        padding: 0 25px;
    }

    .backup-charts-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .backup-charts-section .section-heading {
        font-size: 40px;
    }

    .backup-software-card {
        width: 100%;
        max-width: 720px;
        margin: 0 auto;
        box-sizing: border-box;
    }
}

/* Mobile */

@media (max-width: 600px) {
    .backup-charts-section {
        padding: 60px 0;
    }

    .backup-charts-section .container {
        padding: 0 20px;
    }

    .backup-charts-wrapper {
        gap: 40px;
    }

    .backup-charts-section .section-tag {
        font-size: 13px;
    }

    .backup-charts-section .section-heading {
        font-size: 32px;
    }

    .backup-charts-content > p {
        font-size: 15px;
        line-height: 1.8;
    }

    .backup-features {
        grid-template-columns: 1fr;
    }

    .backup-software-card {
        padding: 7px;
        border-radius: 14px;
    }

    .backup-software-image {
        min-height: 260px;
        padding: 10px;
    }

    .backup-resource-links {
        grid-template-columns: 1fr;
        margin-top: 35px;
    }

    .backup-resource-links a {
        min-height: 60px;
        border-right: 0;
        border-bottom: 1px solid #e1e9f5;
    }

    .backup-resource-links a:last-child {
        border-bottom: 0;
    }
}

/*====================================
Backup Charts Section End
====================================*/
