/* ===== SALIENT FEATURES SLIDER ===== */
.salient-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f6ff 0%, #e8f2ff 100%);
    position: relative;
    overflow: hidden;
}

.salient-section::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(46,111,168,0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.salient-left {
    position: relative;
    z-index: 1;
}

.salient-intro {
    font-size: 14.5px;
    color: #64748b;
    line-height: 1.75;
    margin-bottom: 28px;
}

.salient-nav {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.salient-prev-btn,
.salient-next-btn {
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 2px solid #1a3a5c;
    background: transparent;
    color: #1a3a5c;
    font-size: 18px;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.25s;
    flex-shrink: 0;
}

.salient-prev-btn:hover,
.salient-next-btn:hover {
    background: #1a3a5c;
    color: #fff;
    transform: scale(1.08);
}

.salient-progress {
    flex: 1;
    height: 4px;
    background: rgba(26,58,92,0.15);
    border-radius: 2px;
    overflow: hidden;
}

.salient-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #1a3a5c, #5aace8);
    border-radius: 2px;
    transition: width 0.4s ease;
    width: 12.5%;
}

.salient-counter {
    font-size: 13px;
    color: #94a3b8;
    font-weight: 600;
}

.salient-counter span:first-child {
    font-size: 22px;
    color: #1a3a5c;
    font-weight: 700;
}

/* Slider */
.salient-slider-wrap {
    overflow: hidden;
    border-radius: 16px;
}

.salient-slider {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.salient-slide {
    min-width: 50%;
    padding: 0 10px;
}

@media (max-width: 768px) {
    .salient-slide { min-width: 100%; }
}

.salient-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 28px;
    height: 100%;
    min-height: 240px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(26,58,92,0.08);
    box-shadow: 0 4px 24px rgba(26,58,92,0.08);
    transition: all 0.3s ease;
}

.salient-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(26,58,92,0.14);
    border-color: rgba(46,111,168,0.2);
}

.salient-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1a3a5c, #5aace8);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.salient-card:hover::after {
    transform: scaleX(1);
}

.salient-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #eef4ff, #dbeafe);
    color: #2e6fa8;
    font-size: 24px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.salient-card:hover .salient-icon {
    background: linear-gradient(135deg, #1a3a5c, #2e6fa8);
    color: #fff;
    transform: rotate(-5deg) scale(1.1);
}

.salient-number {
    position: absolute;
    top: 20px; right: 24px;
    font-size: 48px;
    font-weight: 800;
    color: rgba(26,58,92,0.05);
    line-height: 1;
    transition: color 0.3s;
}

.salient-card:hover .salient-number {
    color: rgba(26,58,92,0.08);
}

.salient-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a3a5c;
    margin-bottom: 10px;
    line-height: 1.3;
}

.salient-text {
    font-size: 13.5px;
    color: #64748b;
    line-height: 1.75;
    margin: 0;
}

/* Dots */
.salient-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.salient-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(26,58,92,0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.salient-dot.active {
    background: #1a3a5c;
    width: 24px;
    border-radius: 4px;
}
