/* Our Benefits section */
.benefits-section {
    position: relative;
    overflow: hidden;
    padding: 72px 0 82px;
    background:
        radial-gradient(ellipse at 50% 46%, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.8) 38%, transparent 70%),
        linear-gradient(135deg, #f5f9ff 0%, #ffffff 42%, #f5f8ff 100%);
}

.benefits-container {
    position: relative;
    z-index: 1;
    max-width: 1240px;
}

.benefits-dot-field,
.benefits-arc {
    position: absolute;
    display: block;
    pointer-events: none;
}

.benefits-dot-field {
    width: 300px;
    height: 280px;
    opacity: 0.48;
    background-image: radial-gradient(circle, rgba(54, 117, 243, 0.46) 0 2px, transparent 2.8px);
    background-size: 18px 18px;
    -webkit-mask-image: radial-gradient(ellipse at center, #000 0%, rgba(0, 0, 0, 0.85) 38%, transparent 72%);
    mask-image: radial-gradient(ellipse at center, #000 0%, rgba(0, 0, 0, 0.85) 38%, transparent 72%);
}

.benefits-dot-field-top {
    top: -62px;
    left: -72px;
}

.benefits-dot-field-bottom {
    right: -72px;
    bottom: -50px;
}

.benefits-arc {
    width: 290px;
    height: 290px;
    border: 1px solid rgba(77, 132, 250, 0.2);
    border-radius: 50%;
}

.benefits-arc::before,
.benefits-arc::after {
    position: absolute;
    content: "";
    border: 1px solid rgba(77, 132, 250, 0.16);
    border-radius: 50%;
}

.benefits-arc::before { inset: 18px; }
.benefits-arc::after { inset: 37px; }

.benefits-arc-top {
    top: -206px;
    right: -88px;
}

.benefits-arc-bottom {
    bottom: -220px;
    left: -104px;
}

.benefits-header {
    margin: 0 auto 72px;
}

.benefits-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 21px;
    border: 1px solid rgba(71, 132, 246, 0.18);
    border-radius: 999px;
    color: #1268ed;
    background: rgba(240, 246, 255, 0.74);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.benefits-header h2 {
    margin: 21px 0 12px;
    color: #0b1b42;
    font-size: clamp(32px, 3.2vw, 48px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -1.4px;
}

.benefits-header h2 span { color: #1768ed; }

.benefits-header p {
    max-width: 740px;
    margin: 0 auto;
    color: #58709a;
    font-size: 16px;
    line-height: 1.55;
}

.benefits-divider,
.benefit-card-divider {
    display: block;
    height: 3px;
    border-radius: 999px;
    background: #1268ed;
}

.benefits-divider {
    position: relative;
    width: 52px;
    margin: 23px auto 0;
}

.benefits-divider::after {
    position: absolute;
    top: 50%;
    left: calc(100% + 8px);
    width: 5px;
    height: 5px;
    content: "";
    border-radius: 50%;
    background: #1268ed;
    transform: translateY(-50%);
}

.benefits-grid { row-gap: 56px; }

.benefit-card {
    position: relative;
    min-height: 232px;
    padding: 65px 32px 25px;
    border: 1px solid rgba(76, 137, 242, 0.2);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 12px 28px rgba(45, 94, 180, 0.07);
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.benefit-card:hover {
    border-color: rgba(31, 104, 237, 0.4);
    box-shadow: 0 18px 34px rgba(45, 94, 180, 0.13);
    transform: translateY(-5px);
}

.benefit-card-icon {
    position: absolute;
    top: -47px;
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 92px;
    height: 92px;
    border: 1px solid rgba(61, 127, 242, 0.2);
    border-radius: 50%;
    color: #1268ed;
    background: radial-gradient(circle at 34% 28%, #ffffff 0%, #f7faff 55%, #edf4ff 100%);
    box-shadow: 0 9px 20px rgba(50, 104, 205, 0.09);
    font-size: 34px;
    transform: translateX(-50%);
}

.benefit-card h3 {
    margin: 0;
    color: #0b1b42;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.25;
}

.benefit-card-divider {
    width: 44px;
    margin: 13px auto 15px;
}

.benefit-card p {
    max-width: 280px;
    margin: 0 auto;
    color: #5e759f;
    font-size: 14px;
    line-height: 1.62;
}

@media (max-width: 991px) {
    .benefits-section { padding: 64px 0 70px; }
    .benefits-header { margin-bottom: 65px; }
    .benefits-grid { row-gap: 58px; }
    .benefit-card { margin: 0 auto; max-width: 390px; }
}

@media (max-width: 767px) {
    .benefits-section { padding: 55px 0 62px; }
    .benefits-header { margin-bottom: 58px; }
    .benefits-header h2 { font-size: 31px; letter-spacing: -0.8px; }
    .benefits-header p { padding: 0 8px; font-size: 14px; }
    .benefits-grid { row-gap: 55px; }
    .benefit-card { min-height: 220px; padding: 61px 25px 24px; }
    .benefit-card-icon { width: 84px; height: 84px; top: -43px; font-size: 31px; }
    .benefits-dot-field { opacity: 0.28; }
    .benefits-arc { opacity: 0.65; }
}
