/* ═══════════════════════════════════════════
   RL Benefits Section
   ═══════════════════════════════════════════ */

.rl-benefits-section,
body .rl-benefits-section {
    padding: 100px 0 120px;
    color: #ffffff !important;
    overflow: hidden;
}

.rl-benefits-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.rl-benefits-headline {
    font-family: 'Inter Display', sans-serif ;
    font-size: 48px ;
    font-weight: 600 ;
    line-height: 1.1;
    max-width: 800px;
    margin-bottom: 80px;
    color: #ffffff !important;
}

/* ── Grid & Line ── */
.rl-benefits-grid-wrapper {
    position: relative;
    padding-top: 20px;
}

.rl-benefits-line {
    position: absolute;
    top: 27px; /* Matches center of dot */
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 1) !important;
    z-index: 1;
}

.rl-benefits-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.rl-benefits-item {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.rl-benefits-dot-wrapper {
    height: 15px;
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.rl-benefits-dot {
    width: 14px;
    height: 14px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rl-benefits-item:hover .rl-benefits-dot {
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
}

/* ── Text Content ── */
.rl-benefits-title {
    font-family: 'Inter Display', sans-serif;
    font-size: 32px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 60px;
    color: #ffffff !important;
    min-height: 2.2em; /* Ensure alignment */
}

.rl-benefits-desc {
    font-family: 'Inter Display', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8) !important;
    max-width: 260px;
}

/* Responsive */
@media (max-width: 1100px) {
    .rl-benefits-title { font-size: 24px; }
}

@media (max-width: 768px) {
    .rl-benefits-line { display: none; }
    .rl-benefits-grid { flex-direction: column; gap: 60px; }
    .rl-benefits-dot-wrapper { margin-bottom: 20px; }
    .rl-benefits-title { margin-bottom: 15px; min-height: auto; }
    .rl-benefits-desc { max-width: 100%; }
}
