/* =========================================================
   HYRO TECHNOLOGIES FZE
   CLOUD / OFFLINE / HYBRID SOLUTIONS

   Full server path:
   /home/hyrotechnologie/public_html/hyrotechnologies.com/assets/css/deployment.css
========================================================= */

.deployment-section {
    position: relative;
    overflow: hidden;

    padding: 100px 0;

    color: #182033;

    background:
        radial-gradient(
            circle at 6% 12%,
            rgba(229, 43, 135, 0.09) 0,
            transparent 28%
        ),
        radial-gradient(
            circle at 94% 14%,
            rgba(132, 87, 232, 0.10) 0,
            transparent 29%
        ),
        radial-gradient(
            circle at 92% 90%,
            rgba(32, 179, 88, 0.09) 0,
            transparent 30%
        ),
        linear-gradient(
            145deg,
            #fffafd 0%,
            #ffffff 42%,
            #faf7ff 72%,
            #f2fff7 100%
        );
}

/* Large decorative pink circle */

.deployment-section::before {
    content: "";

    position: absolute;
    top: -170px;
    right: -120px;

    width: 360px;
    height: 360px;

    border-radius: 50%;

    background: linear-gradient(
        135deg,
        rgba(229, 43, 135, 0.09),
        rgba(132, 87, 232, 0.13)
    );

    pointer-events: none;
}

/* Bottom decorative lavender-green circle */

.deployment-section::after {
    content: "";

    position: absolute;
    left: -130px;
    bottom: -165px;

    width: 320px;
    height: 320px;

    border-radius: 50%;

    background: linear-gradient(
        135deg,
        rgba(132, 87, 232, 0.07),
        rgba(32, 179, 88, 0.08)
    );

    pointer-events: none;
}

.deployment-section .container {
    position: relative;
    z-index: 2;
}

/* =========================================================
   HEADING
========================================================= */

.deployment-heading {
    max-width: 850px;
    margin: 0 auto 50px;

    text-align: center;
}

.deployment-heading .eyebrow {
    display: inline-flex;
    align-items: center;

    margin-bottom: 15px;

    color: #d62f83;

    font-size: 13px;
    line-height: 1.4;
    font-weight: 800;

    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.deployment-heading .eyebrow::before,
.deployment-heading .eyebrow::after {
    content: "";

    width: 25px;
    height: 2px;

    margin: 0 10px;

    border-radius: 20px;

    background: linear-gradient(
        90deg,
        #e52b87 0%,
        #c53bae 50%,
        #875ff0 100%
    );
}

.deployment-heading h2 {
    margin: 0;

    color: transparent;

    background: linear-gradient(
        100deg,
        #df2b83 0%,
        #c83cae 38%,
        #7e60e8 68%,
        #20b358 100%
    );

    -webkit-background-clip: text;
    background-clip: text;

    font-size: clamp(38px, 4.4vw, 55px);
    line-height: 1.14;
    font-weight: 700;

    letter-spacing: -1.8px;
}

.deployment-heading p {
    max-width: 745px;

    margin: 19px auto 0;

    color: #667085;

    font-size: 16px;
    line-height: 1.8;
}

/* =========================================================
   CARDS GRID
========================================================= */

.deployment-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 23px;
}

/* =========================================================
   COMMON CARD
========================================================= */

.deployment-card {
    position: relative;
    overflow: hidden;

    min-height: 355px;

    padding: 31px 28px 30px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.995),
            rgba(254, 251, 255, 0.98)
        );

    border: 1px solid rgba(225, 224, 236, 0.96);
    border-radius: 25px;

    box-shadow:
        0 16px 44px rgba(31, 40, 70, 0.075);

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

/* Pink-lavender top line */

.deployment-card::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 5px;

    background: linear-gradient(
        90deg,
        #e72c89 0%,
        #c83caf 50%,
        #8461ed 100%
    );
}

/* Soft background circle */

.deployment-card::after {
    content: "";

    position: absolute;
    right: -58px;
    bottom: -64px;

    width: 150px;
    height: 150px;

    border-radius: 50%;

    background: linear-gradient(
        135deg,
        rgba(229, 43, 135, 0.05),
        rgba(132, 87, 232, 0.12)
    );

    pointer-events: none;
}

.deployment-card:hover {
    transform: translateY(-8px);

    border-color: rgba(204, 54, 162, 0.27);

    box-shadow:
        0 27px 62px rgba(69, 45, 107, 0.13);
}

/* =========================================================
   ICON
========================================================= */

.deployment-icon {
    position: relative;
    z-index: 2;

    width: 61px;
    height: 61px;

    margin-bottom: 24px;

    display: grid;
    place-items: center;

    color: #ffffff;

    background: linear-gradient(
        140deg,
        #e52b87 0%,
        #ca3cad 51%,
        #835fee 100%
    );

    border-radius: 18px;

    box-shadow:
        0 13px 28px rgba(199, 56, 173, 0.23);

    font-size: 27px;
    line-height: 1;
}

/* =========================================================
   TEXT
========================================================= */

.deployment-card h3 {
    position: relative;
    z-index: 2;

    margin: 0 0 13px;

    color: #182033;

    font-size: 23px;
    line-height: 1.3;
    font-weight: 700;
}

