
/* ============================================
   V11 Clean Mode Cards
   Removes numbers/icons and makes the block
   cleaner and more premium.
   ============================================ */
.cl11-mode-zone{
    padding:86px 0 58px;
    background:linear-gradient(180deg,#0c1528 0%,#0d1730 100%);
}
.cl11-section-top{
    text-align:center;
    max-width:820px;
    margin:0 auto 30px;
}
.cl11-section-top span{
    display:inline-block;
    color:#ffbe7a;
    font-size:13px;
    font-weight:700;
    letter-spacing:.14em;
    text-transform:uppercase;
}
.cl11-section-top h2{
    margin:12px 0 12px !important;
    color:#fff !important;
    font-size:clamp(32px,4vw,48px) !important;
    line-height:1.02 !important;
    letter-spacing:-.02em !important;
}
.cl11-section-top p{
    margin:0 auto !important;
    max-width:700px;
    color:#abb9d0 !important;
    font-size:17px !important;
    line-height:1.7 !important;
}
.cl11-mode-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:20px;
}
.cl11-mode-card{
    position:relative;
    overflow:hidden;
    padding:34px 34px 30px;
    border-radius:26px;
    background:
      radial-gradient(circle at top right, rgba(255,255,255,.03), transparent 28%),
      linear-gradient(180deg,#162542 0%,#12203a 100%);
    border:1px solid rgba(255,255,255,.08);
    box-shadow:0 20px 60px rgba(2,8,23,.18);
    min-height:275px;
    transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.cl11-mode-card:hover{
    transform:translateY(-4px);
    box-shadow:0 26px 70px rgba(2,8,23,.24);
    border-color:rgba(255,255,255,.12);
}
.cl11-mode-topline{
    width:74px;
    height:4px;
    border-radius:999px;
    margin-bottom:24px;
}
.cl11-mode-card-uop .cl11-mode-topline{
    background:linear-gradient(90deg,#ffb35d,#ff7f22);
    box-shadow:0 0 18px rgba(255,127,34,.35);
}
.cl11-mode-card-emek .cl11-mode-topline{
    background:linear-gradient(90deg,#8ce1a4,#2ccf71);
    box-shadow:0 0 18px rgba(44,207,113,.25);
}
.cl11-mode-card small{
    display:block;
    margin-bottom:10px;
    color:#8ea2c0;
    font-size:12px;
    font-weight:700;
    letter-spacing:.14em;
    text-transform:uppercase;
}
.cl11-mode-card h3{
    margin:0 0 12px !important;
    color:#fff !important;
    font-size:clamp(30px,3.1vw,44px) !important;
    line-height:1 !important;
    letter-spacing:-.03em !important;
}
.cl11-mode-card p{
    margin:0 0 22px !important;
    color:#c1cde0 !important;
    font-size:18px !important;
    line-height:1.65 !important;
    max-width:90%;
}
.cl11-mode-tags{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}
.cl11-mode-tags span{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:40px;
    padding:0 16px;
    border-radius:999px;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    color:#edf3ff;
    font-size:14px;
    font-weight:600;
}
.cl11-mode-card-uop:after,
.cl11-mode-card-emek:after{
    content:"";
    position:absolute;
    width:220px;
    height:220px;
    border-radius:999px;
    right:-90px;
    top:-80px;
    opacity:.16;
    pointer-events:none;
}
.cl11-mode-card-uop:after{
    background:radial-gradient(circle,#ff8d2b 0%,transparent 70%);
}
.cl11-mode-card-emek:after{
    background:radial-gradient(circle,#3acd76 0%,transparent 70%);
}

@media(max-width:900px){
    .cl11-mode-grid{
        grid-template-columns:1fr;
    }
}
@media(max-width:620px){
    .cl11-mode-zone{
        padding:62px 0 42px;
    }
    .cl11-mode-card{
        padding:26px 22px 24px;
        border-radius:22px;
        min-height:auto;
    }
    .cl11-mode-card h3{
        font-size:32px !important;
    }
    .cl11-mode-card p{
        max-width:100%;
        font-size:16px !important;
    }
    .cl11-mode-tags span{
        width:auto;
        font-size:13px;
    }
}
