.th-benefits-section,
.th-benefits-section * {
    box-sizing: border-box;
}

.th-benefits-section {
    position: relative;
    padding: clamp(68px, 8vw, 112px) 20px;
    overflow: hidden;
    background:
        linear-gradient(135deg, #edf5ff 0%, #f8fbff 48%, #eff9f0 100%);
    isolation: isolate;
}

.th-benefits-section::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    content: "";
    opacity: .38;
    background-image:
        linear-gradient(rgba(24, 90, 159, .055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(24, 90, 159, .055) 1px, transparent 1px);
    background-size: 38px 38px;
    mask-image: linear-gradient(to bottom, transparent, #000 22%, #000 78%, transparent);
}

.th-benefits-section__orb {
    position: absolute;
    z-index: -1;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(10px);
}

.th-benefits-section__orb--one {
    top: -240px;
    left: -90px;
    background: radial-gradient(circle, rgba(20, 103, 232, .23), transparent 68%);
}

.th-benefits-section__orb--two {
    right: -130px;
    bottom: -270px;
    background: radial-gradient(circle, rgba(100, 189, 69, .24), transparent 68%);
}

.th-benefits-section__inner {
    position: relative;
    max-width: 1400px;
}

.th-benefits-section__heading {
    max-width: 760px;
    margin: 0 auto clamp(36px, 5vw, 58px);
}

.th-benefits-section__eyebrow {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 7px 12px;
    color: #0b5fbd;
    border: 1px solid rgba(20, 103, 232, .16);
    border-radius: 999px;
    background: rgba(255, 255, 255, .58);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.th-benefits-section__heading .secH2 {
    margin: 0 0 12px !important;
    color: #112b48;
    font-size: clamp(32px, 4.5vw, 52px);
    line-height: 1.05;
}

.th-benefits-section__heading .secP2 {
    margin: 0;
    color: #64768c;
    font-size: clamp(15px, 1.5vw, 18px);
}

.th-benefits-grid {
    display: grid !important;
    margin: 0 !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.th-benefits-grid > div {
    width: auto !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.th-benefit-card {
    position: relative;
    display: flex;
    height: 100%;
    min-height: 330px;
    margin: 0;
    padding: 28px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .75);
    border-radius: 24px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .72), rgba(255, 255, 255, .42));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .9),
        0 18px 45px rgba(36, 72, 109, .1);
    flex-direction: column;
    backdrop-filter: blur(18px) saturate(145%);
    -webkit-backdrop-filter: blur(18px) saturate(145%);
    transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.th-benefit-card::before {
    position: absolute;
    top: 0;
    right: 0;
    width: 110px;
    height: 110px;
    content: "";
    border-radius: 0 24px 0 100%;
    background: linear-gradient(145deg, rgba(20, 103, 232, .1), rgba(100, 189, 69, .08));
}

.th-benefit-card:hover {
    border-color: rgba(255, 255, 255, .98);
    box-shadow:
        inset 0 1px 0 #fff,
        0 26px 60px rgba(28, 70, 115, .16);
    transform: translateY(-8px);
}

.th-benefit-card__icon {
    display: grid !important;
    width: 64px !important;
    height: 64px !important;
    margin: 0 0 26px !important;
    padding: 12px !important;
    border: 1px solid rgba(255, 255, 255, .85);
    border-radius: 18px !important;
    background: rgba(255, 255, 255, .74) !important;
    box-shadow:
        0 10px 24px rgba(24, 74, 124, .1),
        inset 0 1px 0 #fff;
    place-items: center;
}

.th-benefit-card__icon img {
    display: block;
    width: 40px !important;
    height: 40px !important;
    object-fit: contain;
}

.th-benefit-card h3 {
    position: relative;
    margin: 0 0 12px;
    color: #163451;
    font-size: 19px !important;
    font-weight: 700;
    line-height: 1.25;
}

.th-benefit-card p {
    position: relative;
    margin: 0;
    color: #60738a !important;
    font-size: 14px;
    line-height: 1.65;
}

.th-benefit-card__number {
    position: absolute;
    right: 22px;
    bottom: 16px;
    color: rgba(20, 77, 137, .09);
    font-family: "Tracking Display", Arial, sans-serif !important;
    font-size: 54px;
    font-weight: 800;
    line-height: 1;
}

@media (max-width: 1100px) {
    .th-benefits-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .th-benefit-card { min-height: 290px; }
}

@media (max-width: 620px) {
    .th-benefits-section { padding-right: 14px; padding-left: 14px; }
    .th-benefits-grid { grid-template-columns: 1fr; gap: 14px; }
    .th-benefit-card { min-height: 0; padding: 23px; }
    .th-benefit-card__icon { margin-bottom: 20px !important; }
}

@media (prefers-reduced-motion: reduce) {
    .th-benefit-card { transition: none; }
}
