.fl-button-group .fl-button {
    display: inline-block;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    border: none;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: background 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    font-family: "Segoe UI", Arial, sans-serif;
    letter-spacing: 0.3px;
}


#dual-button-microsoft .fl-button-group-buttons > div:nth-child(1) .fl-button {
    background: #0072ce;
}
#dual-button-microsoft .fl-button-group-buttons > div:nth-child(1) .fl-button:hover {
    background: linear-gradient(135deg, #0063B1, #004578);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}


#dual-button-microsoft .fl-button-group-buttons > div:nth-child(2) .fl-button {
    background: #55b4bc;
}
#dual-button-microsoft .fl-button-group-buttons > div:nth-child(2) .fl-button:hover {
    background: linear-gradient(135deg, #55b4bc, #3a8d94);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}

.fl-button-group .fl-button:focus {
    outline: 2px solid #50E6FF;
    outline-offset: 2px;
}


#hero-h1-microsoft {
    background: linear-gradient(90deg, #ffffff, #a8edea); /* light teal → pink */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}


  .microsoft-content-tab-navigation {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 6px;
    margin: 0 auto 30px;
    background: #ffffff;
    border-radius: 10px;
    padding: 6px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    max-width: 640px;
}

.microsoft-content-tab-btn {
    flex: 1 1 0;
    padding: 12px 24px;
    min-height: 44px;
    border: none;
    background: transparent;
    font-weight: 600;
    line-height: 1.2;
    border-radius: 6px;
    cursor: pointer;
    color: #55B4BC;
    transition: background 0.3s ease, color 0.3s ease, box-shadow 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
}

.microsoft-content-tab-btn i {
    font-size: 1.1em;
}

.microsoft-content-tab-btn.active {
    /*background: #004D9F;*/
    background: linear-gradient(135deg, #0078d4 0%, #106ebe 50%, #40e0d0 100%);
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

.microsoft-content-tab-btn:not(.active):hover {
    background: #BFE0F4;
    /*color: #ffffff;*/
    color: #55B4BC;
}

.microsoft-content-tab-btn:focus-visible {
    outline: 2px solid #106ebe;
    outline-offset: 2px;
    box-shadow: 0 0 0 2px rgba(0,120,212,0.25);
}

.microsoft-content-tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
    background: #ffffff;
    /*padding: 10px;*/
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.microsoft-content-tab-content.active {
    display: block;
}

@media (prefers-reduced-motion: reduce) {
    .microsoft-content-tab-content {
        animation: none;
    }
}

@media (max-width: 900px) {
    .microsoft-content-tab-navigation {
        max-width: 100%;
        padding: 6px;
    }
}

@media (max-width: 600px) {
    .microsoft-content-tab-navigation {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        max-width: 100%;
        width: 100%;
        padding: 8px;
    }

    .microsoft-content-tab-btn {
        width: 100%;
        padding: 14px 16px;
        border-radius: 8px;
        white-space: normal;
    }

    .microsoft-content-tab-content {
        padding: 20px;
    }
}

@media (max-width: 360px) {
    .microsoft-content-tab-btn {
        padding: 12px 14px;
    }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}


@media (min-width: 1024px) {
    #microsoft-content-callout-software {
        display: flex;
        align-items: stretch;
        height: 475px !important;
    }
}


#microsoft-content-callout,
#microsoft-content-callout .fl-module-content,
#microsoft-content-callout .fl-callout,
#microsoft-content-callout .fl-callout-content,
#microsoft-content-callout .fl-callout-title {
    overflow: visible;
}

#microsoft-content-callout .fl-callout-title {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: nowrap;
    line-height: 1.15;
}

#microsoft-content-callout .fl-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 6px;
    border-radius: 12px;
    background: linear-gradient(135deg, #BF2F99, #800080);
    box-shadow: 0 6px 18px rgba(143, 179, 255, 0.45);
    color: #fff;
    flex: 0 0 auto;
    margin-left: 6px;
}

#microsoft-content-callout .fl-icon i {
    display: block;
    font-size: 22px;
    line-height: 1;
    color: inherit;
}

#microsoft-content-callout a {
    color: #55b4bc;
    /*font-weight: 600;*/
    /*transition: color 0.2s ease-in-out, text-shadow 0.2s ease-in-out;*/
}

#microsoft-content-callout a:hover,
#microsoft-content-callout a:focus {
    color: #3b72e1;
    /*text-shadow: 0 0 6px rgba(47, 125, 225, 0.6);*/
}

#microsoft-content-callout a:visited {
    color: #55b4bc;
}


 #microsoft-content-callout-industry,
 #microsoft-content-callout-industry .fl-module-content,
 #microsoft-content-callout-industry .fl-callout,
 #microsoft-content-callout-industry .fl-callout-content,
 #microsoft-content-callout-industry .fl-callout-title {
     overflow: visible;
 }