.deployment-card > p {
    position: relative;
    z-index: 2;

    margin: 0 0 22px;

    color: #667085;

    font-size: 14px;
    line-height: 1.75;
}

/* =========================================================
   CHECKLIST
========================================================= */

.deployment-list {
    position: relative;
    z-index: 2;

    margin: 0;
    padding: 0;

    list-style: none;
}

.deployment-list li {
    position: relative;

    margin: 11px 0;
    padding-left: 28px;

    color: #4f5d73;

    font-size: 13px;
    line-height: 1.55;
}

.deployment-list li::before {
    content: "✓";

    position: absolute;
    top: 0;
    left: 0;

    width: 19px;
    height: 19px;

    display: grid;
    place-items: center;

    color: #ffffff;

    background: linear-gradient(
        135deg,
        #e52b87,
        #865fe9
    );

    border-radius: 50%;

    font-size: 10px;
    font-weight: 900;
}

/* =========================================================
   OFFLINE CARD — LIGHT LAVENDER
========================================================= */

.deployment-card:nth-child(2) {
    background: linear-gradient(
        145deg,
        #fbf9ff 0%,
        #f2eeff 55%,
        #ebe5ff 100%
    );

    border-color: rgba(132, 87, 232, 0.22);
}

.deployment-card:nth-child(2)::before {
    background: linear-gradient(
        90deg,
        #c83caf,
        #865fee
    );
}

.deployment-card:nth-child(2)::after {
    background: rgba(132, 87, 232, 0.10);
}

/* =========================================================
   HYBRID CARD — GREEN + LAVENDER
========================================================= */

.deployment-card.featured {
    background: linear-gradient(
        145deg,
        #effcf4 0%,
        #e4f9ec 42%,
        #e7f1ff 72%,
        #eee8ff 100%
    );

    border-color: rgba(32, 179, 88, 0.28);

    box-shadow:
        0 18px 46px rgba(32, 179, 88, 0.12);
}

.deployment-card.featured::before {
    background: linear-gradient(
        90deg,
        #20b358 0%,
        #63cc75 48%,
        #8b63f5 100%
    );
}

.deployment-card.featured::after {
    background: linear-gradient(
        135deg,
        rgba(32, 179, 88, 0.09),
        rgba(132, 87, 232, 0.13)
    );
}

.deployment-card.featured .deployment-icon {
    background: linear-gradient(
        140deg,
        #19ad53 0%,
        #45c96f 48%,
        #8962ed 100%
    );

    box-shadow:
        0 13px 28px rgba(32, 179, 88, 0.22);
}

.deployment-card.featured .deployment-list li::before {
    background: linear-gradient(
        135deg,
        #20b358,
        #6bcc73
    );
}

/* =========================================================
   FLEXIBLE CHOICE LABEL
========================================================= */

.deployment-label {
    position: absolute;
    top: 20px;
    right: 18px;
    z-index: 3;

    padding: 7px 11px;

    color: #207346;

    background: rgba(255, 255, 255, 0.88);

    border: 1px solid rgba(32, 179, 88, 0.20);
    border-radius: 999px;

    box-shadow:
        0 8px 20px rgba(32, 179, 88, 0.09);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 0.45px;
    text-transform: uppercase;
}

/* =========================================================
   CTA BUTTONS
========================================================= */

.deployment-cta {
    margin-top: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 12px;
    flex-wrap: wrap;
}

.deployment-cta .btn-light {
    color: #ffffff;

    background: linear-gradient(
        135deg,
        #e52b87 0%,
        #c83cad 52%,
        #865fea 100%
    );

    border-color: transparent;

    box-shadow:
        0 13px 29px rgba(194, 54, 169, 0.23);
}

.deployment-cta .btn-light:hover {
    color: #ffffff;

    transform: translateY(-3px);

    box-shadow:
        0 18px 36px rgba(132, 87, 232, 0.28);
}

.deployment-cta .btn-outline-light {
    color: #198849;
    background: #ffffff;

    border-color: rgba(32, 179, 88, 0.40);

    box-shadow:
        0 8px 22px rgba(32, 179, 88, 0.07);
}

.deployment-cta .btn-outline-light:hover {
    color: #ffffff;
    background: #20b358;

    border-color: #20b358;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 980px) {

    .deployment-section {
        padding: 84px 0;
    }

    .deployment-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .deployment-card.featured {
        grid-column: 1 / -1;

        max-width: 580px;
        width: 100%;

        margin: auto;
    }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 640px) {

    .deployment-section {
        padding: 68px 0 73px;
    }

    .deployment-heading {
        margin-bottom: 36px;
    }

    .deployment-heading h2 {
        font-size: 35px;
        letter-spacing: -0.9px;
    }

    .deployment-heading p {
        font-size: 15px;
    }

    .deployment-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .deployment-card,
    .deployment-card.featured {
        grid-column: auto;

        min-height: auto;
        max-width: none;

        padding: 27px 23px;
    }

    .deployment-label {
        top: 17px;
        right: 16px;
    }

    .deployment-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .deployment-cta .btn {
        width: 100%;
    }
}