.section-brand {
    background: linear-gradient(
        135deg,
        #e0f2fe 0%,  
        #dbeafe 40%,  
        #f0f9ff 100%
    );
    color: #0c4a6e;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

/*
.section-brand::before {
    content: "";
    position: absolute;
    top: 15%;
    left: -100px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(56, 189, 248, 0.3) 0%, transparent 70%);
    border: 1px solid rgba(56, 189, 248, 0.2);
    backdrop-filter: blur(20px);
    box-shadow: 
        0 8px 32px rgba(56, 189, 248, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    opacity: 0.8;
    animation: float 7s ease-in-out infinite;
    z-index: 0;
}

.section-brand::after {
    content: "";
    position: absolute;
    bottom: -100px;
    right: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(14, 165, 233, 0.25) 0%, transparent 70%);
    border: 1px solid rgba(14, 165, 233, 0.15);
    backdrop-filter: blur(25px);
    box-shadow: 
        0 8px 32px rgba(14, 165, 233, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    opacity: 0.7;
    animation: float 9s ease-in-out infinite reverse;
    z-index: 0;
}

@keyframes float {
    0%   { transform: translateY(0) translateX(0) scale(1); }
    50%  { transform: translateY(-40px) translateX(30px) scale(1.05); }
    100% { transform: translateY(0) translateX(0) scale(1); }
}
*/

.section-brand .container {
    position: relative;
    z-index: 1;
}

.section-gray {
    background: linear-gradient(135deg, #f8fafc 0%, #e6eef6 50%, #f8fafc 100%);
    color: #0f172a;
}

.underlined {
    position: relative;
    margin-right: 1rem;
}
.underlined:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    height: 7px;
    width: 100%;
    border: solid 2px #cb1829;
    border-color: #cb1829 transparent transparent transparent;
    border-radius: 50%;
}

.feature-card {        
    padding: 40px 40px 0px 40px;
}