#microsoft-content-callout-industry .fl-callout-title {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: nowrap;
    line-height: 1.15;
}

#microsoft-content-callout-industry .fl-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 6px;
    border-radius: 12px;
    background: linear-gradient(135deg, #0078d4 0%, #106ebe 50%, #40e0d0 100%);

    color: #fff;
    flex: 0 0 auto;
    margin-left: 6px;
}


#microsoft-content-callout-industry .fl-icon i {
    display: block;
    font-size: 22px;
    line-height: 1;
    color: inherit;
}

/*#microsoft-content-callout-industry a {*/
/*    color: #8a2be2;*/
/*    font-weight: 600;*/
/*    transition: color 0.2s ease-in-out, text-shadow 0.2s ease-in-out;*/
/*}*/

/*#microsoft-content-callout-industry a:hover,*/
/*#microsoft-content-callout-industry a:focus {*/
/*    color: #2f7de1;*/
/*    text-shadow: 0 0 6px rgba(47, 125, 225, 0.6);*/
/*}*/

/*#microsoft-content-callout-industry a:visited {*/
/*    color: #8a2be2;*/
/*}*/


/* AI Trust Callout */
#microsoft-content-callout-ai-trust {
    --primary-color: #0078d4;
    --title-color: #A7E3E5;
    --icon-gradient: linear-gradient(135deg, #0078d4 0%, #106ebe 50%, #40e0d0 100%);
    --card-gradient: linear-gradient(90deg, #0078d4, #40e0d0, #00bcf2);
    --shadow-color: rgba(0, 120, 212, 0.3);
    color: #1a1a1a;
    max-width: 900px;
}

#microsoft-content-callout-ai-trust .fl-callout-title {
    display: flex;
    align-items: center;
    color: var(--title-color);
    gap: 12px;
    line-height: 1.2;
    margin-bottom: 16px;
    font-size: 20px;
}

#microsoft-content-callout-ai-trust .fl-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%; /* circle */
    background: var(--icon-gradient);
    color: #fff;
    flex: 0 0 auto;
    box-shadow: 0 4px 10px var(--shadow-color);
    margin-left: 10px;
    padding: 0;
}

#microsoft-content-callout-ai-trust .fl-icon i {
    line-height: 1;
    color: inherit;
}

#microsoft-content-callout-ai-trust .fl-callout-text {
    color: #fff;
}


#microsoft-content-callout-ai-trust a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease, text-shadow 0.2s ease;
}

#microsoft-content-callout-ai-trust a:hover,
#microsoft-content-callout-ai-trust a:focus {
    color: #004578;
    text-shadow: 0 0 6px rgba(0, 120, 212, 0.5);
}

/* Collaboration Callout */
#microsoft-content-callout-collaboration {
    --primary-color: #107c10;
    --title-color: #D61C4E;
    /*--icon-gradient: linear-gradient(135deg, #107c10 0%, #33c481 50%, #52e689 100%);*/
    --icon-gradient: linear-gradient(135deg, #D61C4E 0%, #EA4C89 50%, #FF8AAE 100%);
    --card-gradient: linear-gradient(90deg, #107c10, #33c481, #52e689);
    --shadow-color: rgba(16, 124, 16, 0.3);
    border-radius: 16px;
    color: #1a1a1a;
    max-width: 900px;
}

#microsoft-content-callout-collaboration .fl-callout-title {
    display: flex;
    align-items: center;
    color: var(--title-color);
    gap: 12px;
    line-height: 1.2;
    margin-bottom: 16px;
    font-size: 20px;
}

#microsoft-content-callout-collaboration .fl-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%; /* circle */
    background: var(--icon-gradient);
    color: #fff;
    flex: 0 0 auto;
    box-shadow: 0 4px 10px var(--shadow-color);
    margin-left: 10px;
    padding: 0;
}

#microsoft-content-callout-collaboration .fl-icon i {
    line-height: 1;
    color: inherit;
}

#microsoft-content-callout-collaboration .fl-callout-text {
    color: #fff;
}


#microsoft-content-callout-collaboration a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease, text-shadow 0.2s ease;
}

#microsoft-content-callout-collaboration a:hover,
#microsoft-content-callout-collaboration a:focus {
    color: #0b5a0b;
    text-shadow: 0 0 6px rgba(16, 124, 16, 0.5);
}

/* Security Callout */
#microsoft-content-callout-security {
    --primary-color: #8661c5;
    --title-color: #b794f6;
    --icon-gradient: linear-gradient(135deg, #800080 0%, #b794f6 50%, #d6bcfa 100%);
    --card-gradient: linear-gradient(90deg, #8661c5, #b794f6, #d6bcfa);
    --shadow-color: rgba(134, 97, 197, 0.3);
    border-radius: 16px;
    color: #1a1a1a;
    max-width: 900px;
}

#microsoft-content-callout-security .fl-callout-title {
    display: flex;
    align-items: center;
    color: var(--title-color);
    gap: 12px;
    line-height: 1.2;
    margin-bottom: 16px;
    font-size: 20px;
}

