.datasync {
    padding: 100px 0;
    background: #F0F2FF;
}
.datasync__container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}
.datasync__header {
    text-align: center;
    margin-bottom: 41px;
}
span.datasync__label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 6px;
    line-height: 28px;
}
.datasync__title {
    font-size: 38px;
    font-weight: 600;
    color: #000000;
    margin: 0 0 6px 0;
    line-height: 54px;
}
.datasync__subtitle {
    font-size: 16px;
    color: rgba(0, 0, 0, 0.80);
    line-height: 28px;
    max-width: 853px;
    width: 100%;
    margin: 0 auto;
    font-weight: 400;
}
.datasync__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.datasync__card {
    background: #ffffff;
    border-radius: 16px;
    padding: 29px;
    display: flex;
    flex-direction: column;
    gap: 0;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.14), 0px 0px 2px 0px rgba(0, 0, 0, 0.12);
}
.datasync__icon {
    margin-bottom: 32px;
    line-height: 0;
}
.datasync__card-title {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    line-height: 24px;
    margin: 0 0 11px;
}
.datasync__card-body {
    flex: 1;
    margin-bottom: 14px;
}
.datasync__card-body p {
    font-size: 15px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.80);
    line-height: 24px;
    margin: 0 0 10px;
}
a.datasync__badge {
    display: inline-block;
    align-self: flex-start;
    margin-top: auto;
    padding: 2px 20px 4px;
    border-radius: 50px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    background: #F5F5F5;
    font-size: 13px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.80);
    text-decoration: none;
    line-height: 24px;
    transition: all 0.3s ease 0s;
}
a.datasync__badge:hover {
    border-color: rgba(0, 0, 0, 0.3);
    text-decoration: none;
    background: #fff;
}

/* ── Responsive: Data Synchronisation ───────────────── */
@media (max-width: 1200px) {
    .datasync__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 1024px) {
    .datasync__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .datasync__title {
        font-size: 34px;
        line-height: 44px;
    }
}
@media (max-width: 768px) {
    .datasync {
        padding: 52px 0 64px;
    }
    .datasync__container {
        padding: 0 24px;
    }
    .datasync__title {
        font-size: 28px;
        line-height: 38px;
    }
    .datasync__subtitle {
        font-size: 15px;
    }
}
@media (max-width: 640px) {
    .datasync {
        padding: 44px 0 52px;
    }
    .datasync__container {
        padding: 0 20px;
    }
    .datasync__grid {
        grid-template-columns: 1fr;
    }
    .datasync__title {
        font-size: 24px;
        line-height: 32px;
    }
    .datasync__card {
        padding: 24px 20px;
    }
}
@media (max-width: 480px) {
    .datasync__container {
        padding: 0 16px;
    }
    .datasync__title {
        font-size: 22px;
    }
    .datasync__icon {
        margin-bottom: 20px;
    }
}
