    /* Table */

.ciscon-key-takeaways,
.ciscon-key-takeaways *,
.ciscon-key-takeaways h2,
.ciscon-key-takeaways ul,
.ciscon-key-takeaways li,
.ciscon-key-takeaways strong {
    font-family: 'Poppins', sans-serif !important;
}

/* =========================================
   RESET
========================================= */

.ciscon-key-takeaways,
.ciscon-key-takeaways * {
    box-sizing: border-box;
}


/* =========================================
   MAIN SECTION
========================================= */

.ciscon-key-takeaways {

    width: 100%;

    padding: 5px 0 20px;

    font-family: 'Poppins', sans-serif;

}


/* =========================================
   WRAPPER
========================================= */

.key-takeaways-wrap {

    width: 100%;

    max-width: 1200px;

    margin: 0 auto;

}


/* =========================================
   HEADING
========================================= */

.key-title {

    position: relative;

    margin: 0 0 22px;

    padding-left: 17px;

    color: #102544;

    font-size: 36px;

    line-height: 1.2;

    font-weight: 700;

    letter-spacing: -0.7px;

}


/* Red line beside heading */

.key-title::before {

    content: "";

    position: absolute;

    left: 0;

    top: 3px;

    width: 5px;

    height: 38px;

    background: #e21f2b;

    border-radius: 4px;

}


/* =========================================
   LIST
========================================= */

.key-list {

    margin: 0;

    padding: 0;

    list-style: none;

}


/* =========================================
   LIST ITEM
========================================= */

.key-list li {

    position: relative;

    margin: 0;

    padding: 7px 0 7px 22px;

    color: #172b48;

    font-size: 16px;

    line-height: 1.65;

    font-weight: 400;

    opacity: 0;

    transform: translateX(-15px);

    animation:
        listItemReveal 0.55s ease forwards;

}


/* =========================================
   CUSTOM BULLET
========================================= */

.key-list li::before {

    content: "";

    position: absolute;

    left: 2px;

    top: 18px;

    width: 6px;

    height: 6px;

    background: #e21f2b;

    border-radius: 50%;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;

}


/* =========================================
   BOLD TEXT
========================================= */

.key-list strong {

    color: #102544;

    font-weight: 700;

}


/* =========================================
   STAGGERED ANIMATION
========================================= */

.key-list li:nth-child(1) {
    animation-delay: 0.10s;
}

.key-list li:nth-child(2) {
    animation-delay: 0.20s;
}

.key-list li:nth-child(3) {
    animation-delay: 0.30s;
}

.key-list li:nth-child(4) {
    animation-delay: 0.40s;
}

.key-list li:nth-child(5) {
    animation-delay: 0.50s;
}


/* =========================================
   HOVER
========================================= */

.key-list li {

    transition:
        color 0.3s ease,
        transform 0.3s ease;

}


.key-list li:hover {

    color: #102544;

    transform: translateX(4px);

}


.key-list li:hover::before {

    transform: scale(1.5);

    box-shadow:
        0 0 0 4px rgba(226, 31, 43, 0.10);

}


/* =========================================
   ANIMATION
========================================= */

