/* =========================================================
   HYRO TECHNOLOGIES FZE
   FINAL CTA / DEMO SECTION
   File: /assets/css/final-cta.css
========================================================= */

.final-cta-section {
    position: relative;
    overflow: hidden;

    padding: 100px 0 105px;

    background:
        radial-gradient(circle at 8% 18%, rgba(229,43,135,.08), transparent 28%),
        radial-gradient(circle at 92% 85%, rgba(132,87,232,.10), transparent 30%),
        #faf9fd;
}

.final-cta-section::before {
    content: "";

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

    width: 340px;
    height: 340px;

    border-radius: 50%;

    background: linear-gradient(
        135deg,
        rgba(229,43,135,.08),
        rgba(132,87,232,.12)
    );

    pointer-events: none;
}

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

/* =========================================================
   MAIN CTA BOX
========================================================= */

.final-cta-box {
    position: relative;
    overflow: hidden;

    padding: 48px 48px;

    display: grid;
    grid-template-columns: 1.1fr .9fr;

    gap: 45px;
    align-items: center;

    color: #ffffff;

    background: linear-gradient(
        120deg,
        #e42b86 0%,
        #c63bad 48%,
        #805eea 100%
    );

    border-radius: 30px;

    box-shadow:
        0 28px 70px rgba(166,60,181,.25);
}

.final-cta-box::before {
    content: "";

    position: absolute;
    top: -110px;
    right: -80px;

    width: 260px;
    height: 260px;

    border-radius: 50%;

    background: rgba(255,255,255,.10);

    pointer-events: none;
}

.final-cta-box::after {
    content: "";

    position: absolute;
    bottom: -120px;
    left: -100px;

    width: 280px;
    height: 280px;

    border-radius: 50%;

    background: rgba(255,255,255,.07);

    pointer-events: none;
}

/* =========================================================
   LEFT CONTENT
========================================================= */

.final-cta-copy {
    position: relative;
    z-index: 2;
}

