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

.th-features-section {
    position: relative;
    margin: 0 !important;
    padding: clamp(70px, 8vw, 112px) 22px !important;
    overflow: hidden;
    background: #071a31;
}

.th-features-section::before {
    position: absolute;
    inset: 0;
    content: "";
    opacity: .85;
    pointer-events: none;
    background:
        radial-gradient(circle at 8% 5%, rgba(20, 103, 232, .25), transparent 27%),
        radial-gradient(circle at 92% 92%, rgba(100, 189, 69, .17), transparent 25%);
}

.th-features__inner {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.th-features__header {
    display: grid;
    margin-bottom: clamp(36px, 5vw, 58px);
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
    align-items: end;
    gap: clamp(28px, 6vw, 90px);
}

.th-features__eyebrow {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 7px 12px;
    color: #9fd1ff;
    border: 1px solid rgba(132, 198, 255, .18);
    border-radius: 999px;
    background: rgba(20, 103, 232, .12);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.th-features__header h2 {
    max-width: 780px;
    margin: 0;
    color: #fff;
    font-size: clamp(34px, 4.5vw, 56px);
    font-weight: 700;
    line-height: 1.04;
}

.th-features__header > p {
    margin: 0 0 4px;
    color: #aebfd2;
    font-size: 15px;
    line-height: 1.7;
}

.th-features__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.th-feature-card {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 420px;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 22px;
    background: rgba(255, 255, 255, .055);
    box-shadow: 0 18px 45px rgba(0, 8, 24, .18);
    flex-direction: column;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transition: transform .3s ease, border-color .3s ease, background .3s ease;
}

.th-feature-card:hover {
    border-color: rgba(116, 188, 255, .35);
    background: rgba(255, 255, 255, .085);
    transform: translateY(-7px);
}

.th-feature-card__media {
    position: relative;
    height: 165px;
    overflow: hidden;
    background: #102842;
}

.th-feature-card__media::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(to bottom, rgba(3, 18, 36, .05), rgba(7, 26, 49, .64));
}

.th-feature-card__media > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .82;
    transition: transform .45s ease, opacity .3s ease;
}

.th-feature-card:hover .th-feature-card__media > img {
    opacity: 1;
    transform: scale(1.055);
}

.th-feature-card__icon {
    position: absolute;
    z-index: 1;
    right: 16px;
    bottom: 14px;
    display: grid;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 14px;
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 9px 24px rgba(0, 15, 35, .22);
    place-items: center;
    backdrop-filter: blur(8px);
}

.th-feature-card__icon img {
    width: 31px;
    height: 31px;
    object-fit: contain;
}

.th-feature-card__body {
    display: flex;
    padding: 22px;
    flex: 1;
    flex-direction: column;
}

.th-feature-card__category {
    margin-bottom: 8px;
    color: #79bdff;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.th-feature-card h3 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 20px;
    line-height: 1.2;
}

.th-feature-card p {
    margin: 0 0 22px;
    color: #aebfd2;
    font-size: 13px;
    line-height: 1.62;
}

.th-feature-card__body > a {
    display: inline-flex;
    margin-top: auto;
    color: #8ecaff !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    align-items: center;
    gap: 8px;
}

.th-feature-card__body > a span {
    font-size: 17px;
    transition: transform .2s ease;
}

.th-feature-card__body > a:hover {
    color: #fff !important;
    font-size: 12px !important;
}

.th-feature-card__body > a:hover span {
    transform: translateX(4px);
}

@media (max-width: 1120px) {
    .th-features__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
    .th-features-section { padding-right: 14px !important; padding-left: 14px !important; }
    .th-features__header { grid-template-columns: 1fr; gap: 18px; }
}

@media (max-width: 560px) {
    .th-features__grid { grid-template-columns: 1fr; gap: 14px; }
    .th-feature-card { min-height: 390px; }
}

@media (prefers-reduced-motion: reduce) {
    .th-feature-card,
    .th-feature-card__media > img,
    .th-feature-card__body > a span {
        transition: none;
    }
}