@keyframes listItemReveal {

    from {

        opacity: 0;

        transform: translateX(-15px);

    }

    to {

        opacity: 1;

        transform: translateX(0);

    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .key-title {

        font-size: 31px;

        margin-bottom: 18px;

    }


    .key-title::before {

        height: 34px;

    }


    .key-list li {

        font-size: 15px;

        line-height: 1.6;

        padding-top: 6px;

        padding-bottom: 6px;

    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

    .ciscon-key-takeaways {

        padding: 5px 10px 15px;

    }


    .key-title {

        font-size: 27px;

        padding-left: 13px;

        margin-bottom: 15px;

    }


    .key-title::before {

        width: 4px;

        height: 30px;

        top: 2px;

    }


    .key-list li {

        padding-left: 18px;

        padding-top: 5px;

        padding-bottom: 5px;

        font-size: 14px;

        line-height: 1.6;

    }


    .key-list li::before {

        width: 5px;

        height: 5px;

        top: 16px;

    }

}


/* =========================================
   REDUCED MOTION
========================================= */

@media (prefers-reduced-motion: reduce) {

    .key-list li {

        opacity: 1;

        transform: none;

        animation: none;

    }

}

    /* ================================
       MAIN SECTION
    ================================= */

    .myth-fact-section {
        width: 100%;
        padding: 20px 0;
        font-family: 'Poppins', sans-serif;
    }

    .myth-fact-wrapper {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        overflow: hidden;

        border: 1px solid #e4e4e4;
        border-radius: 18px;

        background: #ffffff;

        box-shadow:
            0 12px 35px rgba(0, 0, 0, 0.08);

        opacity: 0;
        transform: translateY(35px);

        animation: tableReveal 0.9s ease forwards;
    }


    /* ================================
       HEADER
    ================================= */

    .mf-header {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .mf-heading {
        min-height: 105px;

        display: flex;
        align-items: center;

        gap: 20px;

        padding: 25px 38px;

        color: #ffffff;

        font-size: 28px;
        font-weight: 700;
    }

    /* Myth */
    .myth-heading {
        background: #555555;
    }

    /* Fact */
    .fact-heading {
        background: #e21f2b;
    }


    /* ================================
       HEADER ICONS
    ================================= */

    .mf-icon {
        width: 52px;
        height: 52px;

        display: flex;
        align-items: center;
        justify-content: center;

        border: 2px solid rgba(255,255,255,0.95);
        border-radius: 50%;

        font-size: 34px;
        font-weight: 400;

        line-height: 1;

        transition: all 0.35s ease;
    }

    .mf-heading:hover .mf-icon {
        transform: rotate(8deg) scale(1.08);
    }

    .mf-check {
        font-size: 30px;
    }


    /* ================================
       ROW
    ================================= */

    .mf-row {
        display: grid;
        grid-template-columns: 1fr 1fr;

        border-top: 1px solid #e5e5e5;

        opacity: 0;
        transform: translateY(25px);

        animation: rowReveal 0.7s ease forwards;
    }

    .mf-row:nth-child(2) {
        animation-delay: 0.25s;
    }

    .mf-row:nth-child(3) {
        animation-delay: 0.4s;
    }

    .mf-row:nth-child(4) {
        animation-delay: 0.55s;
    }

    .mf-row:nth-child(5) {
        animation-delay: 0.7s;
    }


    /* ================================
       CELLS
    ================================= */

    .mf-cell {
        min-height: 125px;

        display: flex;
        align-items: center;

        gap: 24px;

        padding: 28px 34px;

        box-sizing: border-box;
    }

    .myth-cell {
        background: #ffffff;
        border-right: 1px solid #e5e5e5;
    }

    .fact-cell {
        background: #ffffff;
    }


    /* ================================
       TEXT
    ================================= */

    .mf-cell p {
        margin: 0;

        color: #252525;

        font-size: 17px;
        line-height: 1.65;

        font-weight: 500;
    }

    .myth-cell p {
        font-weight: 600;
    }


    /* ================================
       ROW ICONS
    ================================= */

    .row-icon {
        flex: 0 0 58px;

        width: 58px;
        height: 58px;

        display: flex;
        align-items: center;
        justify-content: center;

        border-radius: 50%;

        font-size: 32px;
        font-weight: 400;

        transition:
            transform 0.35s ease,
            background 0.35s ease;
    }

    .myth-icon {
        color: #555555;

        border: 1.5px solid #e21f2b;

        background: #ffffff;
    }

    .fact-icon {
        color: #e21f2b;

        border: 1.5px solid #bdbdbd;

        background: #ffffff;

        font-size: 28px;
    }


    /* ================================
       HOVER EFFECT
    ================================= */

    .mf-row {
        transition:
            background 0.35s ease,
            box-shadow 0.35s ease;
    }

    .mf-row:hover {
        background: #fafafa;

        box-shadow:
            inset 4px 0 0 #e21f2b;
    }

    .mf-row:hover .row-icon {
        transform: scale(1.08);
    }

    .mf-row:hover .myth-icon {
        background: #f8f8f8;
    }

    .mf-row:hover .fact-icon {
        background: #fff3f4;
    }


    /* ================================
       ANIMATIONS
    ================================= */

    @keyframes tableReveal {

        from {
            opacity: 0;
            transform: translateY(35px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }

    }


    @keyframes rowReveal {

        from {
            opacity: 0;
            transform: translateY(25px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }

    }


    /* ================================
       TABLET
    ================================= */

    @media (max-width: 900px) {

        .mf-heading {
            min-height: 90px;
            padding: 20px 25px;
            font-size: 23px;
        }

        .mf-cell {
            padding: 24px;
            gap: 18px;
        }

        .mf-cell p {
            font-size: 15px;
        }

        .row-icon {
            flex-basis: 48px;
            width: 48px;
            height: 48px;
            font-size: 27px;
        }

    }


    /* ================================
       MOBILE
    ================================= */

    @media (max-width: 650px) {

        .myth-fact-section {
            padding: 10px;
        }

        .myth-fact-wrapper {
            border-radius: 14px;
        }

        .mf-header {
            grid-template-columns: 1fr 1fr;
        }

        .mf-heading {
            min-height: 75px;

            padding: 15px;

            gap: 10px;

            font-size: 19px;
        }

        .mf-icon {
            width: 38px;
            height: 38px;

            font-size: 25px;
        }

        .mf-check {
            font-size: 22px;
        }


        /* Stack each row */

        .mf-row {
            grid-template-columns: 1fr;
        }

        .myth-cell {
            border-right: none;

            border-bottom: 1px dashed #dddddd;
        }

        .mf-cell {
            min-height: auto;

            padding: 20px;
            gap: 15px;
        }

        .mf-cell p {
            font-size: 14px;
            line-height: 1.6;
        }

        .row-icon {
            flex-basis: 42px;

            width: 42px;
            height: 42px;

            font-size: 24px;
        }

    }

/* ==========================================
   FORCE POPPINS
========================================== */

.ciscon-key-highlight,
.ciscon-key-highlight * {

    font-family: 'Poppins', sans-serif !important;

}


/* ==========================================
   MAIN HIGHLIGHT CONTAINER
========================================== */

.ciscon-key-highlight {

    position: relative;

    width: 100%;

    margin: 15px 0;

    padding: 18px 24px 18px 27px;

    background: #fff5f5;

    border: 1px solid #f0d2d5;

    border-radius: 8px;

    box-shadow:
        0 4px 14px rgba(16, 37, 68, 0.05);

    overflow: hidden;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;

}


/* ==========================================
   RED LEFT ACCENT
========================================== */

.ciscon-key-highlight::before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 5px;

    height: 100%;

    background: #e21f2b;

    border-radius: 8px 0 0 8px;

    transition: width 0.3s ease;

}


/* ==========================================
   CONTENT
========================================== */

.ciscon-highlight-content {

    position: relative;

    margin: 0;

    padding: 0;

    color: #687386;

    font-size: 16px;

    line-height: 1.75;

    font-weight: 400;

}


/* ==========================================
   KEY TAKEAWAY
========================================== */

.ciscon-highlight-content strong {

    color: #102544;

    font-size: 16px;

    font-weight: 700;

}


/* ==========================================
   IMPORTANT WORDS
========================================== */

.ciscon-highlight-content b {

    color: #102544;

    font-weight: 700;

}


/* ==========================================
   HOVER
========================================== */

.ciscon-key-highlight:hover {

    transform: translateY(-2px);

    box-shadow:
        0 8px 22px rgba(16, 37, 68, 0.08);

}


.ciscon-key-highlight:hover::before {

    width: 7px;

}


/* ==========================================
   SIMPLE ANIMATION
   No opacity: prevents Elementor issues
========================================== */

.ciscon-key-highlight {

    animation: highlightSlide 0.6s ease-out both;

}


@keyframes highlightSlide {

    from {

        transform: translateY(12px);

    }

    to {

        transform: translateY(0);

    }

}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 900px) {

    .ciscon-key-highlight {

        padding: 16px 20px 16px 23px;

    }

    .ciscon-highlight-content {

        font-size: 15px;

        line-height: 1.7;

    }

    .ciscon-highlight-content strong {

        font-size: 15px;

    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 650px) {

    .ciscon-key-highlight {

        margin: 12px 0;

        padding: 14px 16px 14px 20px;

        border-radius: 7px;

    }

    .ciscon-highlight-content {

        font-size: 14px;

        line-height: 1.65;

    }

    .ciscon-highlight-content strong {

        font-size: 14px;

    }

}


/* ==========================================
   REDUCED MOTION
========================================== */

@media (prefers-reduced-motion: reduce) {

    .ciscon-key-highlight {

        animation: none;

    }

}

/* Titles And Para */

/* =========================================
   LAMINATE TYPES
========================================= */

.laminate-types,
.laminate-types * {
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif !important;
}


/* =========================================
   MAIN CONTAINER
========================================= */

.laminate-types {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;

    display: flex;
    flex-direction: column;

    gap: 0;

    padding: 5px 0 20px;
}


/* =========================================
   EACH ITEM
========================================= */

.laminate-type-item {

    position: relative;

    display: flex;
    align-items: flex-start;

    gap: 22px;

    padding: 22px 20px 22px 0;

    border-bottom: 1px solid #e5e7eb;

    transition:
        background 0.3s ease,
        transform 0.3s ease;

}


/* Remove border from last item */

.laminate-type-item:last-child {
    border-bottom: none;
}


/* =========================================
   NUMBER
========================================= */

.laminate-number {

    flex: 0 0 52px;

    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #fff5f5;

    border: 1px solid #e21f2b;

    color: #e21f2b;

    font-size: 14px;

    font-weight: 700;

    line-height: 1;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;

}


/* =========================================
   CONTENT
========================================= */

.laminate-type-content {

    flex: 1;

    min-width: 0;

}


/* =========================================
   HEADING
========================================= */

.laminate-type-content h3 {

    margin: 2px 0 7px;

    padding: 0;

    color: #102544;

    font-size: 19px;

    line-height: 1.4;

    font-weight: 700;

    letter-spacing: -0.2px;

}


/* =========================================
   DESCRIPTION
========================================= */

.laminate-type-content p {

    margin: 0;

    padding: 0;

    color: #667085;

    font-size: 15px;

    line-height: 1.7;

    font-weight: 400;

}


/* =========================================
   HOVER EFFECT
========================================= */

.laminate-type-item:hover {

    transform: translateX(5px);

}


.laminate-type-item:hover .laminate-number {

    background: #e21f2b;

    color: #ffffff;

    transform: scale(1.06);

    box-shadow:
        0 5px 14px rgba(226, 31, 43, 0.18);

}


.laminate-type-item:hover h3 {

    color: #e21f2b;

}


/* =========================================
   HEADING TRANSITION
========================================= */

.laminate-type-content h3 {

    transition:
        color 0.3s ease;

}


/* =========================================
   ANIMATION
========================================= */

.laminate-type-item {

    opacity: 0;

    animation:
        laminateReveal 0.6s ease forwards;

}


.laminate-type-item:nth-child(1) {
    animation-delay: 0.05s;
}

.laminate-type-item:nth-child(2) {
    animation-delay: 0.15s;
}

.laminate-type-item:nth-child(3) {
    animation-delay: 0.25s;
}

.laminate-type-item:nth-child(4) {
    animation-delay: 0.35s;
}

.laminate-type-item:nth-child(5) {
    animation-delay: 0.45s;
}


@keyframes laminateReveal {

    from {

        opacity: 0;

        transform: translateY(15px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .laminate-types {
        padding: 5px 10px 20px;
    }


    .laminate-type-item {

        gap: 18px;

        padding: 19px 10px 19px 0;

    }


    .laminate-number {

        flex-basis: 48px;

        width: 48px;

        height: 48px;

        font-size: 13px;

    }


    .laminate-type-content h3 {

        font-size: 17px;

    }


    .laminate-type-content p {

        font-size: 14px;

        line-height: 1.65;

    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

    .laminate-types {

        padding: 0 10px 15px;

    }


    .laminate-type-item {

        gap: 13px;

        padding: 17px 0;

    }


    .laminate-number {

        flex-basis: 40px;

        width: 40px;

        height: 40px;

        font-size: 11px;

    }


    .laminate-type-content h3 {

        margin-top: 0;

        margin-bottom: 6px;

        font-size: 16px;

        line-height: 1.45;

    }


    .laminate-type-content p {

        font-size: 13.5px;

        line-height: 1.65;

    }


    .laminate-type-item:hover {

        transform: translateX(2px);

    }

}


/* =========================================
   REDUCED MOTION
========================================= */

@media (prefers-reduced-motion: reduce) {

    .laminate-type-item {

        opacity: 1;

        animation: none;

    }

}

/* =========================================
   POPPINS
========================================= */

.cis-laminate-table-wrapper,
.cis-laminate-table-wrapper * {

    font-family: 'Poppins', sans-serif !important;

    box-sizing: border-box;

}


/* =========================================
   TABLE WRAPPER
========================================= */

.cis-laminate-table-wrapper {

    width: 100%;

    max-width: 1200px;

    margin: 20px auto;

    overflow-x: auto;

    border: 1px solid #e3e6ea;

    border-radius: 12px;

    background: #ffffff;

    box-shadow:
        0 6px 22px rgba(16, 37, 68, 0.06);

}


/* =========================================
   TABLE
========================================= */

.cis-laminate-type-table {

    width: 100%;

    min-width: 760px;

    border-collapse: separate;

    border-spacing: 0;

    margin: 0;

    background: #ffffff;

}


/* =========================================
   HEADER
========================================= */

.cis-laminate-type-table thead th {

    padding: 15px 20px;

    background: #102544;

    color: #ffffff;

    text-align: left;

    font-size: 14px;

    line-height: 1.4;

    font-weight: 600;

    letter-spacing: 0.1px;

    border: none;

}


/* First header */

.cis-laminate-type-table thead th:first-child {

    border-radius: 11px 0 0 0;

}


/* Last header */

.cis-laminate-type-table thead th:last-child {

    border-radius: 0 11px 0 0;

}


/* Red line below header */

.cis-laminate-type-table thead tr {

    position: relative;

}


/* =========================================
   TABLE BODY
========================================= */

.cis-laminate-type-table tbody td {

    padding: 14px 20px;

    color: #526173;

    font-size: 14px;

    line-height: 1.55;

    font-weight: 400;

    border-bottom: 1px solid #e8eaed;

    vertical-align: middle;

    background: #ffffff;

    transition:
        background 0.3s ease,
        color 0.3s ease;

}


/* =========================================
   FIRST COLUMN
========================================= */

.cis-laminate-type-table tbody td:first-child {

    color: #102544;

    font-weight: 600;

    position: relative;

    padding-left: 25px;

}


/* Red accent */

.cis-laminate-type-table tbody td:first-child::before {

    content: "";

    position: absolute;

    left: 10px;

    top: 50%;

    width: 4px;

    height: 0;

    border-radius: 4px;

    background: #e21f2b;

    transform: translateY(-50%);

    transition:
        height 0.3s ease;

}


/* =========================================
   ALTERNATING ROWS
========================================= */

.cis-laminate-type-table tbody tr:nth-child(even) td {

    background: #fafbfc;

}


/* =========================================
   ROW HOVER
========================================= */

.cis-laminate-type-table tbody tr {

    transition:
        transform 0.25s ease;

}


.cis-laminate-type-table tbody tr:hover td {

    background: #fff7f7;

}


.cis-laminate-type-table tbody tr:hover td:first-child {

    color: #e21f2b;

}


.cis-laminate-type-table tbody tr:hover td:first-child::before {

    height: 28px;

}


/* =========================================
   DURABILITY BADGES
========================================= */

.cis-durability {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 4px 10px;

    border-radius: 30px;

    font-size: 12px;

    line-height: 1.4;

    font-weight: 600;

    white-space: nowrap;

}


/* Very High */

.cis-durability.high {

    color: #b71925;

    background: #fff0f1;

    border: 1px solid #f4cdd0;

}


/* Moderate */

.cis-durability.moderate {

    color: #596579;

    background: #f1f3f5;

    border: 1px solid #dfe3e8;

}


/* =========================================
   LAST ROW
========================================= */

.cis-laminate-type-table tbody tr:last-child td {

    border-bottom: none;

}


/* =========================================
   PRICE COLUMN
========================================= */

.cis-laminate-type-table tbody td:last-child {

    color: #102544;

    font-weight: 600;

}


/* =========================================
   TABLE ENTRANCE ANIMATION
========================================= */

.cis-laminate-table-wrapper {

    animation:
        tableReveal 0.65s ease-out both;

}


@keyframes tableReveal {

    from {

        opacity: 0;

        transform: translateY(15px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .cis-laminate-table-wrapper {

        margin: 18px 0;

        border-radius: 10px;

    }


    .cis-laminate-type-table {

        min-width: 700px;

    }


    .cis-laminate-type-table thead th {

        padding: 13px 16px;

        font-size: 13px;

    }


    .cis-laminate-type-table tbody td {

        padding: 13px 16px;

        font-size: 13px;

    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

    .cis-laminate-table-wrapper {

        margin: 15px 0;

        border-radius: 8px;

        /* Smooth mobile scrolling */

        -webkit-overflow-scrolling: touch;

        scrollbar-width: thin;

    }


    .cis-laminate-type-table {

        min-width: 680px;

    }


    .cis-laminate-type-table thead th {

        padding: 12px 14px;

        font-size: 12px;

    }


    .cis-laminate-type-table tbody td {

        padding: 12px 14px;

        font-size: 12.5px;

        line-height: 1.5;

    }


    .cis-laminate-type-table tbody td:first-child {

        padding-left: 20px;

    }


    .cis-laminate-type-table tbody td:first-child::before {

        left: 7px;

    }


    .cis-durability {

        padding: 3px 8px;

        font-size: 11px;

    }

}

/* FAQ */

/* =========================================
   POPPINS
========================================= */

.cis-faq-section,
.cis-faq-section * {

    box-sizing: border-box;

    font-family: 'Poppins', sans-serif !important;

}


/* =========================================
   MAIN SECTION
========================================= */

.cis-faq-section {

    width: 100%;

    padding: 10px 0 30px;

}


/* =========================================
   CONTAINER
========================================= */

.cis-faq-container {

    width: 100%;

    max-width: 1000px;

    margin: 0 auto;

}


/* =========================================
   HEADING
========================================= */

.cis-faq-heading {

    text-align: center;

    margin-bottom: 28px;

}


.cis-faq-heading h2 {

    margin: 0 0 8px;

    color: #102544;

    font-size: 34px;

    line-height: 1.25;

    font-weight: 700;

    letter-spacing: -0.5px;

}


.cis-faq-heading p {

    max-width: 720px;

    margin: 0 auto;

    color: #69758b;

    font-size: 15px;

    line-height: 1.65;

    font-weight: 400;

}


/* =========================================
   FAQ ITEM
========================================= */

.cis-faq-item {

    position: relative;

    margin-bottom: 12px;

    background: #ffffff;

    border: 1px solid #e1e5ea;

    border-radius: 9px;

    overflow: hidden;

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;

}


/* =========================================
   HOVER
========================================= */

.cis-faq-item:hover {

    border-color: #e21f2b;

    box-shadow:
        0 5px 18px rgba(16, 37, 68, 0.07);

    transform: translateY(-1px);

}


/* =========================================
   ACTIVE ITEM
========================================= */

.cis-faq-item.active {

    border-color: #e21f2b;

    box-shadow:
        0 6px 20px rgba(16, 37, 68, 0.07);

}


/* =========================================
   QUESTION BUTTON
========================================= */

.cis-faq-question {

    position: relative;

    width: 100%;

    min-height: 64px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding: 17px 20px 17px 22px;

    margin: 0;

    border: none;

    outline: none;

    background: transparent;

    color: #102544;

    text-align: left;

    font-size: 16px;

    line-height: 1.5;

    font-weight: 600;

    cursor: pointer;

    transition:
        color 0.3s ease;

}


/* Question hover */

.cis-faq-question:hover {

    color: #e21f2b;

}


/* =========================================
   ICON
========================================= */

.cis-faq-icon {

    flex: 0 0 30px;

    width: 30px;

    height: 30px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid #e21f2b;

    border-radius: 50%;

    color: #e21f2b;

    font-size: 20px;

    line-height: 1;

    font-weight: 400;

    transition:
        transform 0.35s ease,
        background 0.3s ease,
        color 0.3s ease;

}


/* =========================================
   ACTIVE ICON
========================================= */

.cis-faq-item.active .cis-faq-icon {

    transform: rotate(45deg);

    background: #e21f2b;

    color: #ffffff;

}


/* =========================================
   ANSWER
========================================= */

.cis-faq-answer {

    display: grid;

    grid-template-rows: 0fr;

    transition:
        grid-template-rows 0.4s ease;

}


/* Inner paragraph */

.cis-faq-answer p {

    min-height: 0;

    overflow: hidden;

    margin: 0;

    padding: 0 22px;

    color: #69758b;

    font-size: 14.5px;

    line-height: 1.75;

    font-weight: 400;

    opacity: 0;

    transition:
        opacity 0.25s ease,
        padding 0.4s ease;

}


/* =========================================
   OPEN ANSWER
========================================= */

.cis-faq-item.active .cis-faq-answer {

    grid-template-rows: 1fr;

}


.cis-faq-item.active .cis-faq-answer p {

    padding: 0 22px 19px;

    opacity: 1;

}


/* =========================================
   RED TOP ACCENT
========================================= */

.cis-faq-item.active::before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 4px;

    height: 100%;

    background: #e21f2b;

}


/* =========================================
   ENTRANCE ANIMATION
========================================= */

.cis-faq-item {

    opacity: 0;

    animation: faqReveal 0.5s ease forwards;

}


.cis-faq-item:nth-child(2) {
    animation-delay: 0.05s;
}

.cis-faq-item:nth-child(3) {
    animation-delay: 0.10s;
}

.cis-faq-item:nth-child(4) {
    animation-delay: 0.15s;
}

.cis-faq-item:nth-child(5) {
    animation-delay: 0.20s;
}

.cis-faq-item:nth-child(6) {
    animation-delay: 0.25s;
}

.cis-faq-item:nth-child(7) {
    animation-delay: 0.30s;
}

.cis-faq-item:nth-child(8) {
    animation-delay: 0.35s;
}

.cis-faq-item:nth-child(9) {
    animation-delay: 0.40s;
}

.cis-faq-item:nth-child(10) {
    animation-delay: 0.45s;
}

.cis-faq-item:nth-child(11) {
    animation-delay: 0.50s;
}

.cis-faq-item:nth-child(12) {
    animation-delay: 0.55s;
}


@keyframes faqReveal {

    from {

        opacity: 0;

        transform: translateY(12px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .cis-faq-container {

        max-width: 90%;

    }


    .cis-faq-heading h2 {

        font-size: 30px;

    }


    .cis-faq-question {

        font-size: 15px;

        min-height: 60px;

    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

    .cis-faq-section {

        padding: 5px 0 20px;

    }


    .cis-faq-container {

        max-width: 100%;

        padding: 0 12px;

    }


    .cis-faq-heading {

        margin-bottom: 20px;

    }


    .cis-faq-heading h2 {

        font-size: 25px;

        letter-spacing: -0.3px;

    }


    .cis-faq-heading p {

        font-size: 13px;

        line-height: 1.6;

    }


    .cis-faq-item {

        margin-bottom: 9px;

        border-radius: 7px;

    }


    .cis-faq-question {

        min-height: 57px;

        padding: 14px 14px 14px 17px;

        gap: 12px;

        font-size: 14px;

        line-height: 1.45;

    }


    .cis-faq-icon {

        flex-basis: 27px;

        width: 27px;

        height: 27px;

        font-size: 18px;

    }


    .cis-faq-item.active .cis-faq-answer p {

        padding: 0 17px 16px;

        font-size: 13px;

        line-height: 1.65;

    }

}


/* =========================================
   ACCESSIBILITY
========================================= */

.cis-faq-question:focus-visible {

    box-shadow:
        inset 0 0 0 2px #e21f2b;

}


/* =========================================
   REDUCED MOTION
========================================= */

@media (prefers-reduced-motion: reduce) {

    .cis-faq-item {

        opacity: 1;

        animation: none;

    }

    .cis-faq-answer {

        transition: none;

    }

    .cis-faq-icon {

        transition: none;

    }

}

/* =========================================
   FORCE POPPINS
========================================= */

.cis-cta-section,
.cis-cta-section * {

    box-sizing: border-box;

    font-family: 'Poppins', sans-serif !important;

}


/* =========================================
   SECTION
========================================= */

.cis-cta-section {

    width: 100%;

    padding: 30px 0 40px;

}


/* =========================================
   CTA CONTAINER
========================================= */

.cis-cta-container {

    position: relative;

    width: 100%;

    max-width: 1200px;

    margin: 0 auto;

    padding: 48px 55px;

    overflow: hidden;

    border-radius: 16px;

    background: #102544;

    box-shadow:
        0 12px 35px rgba(16, 37, 68, 0.15);

}


/* =========================================
   RED ACCENT
========================================= */

.cis-cta-container::before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 6px;

    height: 100%;

    background: #e21f2b;

}


/* =========================================
   CONTENT
========================================= */

.cis-cta-content {

    position: relative;

    z-index: 2;

    max-width: 900px;

}


/* =========================================
   LABEL
========================================= */

.cis-cta-label {

    display: inline-block;

    margin-bottom: 12px;

    color: #e21f2b;

    font-size: 11px;

    line-height: 1.4;

    font-weight: 700;

    letter-spacing: 1.5px;

}


/* =========================================
   HEADING
========================================= */

.cis-cta-content h2 {

    margin: 0 0 13px;

    padding: 0;

    color: #ffffff;

    font-size: 34px;

    line-height: 1.25;

    font-weight: 700;

    letter-spacing: -0.5px;

}


/* =========================================
   DESCRIPTION
========================================= */

.cis-cta-content p {

    margin: 0;

    padding: 0;

    color: #d7deea;

    font-size: 15px;

    line-height: 1.8;

    font-weight: 400;

}


/* =========================================
   BOLD TEXT
========================================= */

.cis-cta-content p b {

    color: #ffffff;

    font-weight: 700;

}


/* =========================================
   BUTTON AREA
========================================= */

.cis-cta-actions {

    display: flex;

    align-items: center;

    gap: 14px;

    margin-top: 25px;

}


/* =========================================
   PRIMARY BUTTON
========================================= */

.cis-cta-button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 11px 19px;

    background: #e21f2b;

    color: #ffffff !important;

    border: 1px solid #e21f2b;

    border-radius: 6px;

    text-decoration: none !important;

    font-size: 13px;

    line-height: 1.4;

    font-weight: 600;

    transition:
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;

}


.cis-cta-button span {

    font-size: 18px;

    line-height: 1;

    transition:
        transform 0.3s ease;

}


.cis-cta-button:hover {

    background: #c91925;

    transform: translateY(-2px);

    box-shadow:
        0 7px 18px rgba(226, 31, 43, 0.3);

}


.cis-cta-button:hover span {

    transform: translateX(4px);

}


/* =========================================
   SECONDARY BUTTON
========================================= */

.cis-cta-secondary {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 11px 19px;

    color: #ffffff !important;

    border: 1px solid rgba(255, 255, 255, 0.35);

    border-radius: 6px;

    text-decoration: none !important;

    font-size: 13px;

    line-height: 1.4;

    font-weight: 500;

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;

}


.cis-cta-secondary:hover {

    background: rgba(255, 255, 255, 0.08);

    border-color: #ffffff;

    transform: translateY(-2px);

}


/* =========================================
   DECORATIVE GLOW
========================================= */

.cis-cta-glow {

    position: absolute;

    right: -100px;

    top: -130px;

    width: 330px;

    height: 330px;

    border-radius: 50%;

    background: rgba(226, 31, 43, 0.13);

    filter: blur(5px);

    animation: ctaGlow 5s ease-in-out infinite alternate;

}


/* =========================================
   DECORATIVE SHAPE
========================================= */

.cis-cta-shape {

    position: absolute;

    right: 70px;

    bottom: -90px;

    width: 180px;

    height: 180px;

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 50%;

}


/* =========================================
   PLUS
========================================= */

.cis-cta-plus {

    position: absolute;

    right: 45px;

    top: 35px;

    color: rgba(255, 255, 255, 0.15);

    font-size: 70px;

    line-height: 1;

    font-weight: 300;

    animation: plusFloat 4s ease-in-out infinite;

}


/* =========================================
   ANIMATIONS
========================================= */

.cis-cta-container {

    animation:
        ctaReveal 0.7s ease-out both;

}


@keyframes ctaReveal {

    from {

        opacity: 0;

        transform: translateY(18px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}


@keyframes ctaGlow {

    from {

        transform: scale(1);

        opacity: 0.7;

    }

    to {

        transform: scale(1.12);

        opacity: 1;

    }

}


@keyframes plusFloat {

    0%,
    100% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(-8px);

    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .cis-cta-section {

        padding: 25px 10px 35px;

    }


    .cis-cta-container {

        padding: 40px 38px;

    }


    .cis-cta-content h2 {

        font-size: 30px;

    }


    .cis-cta-content p {

        font-size: 14px;

        line-height: 1.7;

    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

    .cis-cta-section {

        padding: 20px 10px 30px;

    }


    .cis-cta-container {

        padding: 32px 24px;

        border-radius: 11px;

    }


    .cis-cta-container::before {

        width: 4px;

    }


    .cis-cta-label {

        font-size: 9px;

        letter-spacing: 1.2px;

        margin-bottom: 9px;

    }


    .cis-cta-content h2 {

        font-size: 25px;

        margin-bottom: 10px;

    }


    .cis-cta-content p {

        font-size: 13.5px;

        line-height: 1.7;

    }


    .cis-cta-actions {

        flex-direction: column;

        align-items: stretch;

        gap: 9px;

        margin-top: 20px;

    }


    .cis-cta-button,
    .cis-cta-secondary {

        width: 100%;

        padding: 11px 15px;

        font-size: 13px;

    }


    .cis-cta-plus {

        right: 18px;

        top: 15px;

        font-size: 50px;

    }


    .cis-cta-glow {

        right: -150px;

        top: -150px;

    }

}


/* =========================================
   REDUCED MOTION
========================================= */

@media (prefers-reduced-motion: reduce) {

    .cis-cta-container,
    .cis-cta-glow,
    .cis-cta-plus {

        animation: none;

    }

}

/* =========================================
   CISCON PROS & CONS
========================================= */

.cis-pros-cons-section,
.cis-pros-cons-section * {

    box-sizing: border-box;

    font-family: 'Poppins', sans-serif !important;

}


/* =========================================
   SECTION
========================================= */

.cis-pros-cons-section {

    width: 100%;

    padding: 15px 0 30px;

}


/* =========================================
   CONTAINER
========================================= */

.cis-pros-cons-container {

    width: 100%;

    max-width: 1100px;

    margin: 0 auto;

}


/* =========================================
   HEADING
========================================= */

.cis-pros-cons-heading {

    margin-bottom: 25px;

}


.cis-pros-cons-heading h2 {

    margin: 0;

    color: #102544;

    font-size: 32px;

    line-height: 1.25;

    font-weight: 700;

    letter-spacing: -0.5px;

}


/* =========================================
   GRID
========================================= */

.cis-pros-cons-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 22px;

}


/* =========================================
   CARD
========================================= */

.cis-pros-cons-card {

    position: relative;

    padding: 25px 27px 22px;

    background: #ffffff;

    border: 1px solid #e1e5ea;

    border-radius: 10px;

    overflow: hidden;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;

}


/* Top accent */

.cis-pros-cons-card::before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 100%;

    height: 4px;

    background: #e21f2b;

}


/* Hover */

.cis-pros-cons-card:hover {

    transform: translateY(-4px);

    border-color: #d7dce2;

    box-shadow:
        0 12px 28px rgba(16, 37, 68, 0.09);

}


/* =========================================
   CARD HEADER
========================================= */

.cis-pros-cons-card-header {

    display: flex;

    align-items: center;

    gap: 14px;

    margin-bottom: 20px;

}


/* =========================================
   MAIN ICON
========================================= */

.cis-pros-cons-icon {

    width: 42px;

    height: 42px;

    flex: 0 0 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    border: 1.5px solid #e21f2b;

    color: #e21f2b;

    font-size: 21px;

    font-weight: 600;

    line-height: 1;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;

}


/* =========================================
   HEADER HOVER
========================================= */

.cis-pros-cons-card:hover .cis-pros-cons-icon {

    background: #e21f2b;

    color: #ffffff;

    transform: rotate(5deg) scale(1.05);

}


/* =========================================
   LABEL
========================================= */

.cis-pros-cons-label {

    display: block;

    color: #102544;

    font-size: 20px;

    line-height: 1.3;

    font-weight: 700;

}


/* =========================================
   LIST
========================================= */

.cis-pros-cons-card ul {

    margin: 0;

    padding: 0;

    list-style: none;

}


/* =========================================
   LIST ITEM
========================================= */

.cis-pros-cons-card li {

    display: flex;

    align-items: flex-start;

    gap: 12px;

    padding: 12px 0;

    border-top: 1px solid #edf0f3;

    color: #69758b;

    font-size: 14.5px;

    line-height: 1.65;

    font-weight: 400;

}


/* =========================================
   LIST ICON
========================================= */

.cis-list-icon {

    flex: 0 0 24px;

    width: 24px;

    height: 24px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-top: 1px;

    border-radius: 50%;

    background: #fff3f4;

    color: #e21f2b;

    font-size: 13px;

    font-weight: 600;

    line-height: 1;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;

}


/* =========================================
   ITEM HOVER
========================================= */

.cis-pros-cons-card li:hover .cis-list-icon {

    background: #e21f2b;

    color: #ffffff;

    transform: scale(1.08);

}


/* =========================================
   ANIMATION
========================================= */

.cis-pros-cons-card {

    opacity: 0;

    animation: cisProsReveal 0.6s ease forwards;

}


.cis-advantages-card {

    animation-delay: 0.05s;

}


.cis-disadvantages-card {

    animation-delay: 0.18s;

}


@keyframes cisProsReveal {

    from {

        opacity: 0;

        transform: translateY(18px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 800px) {

    .cis-pros-cons-container {

        max-width: 92%;

    }

    .cis-pros-cons-grid {

        grid-template-columns: 1fr;

        gap: 16px;

    }

    .cis-pros-cons-heading h2 {

        font-size: 29px;

    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .cis-pros-cons-section {

        padding: 10px 0 25px;

    }


    .cis-pros-cons-container {

        max-width: 100%;

        padding: 0 12px;

    }


    .cis-pros-cons-heading {

        margin-bottom: 18px;

    }


    .cis-pros-cons-heading h2 {

        font-size: 24px;

        letter-spacing: -0.3px;

    }


    .cis-pros-cons-grid {

        gap: 12px;

    }


    .cis-pros-cons-card {

        padding: 21px 18px 17px;

        border-radius: 8px;

    }


    .cis-pros-cons-card-header {

        gap: 11px;

        margin-bottom: 14px;

    }


    .cis-pros-cons-icon {

        width: 36px;

        height: 36px;

        flex-basis: 36px;

        font-size: 18px;

    }


    .cis-pros-cons-label {

        font-size: 17px;

    }


    .cis-pros-cons-card li {

        gap: 9px;

        padding: 10px 0;

        font-size: 13px;

        line-height: 1.6;

    }


    .cis-list-icon {

        flex-basis: 21px;

        width: 21px;

        height: 21px;

        font-size: 11px;

    }

}


/* =========================================
   REDUCED MOTION
========================================= */

@media (prefers-reduced-motion: reduce) {

    .cis-pros-cons-card {

        opacity: 1;

        animation: none;

    }

}