.final-cta-eyebrow {
    display: inline-block;

    margin-bottom: 14px;

    color: rgba(255,255,255,.88);

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

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

.final-cta-copy h2 {
    margin: 0;

    color: #ffffff;

    font-size: clamp(38px, 4.4vw, 56px);
    line-height: 1.12;

    letter-spacing: -1.8px;
}

.final-cta-copy p {
    max-width: 650px;

    margin: 20px 0 0;

    color: rgba(255,255,255,.90);

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

/* =========================================================
   PRODUCT BADGES
========================================================= */

.final-product-list {
    display: flex;
    flex-wrap: wrap;

    gap: 10px;

    margin-top: 25px;
}

.final-product-badge {
    padding: 9px 13px;

    color: #ffffff;

    background: rgba(255,255,255,.12);

    border: 1px solid rgba(255,255,255,.22);
    border-radius: 999px;

    font-size: 12px;
    font-weight: 700;

    backdrop-filter: blur(8px);
}

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

.final-cta-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 12px;

    margin-top: 30px;
}

.final-cta-actions .btn-light {
    color: #d62f83;

    background: #ffffff;
    border-color: #ffffff;

    box-shadow:
        0 12px 30px rgba(60,30,90,.15);
}

.final-cta-actions .btn-outline-light {
    color: #ffffff;

    background: transparent;

    border-color: rgba(255,255,255,.65);
}

.final-cta-actions .btn-outline-light:hover {
    color: #182033;
    background: #ffffff;
}

/* =========================================================
   RIGHT SIDE MINI CONTACT CARD
========================================================= */

.final-contact-card {
    position: relative;
    z-index: 2;

    padding: 30px;

    background: rgba(255,255,255,.95);

    border: 1px solid rgba(255,255,255,.70);
    border-radius: 24px;

    box-shadow:
        0 18px 45px rgba(50,30,90,.16);

    color: #182033;
}

.final-contact-card h3 {
    margin: 0 0 8px;

    color: #182033;

    font-size: 23px;
}

.final-contact-card > p {
    margin: 0 0 22px;

    color: #667085;

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

.final-contact-options {
    display: grid;
    gap: 12px;
}

.final-contact-option {
    display: flex;
    align-items: center;

    gap: 12px;

    padding: 13px 14px;

    border: 1px solid #e5e5ee;
    border-radius: 14px;

    background: #ffffff;

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

.final-contact-option:hover {
    transform: translateY(-2px);

    border-color: rgba(214,47,131,.26);

    box-shadow:
        0 10px 24px rgba(31,40,70,.07);
}

.final-contact-icon {
    width: 40px;
    height: 40px;

    flex: 0 0 40px;

    display: grid;
    place-items: center;

    color: #ffffff;

    border-radius: 12px;

    background: linear-gradient(
        135deg,
        #e52b87,
        #855fea
    );

    font-size: 17px;
}

.final-contact-option.whatsapp .final-contact-icon {
    background: linear-gradient(
        135deg,
        #20b358,
        #68cf73
    );
}

.final-contact-option strong {
    display: block;

    color: #182033;

    font-size: 13px;
}

/* =========================================================
   FINAL CONTACT TEXT
   Do not affect icon span
========================================================= */

.final-contact-option > span:not(.final-contact-icon) {
    display: block;

    margin: 0;

    color: #667085;

    font-size: 12px;
}

.final-contact-option > span:not(.final-contact-icon) > strong {
    display: block;

    margin-bottom: 3px;

    color: #182033;

    font-size: 13px;
    font-weight: 700;
}

.final-contact-option > span:not(.final-contact-icon) > span {
    display: block;

    margin: 0;

    color: #667085;

    font-size: 12px;
}


/* =========================================================
   FINAL CONTACT ICONS
========================================================= */

.final-contact-option .final-contact-icon {
    width: 54px;
    height: 54px;

    min-width: 54px;
    min-height: 54px;

    flex: 0 0 54px;

    margin: 0;

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

    color: #ffffff !important;

    border-radius: 16px;

    font-size: 22px !important;
    line-height: 1 !important;
    font-weight: 700 !important;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}


/* WhatsApp */

.final-contact-option .final-contact-icon.whatsapp {
    background: linear-gradient(
        135deg,
        #20b358,
        #67cf73
    );
}


/* Phone */

.final-contact-option .final-contact-icon.phone {
    background: linear-gradient(
        135deg,
        #e52b87,
        #8a60ea
    );
}


/* Email */

.final-contact-option .final-contact-icon.email {
    background: linear-gradient(
        135deg,
        #6b6ff2,
        #8a60ea
    );
}


/* Hover */

.final-contact-option:hover .final-contact-icon {
    transform: scale(1.06);

    box-shadow:
        0 8px 18px rgba(72,52,120,.16);
}

/* =========================================================
   TRUST STRIP
========================================================= */

.final-trust-strip {
    margin-top: 24px;

    display: grid;
    grid-template-columns: repeat(3,1fr);

    gap: 10px;
}

.final-trust-strip div {
    padding: 11px 10px;

    text-align: center;

    background: #f8f6fc;

    border-radius: 11px;

    color: #4f5d73;

    font-size: 11px;
    font-weight: 700;
}

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

@media (max-width: 980px) {

    .final-cta-section {
        padding: 84px 0 90px;
    }

    .final-cta-box {
        grid-template-columns: 1fr;

        padding: 40px;
    }
}

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

@media (max-width: 640px) {

    .final-cta-section {
        padding: 68px 0 74px;
    }

    .final-cta-box {
        padding: 30px 22px;

        border-radius: 24px;
    }

    .final-cta-copy h2 {
        font-size: 36px;
        letter-spacing: -.9px;
    }

    .final-cta-actions {
        flex-direction: column;
    }

    .final-cta-actions .btn {
        width: 100%;
    }

    .final-contact-card {
        padding: 23px 19px;
    }

    .final-trust-strip {
        grid-template-columns: 1fr;
    }
}