#microsoft-content-callout-security .fl-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%; /* circle */
    background: var(--icon-gradient);
    color: #fff;
    flex: 0 0 auto;
    box-shadow: 0 4px 10px var(--shadow-color);
    margin-left: 10px;
    padding: 0;
}

#microsoft-content-callout-security .fl-icon i {
    line-height: 1;
    color: inherit;
}

#microsoft-content-callout-security .fl-callout-text {
    color: #fff;
}

#microsoft-content-callout-security a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease, text-shadow 0.2s ease;
}

#microsoft-content-callout-security a:hover,
#microsoft-content-callout-security a:focus {
    color: #6b4e9d;
    text-shadow: 0 0 6px rgba(134, 97, 197, 0.5);
}

/* ROI Callout */
#microsoft-content-callout-roi {
    --primary-color: #d83b01;
    --title-color: #ff8c00;
    --icon-gradient: linear-gradient(135deg, #d83b01 0%, #ff8c00 50%, #ffa94d 100%);
    --card-gradient: linear-gradient(90deg, #d83b01, #ff8c00, #ffa94d);
    --shadow-color: rgba(216, 59, 1, 0.3);
    border-radius: 16px;
    color: #1a1a1a;
    max-width: 900px;
}

#microsoft-content-callout-roi .fl-callout-title {
    display: flex;
    align-items: center;
    color: var(--title-color);
    gap: 12px;
    line-height: 1.2;
    margin-bottom: 16px;
    font-size: 20px;
}

#microsoft-content-callout-roi .fl-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%; /* circle */
    background: var(--icon-gradient);
    color: #fff;
    flex: 0 0 auto;
    box-shadow: 0 4px 10px var(--shadow-color);
    margin-left: 10px;
    padding: 0;
}

#microsoft-content-callout-roi .fl-icon i {
    line-height: 1;
    color: inherit;
}

#microsoft-content-callout-roi .fl-callout-text {
    color: #fff;
}


#microsoft-content-callout-roi a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease, text-shadow 0.2s ease;
}

#microsoft-content-callout-roi a:hover,
#microsoft-content-callout-roi a:focus {
    color: #a52d01;
    text-shadow: 0 0 6px rgba(216, 59, 1, 0.5);
}


@media (min-width: 1025px) {
    #microsoft-content-callout-benefits > .fl-col-content > .fl-col-group > .fl-col:nth-child(1),
    #microsoft-content-callout-benefits > .fl-col-content > .fl-col-group > .fl-col:nth-child(2),
    #microsoft-content-callout-benefits > .fl-col-content > .fl-col-group > .fl-col:nth-child(3) {
        position: relative;
        box-sizing: border-box;
        padding-left: 10px;
    }

    #microsoft-content-callout-benefits > .fl-col-content > .fl-col-group > .fl-col:nth-child(1)::after,
    #microsoft-content-callout-benefits > .fl-col-content > .fl-col-group > .fl-col:nth-child(2)::after,
    #microsoft-content-callout-benefits > .fl-col-content > .fl-col-group > .fl-col:nth-child(3)::after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 1px;
        height: 100%;
        background: linear-gradient(
                to bottom,
                rgba(238, 238, 238, 0) 0%,
                #eeeeee 50%,
                rgba(238, 238, 238, 0) 100%
        );
    }
}


#microsoft-featured-product {
    /*background: linear-gradient(135deg, #0078d4 0%, #106ebe 50%, #40e0d0 100%) !important;*/
    background: linear-gradient(45deg, #dd6fc6 0%, #dd6fc6 50%, #e5e5e5 100%) !important;
    border-radius: 10px !important;
    max-width: 1280px;
    margin: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
    padding: 20px;
}

#microsoft-featured-product h2 {
    color: #ffffff !important;
}


#microsoft-content-callout-button .fl-button,
#microsoft-content-callout-button .fl-button .fl-button-text {
    color: #ffffff !important;
}

#microsoft-content-callout-button .fl-button:hover,
#microsoft-content-callout-button .fl-button:focus,
#microsoft-content-callout-button .fl-button:hover .fl-button-text,
#microsoft-content-callout-button .fl-button:focus .fl-button-text {
    color: #55b4bc !important;
}

/*#microsoft-content-callout img[alt*="logo"],*/
/*#microsoft-content-callout img[src*="logo"] {*/
/*    width: 200px;*/
/*    height: 200px;*/
/*    object-fit: contain;*/
/*    border-radius: 50%;*/
/*    padding: 0px;*/
/*    box-shadow: 0 0 50px 15px rgba(0, 128, 255, 0.5);*/
/*}*/
